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