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