79f48747ab3558478ae469199dab5a27b10fbe61
[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/ctsim.cpp)
7 AM_INIT_AUTOMAKE(ctsim,3.0.0alpha4)
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
16 CFLAGS="$CFLAGS -I/usr/local/include"
17 LDFLAGS="$LDFLAGS -L/usr/local/lib"
18 AC_PROG_CC
19 AC_PROG_CXX
20 AC_C_BIGENDIAN
21
22 AC_PATH_PROG(wxconfig,wx-config)
23
24 dnl AC_MSG_CHECKING([that the compiler works])
25 dnl AC_TRY_RUN([ main(int ac, char **av) { return 0; } ],     AC_MSG_RESULT(yes),     AC_MSG_RESULT(no)     AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.),     AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.))
26
27 dnl Check for C operation
28 AC_CANONICAL_HOST 
29 AC_C_INLINE
30 AC_CHECK_SIZEOF(short, 2)
31 AC_CHECK_SIZEOF(int, 4)
32 AC_CHECK_SIZEOF(long, 4)
33 AC_CHECK_SIZEOF(float, 4)
34 AC_CHECK_SIZEOF(double, 8)
35
36 dnl Checks for libraries.
37 AC_CHECK_LIB(z, deflate, [ zlib="true" ], [ zlib="false" ;  AC_MSG_WARN([zlib missing. Will need zlib for PNG support])])
38 AC_CHECK_LIB(m, sin)
39 AC_CHECK_LIB(curses, main, [curses=true], [curses=false])
40 AC_CHECK_LIB(ncurses, main, [ncurses=true], [ncurses=false])
41 AC_CHECK_LIB(g2, main, [g2=true], [g2=false])
42 AC_CHECK_LIB(readline, main, [readline=true; AC_DEFINE(HAVE_READLINE)], [readline=false])
43 wxwin=false
44 AC_CHECK_LIB(wx_gtk, main, [wxwin=true; wx_gtk=true; AC_DEFINE(HAVE_WXWINDOWS)])
45 AC_CHECK_LIB(wx, main, [wxwin=true; wx_msw=true; AC_DEFINE(HAVE_WXWINDOWS)])
46 AC_CHECK_LIB(hdf5, main, [hdf5=true], [hdf5=false], -lz)
47 AC_CHECK_LIB(fftw, fftw_one, [fftw=true; AC_DEFINE(HAVE_FFTW)], [fftw=false])
48
49 if test "$zlib" = "true" ; then
50   AC_CHECK_LIB(png, main, [png=true ; AC_DEFINE(HAVE_PNG)], [png=false])
51 fi
52
53 dnl Checks for header files.
54 AC_HEADER_STDC
55 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 netinet/in.h inttypes.h sys/param.h stdint.h stdlib.h g2.h assert.h sys/time.h sys/resource.h sys/time.h readline.h readline/readline.h)
56
57 dnl Checks for typedefs, structures, and compiler characteristics.
58 AC_C_CONST
59 AC_TYPE_OFF_T
60 AC_TYPE_SIZE_T
61 AC_STRUCT_TM
62
63 dnl Checks for library functions.
64 AC_FUNC_VPRINTF
65 AC_CHECK_FUNCS(strtod strtol snprintf htonl usleep vsprintf vsnprintf)
66 AC_CHECK_FUNC(basename)
67 AC_CHECK_FUNC(setjmp)
68 AC_CHECK_FUNC(setpriority)
69 AC_CHECK_FUNC(time)
70 AC_CHECK_FUNC(gettimeofday)
71
72 if test "${OSTYPE}" = "cygwin" ; then
73   getopt_long=false
74 else
75   AC_CHECK_FUNC(getopt_long, [ getopt_long=true ], [ getopt_long=false ])
76 fi
77
78 if test "${getopt_long}" = "false" ; then
79   my_includes="$my_includes -I../getopt"
80   AC_DEFINE(HAVE_GETOPT_LONG)
81   ctlibs_base="$ctlibs_base -lgetopt"
82   LDFLAGS="$LDFLAGS -L../getopt"
83   AM_CONDITIONAL(INCLUDED_GETOPT_LONG, test 1==1)
84 fi
85
86 if test "${readline}" = "true" ; then
87   ctlibs_base="$ctlibs_base -lreadline"
88 fi
89
90 dnl Check for debug mode
91 AC_MSG_CHECKING([debug])
92 AC_ARG_ENABLE(debug,
93 [  --enable-debug          Turn on debugging],
94 [case "${enableval}" in
95   yes) debug=true 
96        AC_MSG_RESULT(yes)
97        ;;
98   no)  debug=false 
99        AC_MSG_RESULT(no)
100        ;;
101   *) AC_MSG_RESULT([bad value ${enableval} for --enable-debug]) 
102        ;;
103 esac],
104 [debug=false; AC_MSG_RESULT(no)])
105 AM_CONDITIONAL(DEBUG, test "$debug" = "true")
106
107 if test "$debug" = "true" ; then
108 dnl  AC_ADD_GCC_CFLAGS([-g -DDEBUG])
109   CFLAGS="-g -DDEBUG"
110   AC_DEFINE(DEBUG)
111 else
112 dnl  AC_ADD_GCC_CFLAGS([-O2 -DNDEBUG])
113   CFLAGS="-O3 -DNDEBUG"
114   AC_DEFINE(NDEBUG)
115 fi
116
117 AC_MSG_CHECKING(sstream)
118  if [ test -f /usr/include/sstream || test -f /usr/include/g++/sstream ||
119      test -f /usr/include/g++-2/sstream || test -f /usr/include/g++-3/sstream ]; then
120   AC_DEFINE(HAVE_SSTREAM)
121   AC_MSG_RESULT(yes)
122 fi
123 AC_MSG_RESULT(no)
124
125
126 AC_ADD_GCC_CFLAGS([-Wall])
127 AC_MSG_CHECKING(whether to enable verbose warnings)
128 AC_ARG_ENABLE(verbose-warnings,
129 [  --enable-verbose-warnings
130                           Enable verbose compiler warnings.],
131 [ case "$enableval" in
132   yes)
133     AC_MSG_RESULT(yes)
134     AC_ADD_GCC_CFLAGS([-W])
135     AC_ADD_GCC_CFLAGS([-Wshadow -Wpointer-arith -Wbad-function-cast])
136     AC_ADD_GCC_CFLAGS([-Wcast-align -Wwrite-strings -Waggregate-return])
137     AC_ADD_GCC_CFLAGS([-Wmissing-prototypes -Wstrict-prototypes])
138     AC_ADD_GCC_CFLAGS([-pedantic])
139     AC_ADD_GCC_CFLAGS([-Wredundant-decls])
140
141     ;;
142   *)
143     AC_MSG_RESULT(no)
144     ;;
145   esac ], AC_MSG_RESULT(no)
146 )
147
148 AC_MSG_CHECKING(static executables)
149 AC_ARG_ENABLE(static,
150 [  --enable-static
151                           Enable static executables.],
152 [ case "$enableval" in
153   yes)
154     AC_MSG_RESULT(yes)
155     AC_ADD_GCC_CFLAGS([--static])
156     ;;
157   *)
158     AC_MSG_RESULT(no)
159     ;;
160   esac ], AC_MSG_RESULT(no)
161 )
162
163 dnl Set LAM path
164 AC_ARG_WITH(lam,
165 [  --with-lam[=PATH]       Set path of LAM MPI ],
166 [    if test "$withval" != "no" ; then
167          trylamdir=$withval
168      fi ]
169 )
170
171 if test "$withval" != "no" ; then
172   if test "$prefix" != "NONE" ; then
173      trylamdir="$trylamdir $prefix"
174   fi
175
176   AC_MSG_CHECKING([for LAM MPI installation])
177   for testlamdir in "." $trylamdir /usr/local /usr/local/lam /usr /usr/lam /opt /opt/lam ; do
178     if test -x "$testlamdir/bin/hcp" ; then
179       if test "$testlamdir" != "/usr"; then     
180         LDFLAGS="$LDFLAGS -L$testlamdir/lib"
181         CFLAGS="$CFLAGS -I$testlamdir/include"
182       fi
183       CFLAGS="$CFLAGS -I$testlamdir/include/mpi2c++"
184       lamdir="$testlamdir"
185       AC_SUBST(lamdir)
186       mpienable="true"
187       AC_SUBST(mpienable)
188       break
189     fi
190   done
191   AC_MSG_RESULT($lamdir)
192 else
193   AC_MSG_RESULT([no])
194 fi
195
196 AC_MSG_CHECKING([for web access])
197 dnl Set cgi-bin directory
198 AC_ARG_WITH(cgibin-dir, [  --with-cgibin-dir=PATH  Set path of CGI binaries directory ], 
199 [ cgibindir=$withval ; AC_SUBST(cgibindir) ] )
200
201 AC_ARG_WITH(cgibin-url, [  --with-cgibin-url=PATH  Set URL path of CGI binaries ], 
202 [ cgibinurl=$withval ; AC_SUBST(cgibinurl) ] )
203
204 AC_ARG_WITH(webdata-dir, [  --with-webdata-dir=PATH Set path of webdata], 
205 [ webdatadir=$withval ; AC_SUBST(webdatadir)  ] )
206
207 AC_ARG_WITH(webdata-url, [  --with-webdata-url=PATH Set URL path of webdata], 
208 [ webdataurl=$withval ; AC_SUBST(webdataurl) ] )
209
210 AC_ARG_WITH(html-dir, [  --with-html-dir=PATH    Set directory of html files], 
211 [ htmldir=$withval ; AC_SUBST(htmldir) ] )
212
213 if test -n "$cgibindir" -o -n "$cgibinurl" ; then
214   cgiprograms="ctsim.cgi ctsim.conf"
215   AC_SUBST(cgiprograms)
216 fi
217
218 if test -n "$htmldir" ; then
219   htmldata=simulate.html
220   AC_SUBST(htmldata)
221 fi
222 AM_CONDITIONAL(USE_HTML, test -n "$htmldir")
223
224 if test -n "$cgibindir" -o -n "$cgibinurl" -o -n "$webdatadir" -o -n "$webdataurl" -o -n "$htmldir" ; then
225   webenabled=true
226   AC_SUBST(webenabled)
227   AC_MSG_RESULT([yes])
228   if test -z "$cgibindir" ; then
229     AC_MSG_ERROR([--with-cgibin-dir not set for web access])
230   elif test -z "$cgibinurl" ; then
231     AC_MSG_ERROR([--with-cgibin-url not set for web access])
232   elif test -z "$webdatadir" ; then
233     AC_MSG_ERROR([--with-webdata-dir not set for web access])
234   elif test -z "$webdataurl" ; then
235     AC_MSG_ERROR([--with-webdata-url not set for web access])
236   elif test -z "$htmldir" ; then
237     AC_MSG_ERROR([--with-html-dir not set for web access])
238   fi
239 else
240   AC_MSG_RESULT([no])
241 fi
242
243 AM_CONDITIONAL(USE_LAM, test -n "$lamdir")
244
245 dnl Prepare to support X.  If the user gave the command-line option
246 dnl --without-x, AC_PATH_XTRA will set no_x to "yes".  Otherwise, it will
247 dnl add appropriate preprocessor flags to X_CFLAGS, and appropriate linker
248 dnl flags to X_LIBS.  It also checks for system-specific X libraries, and
249 dnl adds them to X_PRE_LIBS or X_EXTRA_LIBS, as appropriate.  (The former
250 dnl is where "-lSM -lICE" goes, in X11R6.)  We define the X_TOOLKIT_LIBS
251 dnl and X_BASIC_LIBS argument vectors ourselves, and if X is to be
252 dnl supported, we'll concatenate the whole lot of these into a command line
253 dnl for libtool.  See, e.g., the libplot_la_LIBADD line in
254 dnl libplot/Makefile.am.
255
256 AC_PATH_XTRA
257 AC_SUBST(X_CFLAGS)
258 dnl Following five are concatenated together into a linker specification.
259 AC_SUBST(X_LIBS)
260 AC_SUBST(X_TOOLKIT_LIBS)
261 AC_SUBST(X_PRE_LIBS)
262 AC_SUBST(X_BASIC_LIBS)
263 AC_SUBST(X_EXTRA_LIBS)
264
265 X_TOOLKIT_LIBS="-lXt"
266 X_BASIC_LIBS="-lXext -lX11"
267
268 dnl Check whether libXt has thread support.  Some platforms may have
269 dnl pthread support in libc, but no thread support in libXt/libX11.
270 our_saved_LDFLAGS="$LDFLAGS"
271 LDFLAGS="$X_LIBS $LDFLAGS"
272 AC_CHECK_LIB(Xt, XtToolkitThreadInitialize, AC_DEFINE(X_THREAD_SUPPORT), , $X_PRE_LIBS $X_BASIC_LIBS $X_EXTRA_LIBS)
273 LDFLAGS="$our_saved_LDFLAGS"
274
275 dnl Check in -lXext for double buffering extensions to X11, and check
276 dnl whether appropriate header files are present.  (Some systems have one
277 dnl but not the other.)
278 our_saved_LDFLAGS="$LDFLAGS"
279 LDFLAGS="$X_LIBS $LDFLAGS"
280 AC_CHECK_LIB(Xext, XdbeQueryExtension, AC_DEFINE(HAVE_DBE_SUPPORT), , -lX11 "$X_EXTRA_LIBS")
281 AC_CHECK_LIB(Xext, XmbufQueryExtension, AC_DEFINE(HAVE_MBX_SUPPORT), , -lX11 "$X_EXTRA_LIBS")
282 LDFLAGS="$our_saved_LDFLAGS"
283 our_saved_CPPFLAGS="$CPPFLAGS"
284 CPPFLAGS="$X_CFLAGS $CPPFLAGS"
285 AC_CHECK_HEADERS(X11/extensions/Xdbe.h X11/extensions/multibuf.h)
286 CPPFLAGS="$our_saved_CPPFLAGS"
287
288 dnl Our Makefile.am files test the automake variable NO_X to determine
289 dnl whether X should be supported.
290 AM_CONDITIONAL(NO_X, test "x$no_x" = "xyes")
291
292 my_includes="$my_includes -I../include -I.. -I/usr/local/include"
293 AC_SUBST(my_includes)
294
295 LDFLAGS="$LDFLAGS -L/usr/local/lib"
296
297 AC_MSG_CHECKING([for X])
298 if test "$no_x" != "yes" ; then
299   AC_DEFINE(HAVE_SGP)
300   AM_CONDITIONAL(HAVE_SGP, test 1==1)
301   AC_DEFINE(HAVE_X11)
302   LDFLAGS="$LDFLAGS -L../libctgraphics -L/usr/X11R6/lib"
303   ctlibs_graphics="$ctlibs_base -lctgraphics"
304   AC_MSG_RESULT(yes)
305   if test "$g2" = "true" ; then
306   ctlibs_graphics="$ctlibs_graphics -lg2"
307   AC_DEFINE(HAVE_G2)
308   fi    
309   ctlibs_graphics="$ctlibs_graphics $X_BASIC_LIBS $X_TOOLKIT_LIBS"
310 else
311   if test "$wxwin" = "true" ; then
312     AC_DEFINE(HAVE_SGP)
313     AM_CONDITIONAL(HAVE_SGP, test 1==1)
314   fi
315   AC_MSG_RESULT(no)
316 fi
317
318 if test "$png" = "true" ; then
319   ctlibs_tools="$ctlibs_tools -lpng"
320 fi
321 if test "$zlib" = "true" ; then
322   ctlibs_tools="$ctlibs_tools -lz"
323 fi
324 if test "$fftw" = "true" ; then
325   ctlibs_tools="$ctlibs_tools -lrfftw -lfftw"
326 fi
327
328 dnl Check for dmalloc
329 AC_CHECK_LIB(dmallocxx, main, [dmallocxx=true], [dmallocxx=false])
330 AC_MSG_CHECKING([for enable-dmalloc])
331 AC_ARG_ENABLE(dmalloc,
332 [  --enable-dmalloc        Use dmalloc memory allocation],
333 [case "${enableval}" in
334   yes) usedmalloc=true 
335        AC_MSG_RESULT(yes)
336        ;;
337   no)  usedmalloc=false 
338        AC_MSG_RESULT(no)
339        ;;
340   *) AC_MSG_RESULT([bad value ${enableval} for --enable-dmalloc]) 
341        ;;
342 esac],
343 [usedmalloc=false; AC_MSG_RESULT(no)])
344
345 if test "$dmallocxx" = "true" -a "$usedmalloc" = "true" ; then
346   ctlibs_tools="$ctlibs_tools -ldmallocxx"
347   AC_DEFINE(HAVE_DMALLOC)
348   AC_MSG_RESULT(Using dmalloc)
349 fi
350
351 if test "$wxwin" = "true" ; then
352   if test "$wx_gtk" = "true" ; then     
353     wxcflags=`$wxconfig --cflags`
354     wxlibs=`$wxconfig --libs`
355   else
356         wxcflags="-D__WXMSW__ -D__WIN32__ -D__GNUWIN32__"
357    wxlibs="-lwx -lglui -ljpeg -lxpm -lzlib -ltiff"
358   fi
359   CFLAGS="$CFLAGS -I../include $wxcflags"
360   ctlibs_graphics="$ctlibs_graphics $wxlibs"
361   AM_CONDITIONAL(HAVE_WXWINDOWS, test 1==1 )
362 fi
363 AC_SUBST(wxcflags)
364 AC_SUBST(wxlibs)
365
366 dnl Setting projet libraries and includes
367 LDFLAGS="$LDFLAGS -L../libctsupport -L../libctsim" 
368 ctlibs="$ctlibs_base -lctsim $ctlibs_graphics -lctsupport $ctlibs_tools"
369 AC_SUBST(ctlibs)
370
371 if test -n "$lamdir" ; then
372   lamprograms="ctsimtext-lam"
373   AC_SUBST(lamprograms)
374   lamdefs="$CFLAGS"
375   AC_SUBST(lamdefs)
376 fi
377
378 CXXFLAGS="$CFLAGS"
379
380 AC_OUTPUT(Makefile libctgraphics/Makefile libctsupport/Makefile libctsim/Makefile Makefile man/Makefile doc/Makefile cgi-bin/ctsim.cgi cgi-bin/Makefile html/simulate.html html/Makefile include/Makefile getopt/Makefile tools/sample-ctsim.sh cgi-bin/ctsim.conf tools/Makefile src/Makefile)