r15: *** empty log message ***
[ctsim.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl Must reset CDPATH so that bash's cd does not print to stdout
4 dnl CDPATH=
5
6 AC_INIT(src/ctrec.c)
7 AM_INIT_AUTOMAKE(ctsim,0.5.2-b1)
8 AM_CONFIG_HEADER(config.h)
9
10 dnl Checks for programs.
11 AC_PROG_AWK
12 AC_PROG_INSTALL
13 AC_PROG_MAKE_SET
14 AC_PROG_RANLIB
15 AC_PROG_CC
16
17 dnl Checks for libraries.
18 AC_CHECK_LIB(z, main, 
19 [
20   zlib="true"
21 ],
22
23   zlib="false"
24   AC_MSG_WARN([zlib missing. Will need zlib for PNG support])
25 ])
26 AC_CHECK_LIB(m, main)
27 AC_CHECK_LIB(curses, main, [curses=true], [curses=false])
28 AC_CHECK_LIB(ncurses, main, [ncurses=true], [ncurses=false])
29  
30 dnl Checks for header files.
31 AC_HEADER_STDC
32 AC_CHECK_HEADERS(fcntl.h unistd.h getopt.h sys/fcntl.h setjmp.h stdarg.h stddef.h sys/types.h sys/stat.h string.h ctype.h math.h stdio.h)
33
34 dnl Checks for typedefs, structures, and compiler characteristics.
35 AC_C_CONST
36 AC_TYPE_OFF_T
37 AC_TYPE_SIZE_T
38 AC_STRUCT_TM
39
40 dnl Checks for library functions.
41 AC_FUNC_VPRINTF
42 AC_CHECK_FUNCS(strtod strtol)
43 AC_CHECK_FUNC(basename)
44 AC_CHECK_FUNC(setjmp)
45 AC_CHECK_FUNC(getopt_long,
46 [
47   getopt_long=true
48 ],
49 [
50   getopt_long=false
51   my_includes="$myincludes -I../getopt"
52   AC_DEFINE(HAVE_GETOPT_LONG)
53   ctlibs_base="$ctlibs_base -lgetopt"
54   LDFLAGS="$LDFLAGS -L../getopt"
55   AM_CONDITIONAL(INCLUDED_GETOPT_LONG, test 1==1)
56 ])
57
58
59 AC_ADD_GCC_CFLAGS([-Wall])
60 AC_MSG_CHECKING(whether to enable verbose warnings)
61 AC_ARG_ENABLE(verbose-warnings,
62 [  --enable-verbose-warnings
63                           Enable verbose compiler warnings.],
64 [ case "$enableval" in
65   yes)
66     AC_MSG_RESULT(yes)
67     AC_ADD_GCC_CFLAGS([-W])
68     AC_ADD_GCC_CFLAGS([-Wshadow -Wpointer-arith -Wbad-function-cast])
69     AC_ADD_GCC_CFLAGS([-Wcast-align -Wwrite-strings -Waggregate-return])
70     AC_ADD_GCC_CFLAGS([-Wmissing-prototypes -Wstrict-prototypes])
71     AC_ADD_GCC_CFLAGS([-pedantic])
72     AC_ADD_GCC_CFLAGS([-Wredundant-decls])
73
74     ;;
75   *)
76     AC_MSG_RESULT(no)
77     ;;
78   esac ], AC_MSG_RESULT(no)
79 )
80
81 dnl Check for debug mode
82 AC_ARG_ENABLE(debug,
83 [  --enable-debug          Turn on debugging],
84 [case "${enableval}" in
85   yes) debug=true ;;
86   no)  debug=false ;;
87   *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
88 esac],[debug=false])
89 AM_CONDITIONAL(DEBUG, test "$debug" = "true")
90
91 dnl Set PNG directory     
92 AC_MSG_CHECKING([for PNG library installation])
93 AC_ARG_WITH(png,
94 [  --with-png[=PATH]       Set path of lib PNG installation ],
95 [
96      if test "$withval" != "no" ; then
97          trypngdir=$withval
98          if test "$prefix" != "NONE" ; then
99          trypngdir="$trypngdir $prefix"
100        fi
101      fi
102 ]
103 )
104
105 if test "$withval" != "no" -a "$zlib" = "true" ; then
106   for testpngdir in "." $trypngdir /usr/local /usr /opt ; do
107     if test -f "$testpngdir/lib/libpng.a" ; then
108       if test ! -f "$testpngdir/include/png.h" ; then
109         AC_MSG_ERROR([PNG library found, but png.h not found. Check PNG installation])
110       else
111           grep PNG_LIBPNG_VER_STRING "$testpngdir/include/png.h" | grep 9 > /dev/null 
112           if test "$?" = "0" ; then
113             AC_MSG_ERROR([Your version of libpng in $testpngdir is too old -- please upgrade])
114           fi
115       fi
116       LDFLAGS="$LDFLAGS -L$testpngdir/lib"
117       CFLAGS="$CFLAGS -I$testpngdir/include"
118       pngdir="$testpngdir"
119       AC_DEFINE(HAVE_PNG)
120       break
121     elif test -f "$testpngdir/libpng.a" ; then
122       if test ! -f "$testpngdir/png.h" ; then
123         AC_MSG_ERROR([PNG library found, but png.h not found. Check PNG installation])
124       else
125           grep PNG_LIBPNG_VER_STRING "$testpngdir/png.h" | grep 9 > /dev/null 
126           if test "$?" = "0" ; then
127             AC_MSG_ERROR([Your version of libpng in $testpngdir is too old -- please upgrade])
128           fi
129       fi
130       LDFLAGS="$LDFLAGS -L$testpngdir"
131       CFLAGS="$CFLAGS -I$testpngdir"
132       pngdir="$testpngdir"
133       AC_DEFINE(HAVE_PNG)
134       break
135     fi
136   done
137   AC_MSG_RESULT($pngdir)
138   AM_CONDITIONAL(HAVE_PNG, test -n "$pngdir")
139 else
140   AC_MSG_RESULT([no])
141 fi
142
143 dnl Set LAM path
144 AC_ARG_WITH(lam,
145 [  --with-lam[=PATH]       Set path of LAM MPI ],
146 [    if test "$withval" != "no" ; then
147          trylamdir=$withval
148      fi ]
149 )
150
151 if test "$withval" != "no" ; then
152   if test "$prefix" != "NONE" ; then
153      trylamdir="$trylamdir $prefix"
154   fi
155
156   AC_MSG_CHECKING([for LAM MPI installation])
157   for testlamdir in "." $trylamdir /usr/local /usr/local/lam /usr /usr/lam /opt /opt/lam ; do
158     if test -x "$testlamdir/bin/hcc" ; then
159       LDFLAGS="$LDFLAGS -L$testlamdir/lib"
160       CFLAGS="$CFLAGS -I$testlamdir/include"
161       lamdir="$testlamdir"
162       AC_SUBST(lamdir)
163       break
164     fi
165   done
166   AC_MSG_RESULT($lamdir)
167 fi
168
169 AC_MSG_CHECKING([for web access])
170 dnl Set cgi-bin directory
171 AC_ARG_WITH(cgibin-dir, [  --with-cgibin-dir=PATH  Set path of CGI binaries directory ], 
172 [ cgibindir=$withval ; AC_SUBST(cgibindir) ] )
173
174 AC_ARG_WITH(cgibin-url, [  --with-cgibin-url=PATH  Set URL path of CGI binaries ], 
175 [ cgibinurl=$withval ; AC_SUBST(cgibinurl) ] )
176
177 AC_ARG_WITH(webdata-dir, [  --with-webdata-dir=PATH Set path of webdata], 
178 [ webdatadir=$withval ; AC_SUBST(webdatadir)  ] )
179
180 AC_ARG_WITH(webdata-url, [  --with-webdata-url=PATH Set URL path of webdata], 
181 [ webdataurl=$withval ; AC_SUBST(webdataurl) ] )
182
183 AC_ARG_WITH(html-dir, [  --with-html-dir=PATH    Set directory of html files], 
184 [ htmldir=$withval ; AC_SUBST(htmldir) ] )
185
186 if test -n "$cgibindir" -o -n "$cgibinurl" ; then
187   cgiprograms="ctsim.cgi ctsim.conf"
188   AC_SUBST(cgiprograms)
189 fi
190
191 if test -n "$htmldir" ; then
192   htmldata=ctsim.html
193   AC_SUBST(htmldata)
194 fi
195 AM_CONDITIONAL(USE_HTML, test -n "$htmldir")
196
197 if test -n "$cgibindir" -o -n "$cgibinurl" -o -n "$webdatadir" -o -n "$webdataurl" -o -n "$htmldir" ; then
198   webenabled=true
199   AC_SUBST(webenabled)
200   AC_MSG_RESULT([yes])
201   if test -z "$cgibindir" ; then
202     AC_MSG_ERROR([--with-cgibin-dir not set for web access])
203   elif test -z "$cgibinurl" ; then
204     AC_MSG_ERROR([--with-cgibin-url not set for web access])
205   elif test -z "$webdatadir" ; then
206     AC_MSG_ERROR([--with-webdata-dir not set for web access])
207   elif test -z "$webdataurl" ; then
208     AC_MSG_ERROR([--with-webdata-url not set for web access])
209   elif test -z "$htmldir" ; then
210     AC_MSG_ERROR([--with-html-dir not set for web access])
211   fi
212 else
213   AC_MSG_RESULT([no])
214 fi
215
216 dnl Setting projet libraries and includes
217 LDFLAGS="$LDFLAGS -L../libezplot -L../libgraph -L../libkmath -L../libk -L../libcio -L../libir" 
218 ctlibs_base="$ctlibs_base -lezplot -lgraph -lkmath -lk -lcio"
219 if test -n "$pngdir" ; then
220   ctlibs_base="$ctlibs_base -lpng"
221 fi
222 if test "$zlib" = "true" ; then
223   ctlibs_base="$ctlibs_base -lz"
224 fi
225 ctlibs="-lir $ctlibs_base"
226
227 AC_SUBST(ctlibs)
228
229 if test -n "$lamdir" ; then
230   ctlamlibs="-lir_lam $ctlibs_base"
231   lamprograms="ctrec-lam phm2sdf-lam phm2rs-lam"
232   AC_SUBST(lamprograms)
233   AC_SUBST(ctlamlibs)
234 fi
235
236 AM_CONDITIONAL(USE_LAM, test -n "$lamdir")
237
238 dnl Prepare to support X.  If the user gave the command-line option
239 dnl --without-x, AC_PATH_XTRA will set no_x to "yes".  Otherwise, it will
240 dnl add appropriate preprocessor flags to X_CFLAGS, and appropriate linker
241 dnl flags to X_LIBS.  It also checks for system-specific X libraries, and
242 dnl adds them to X_PRE_LIBS or X_EXTRA_LIBS, as appropriate.  (The former
243 dnl is where "-lSM -lICE" goes, in X11R6.)  We define the X_TOOLKIT_LIBS
244 dnl and X_BASIC_LIBS argument vectors ourselves, and if X is to be
245 dnl supported, we'll concatenate the whole lot of these into a command line
246 dnl for libtool.  See, e.g., the libplot_la_LIBADD line in
247 dnl libplot/Makefile.am.
248
249 AC_PATH_XTRA
250 AC_SUBST(X_CFLAGS)
251 dnl Following five are concatenated together into a linker specification.
252 AC_SUBST(X_LIBS)
253 AC_SUBST(X_TOOLKIT_LIBS)
254 AC_SUBST(X_PRE_LIBS)
255 AC_SUBST(X_BASIC_LIBS)
256 AC_SUBST(X_EXTRA_LIBS)
257
258 X_TOOLKIT_LIBS="-lXt"
259 X_BASIC_LIBS="-lXext -lX11"
260
261 dnl Check whether libXt has thread support.  Some platforms may have
262 dnl pthread support in libc, but no thread support in libXt/libX11.
263 our_saved_LDFLAGS="$LDFLAGS"
264 LDFLAGS="$X_LIBS $LDFLAGS"
265 AC_CHECK_LIB(Xt, XtToolkitThreadInitialize, AC_DEFINE(X_THREAD_SUPPORT), , $X_PRE_LIBS $X_BASIC_LIBS $X_EXTRA_LIBS)
266 LDFLAGS="$our_saved_LDFLAGS"
267
268 dnl Check in -lXext for double buffering extensions to X11, and check
269 dnl whether appropriate header files are present.  (Some systems have one
270 dnl but not the other.)
271 our_saved_LDFLAGS="$LDFLAGS"
272 LDFLAGS="$X_LIBS $LDFLAGS"
273 AC_CHECK_LIB(Xext, XdbeQueryExtension, AC_DEFINE(HAVE_DBE_SUPPORT), , -lX11 "$X_EXTRA_LIBS")
274 AC_CHECK_LIB(Xext, XmbufQueryExtension, AC_DEFINE(HAVE_MBX_SUPPORT), , -lX11 "$X_EXTRA_LIBS")
275 LDFLAGS="$our_saved_LDFLAGS"
276 our_saved_CPPFLAGS="$CPPFLAGS"
277 CPPFLAGS="$X_CFLAGS $CPPFLAGS"
278 AC_CHECK_HEADERS(X11/extensions/Xdbe.h X11/extensions/multibuf.h)
279 CPPFLAGS="$our_saved_CPPFLAGS"
280
281 dnl Our Makefile.am files test the automake variable NO_X to determine
282 dnl whether X should be supported.
283 AM_CONDITIONAL(NO_X, test "x$no_x" = "xyes")
284
285 my_includes="$my_includes -I../include -I.."
286 AC_SUBST(my_includes)
287
288 AM_CONDITIONAL(HAVE_INTERACTIVE_GRAPHICS, test 1==0)
289
290 AC_OUTPUT(Makefile libezplot/Makefile src/Makefile libgraph/Makefile libkmath/Makefile Makefile libk/Makefile libir/Makefile libcio/Makefile man/Makefile cgi-bin/ctsim.cgi cgi-bin/Makefile html/ctsim.html html/Makefile include/Makefile getopt/Makefile src/sample-ctrec.sh cgi-bin/ctsim.conf)