Revert "Update package dependency from libwxgtk3.0-dev to libwxgtk3.0-gtk3-dev for...
[ctsim.git] / configure.ac
1 dnl *****************************************************************************
2 dnl FILE IDENTIFICATION
3 dnl   Name:          ctsim.cpp
4 dnl   Purpose:       Top-level routines of CTSim program
5 dnl   Programmer:    Kevin Rosenberg
6 dnl   Date Started:  July 2000
7 dnl
8 dnl  This is part of the CTSim program
9 dnl  Copyright (c) 1983-2009 Kevin Rosenberg
10 dnl
11 dnl  This program is free software; you can redistribute it and/or modify
12 dnl  it under the terms of the GNU General Public License (version 2) as
13 dnl  published by the Free Software Foundation.
14 dnl
15 dnl  This program is distributed in the hope that it will be useful,
16 dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
17 dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 dnl  GNU General Public License for more details.
19 dnl
20 dnl  You should have received a copy of the GNU General Public License
21 dnl  along with this program; if not, write to the Free Software
22 dnl  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23 dnl****************************************************************************/
24
25 dnl Process this file with autoconf to produce a configure script.
26
27 dnl Must reset CDPATH so that bash's cd does not print to stdout
28 dnl CDPATH=
29
30 AC_INIT([CTSim], [6.0.0], [ctsim-users@kpe.io], [ctsim], [http://www.ctsim.org/])
31 AC_CONFIG_SRCDIR([src/ctsim.cpp])
32 AC_CONFIG_MACRO_DIR([scripts])
33 dnl permit auxiliary scripts directory (e.g. config.sub, config.guess, install-sh)
34 AC_CONFIG_AUX_DIR(scripts/)
35
36 AC_CANONICAL_TARGET
37 AM_MAINTAINER_MODE
38 AM_INIT_AUTOMAKE
39 AM_CONFIG_HEADER(config.h)
40
41 dnl Checks for programs.
42 AC_PROG_AWK
43 AC_PROG_INSTALL
44 AC_PROG_MAKE_SET
45 AC_PROG_RANLIB
46
47 AC_PROG_CC
48 AC_PROG_CXX
49 CFLAGS=""
50 CXXFLAGS=""
51
52 AC_C_BIGENDIAN
53
54 AC_PATH_PROG(wxconfig,wx-config)
55
56 dnl Check for C operation
57 AC_CANONICAL_HOST 
58 AC_C_INLINE
59 AC_CHECK_SIZEOF(short, 2)
60 AC_CHECK_SIZEOF(int, 4)
61 AC_CHECK_SIZEOF(long, 4)
62 AC_CHECK_SIZEOF(float, 4)
63 AC_CHECK_SIZEOF(double, 8)
64
65
66 dnl Checks for libraries.
67 AC_CHECK_LIB(z, deflate, [ zlib="true" ], [ zlib="false" ;  AC_MSG_WARN([zlib missing. Will need zlib for PNG support])])
68 AC_CHECK_LIB(m, sin)
69 AC_CHECK_LIB(curses, main, [curses=true], [curses=false])
70 AC_CHECK_LIB(ncurses, main, [ncurses=true], [ncurses=false])
71 AC_CHECK_LIB(readline, main, [readline=true; 
72                  AC_DEFINE([HAVE_READLINE],1,[Readline library])],
73                  [readline=false], [-lcurses])  
74 wxwin=false
75 AC_CHECK_LIB(gtk-x11-2.0, main, [hasx11gtk2=true], [])
76 if test "x$hasx11gtk2" = "x" ; then
77   AC_MSG_NOTICE([Does not have X11 GTK2])
78   AC_DEFUN([AM_PATH_GLIB_2_0], [])
79   AC_DEFUN([AM_PATH_GTK_2_0], [])
80 fi
81 if test "$hasx11gtk2" = "true" ; then
82   AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR(You should get glib 2.0.0 or better.))
83   AM_PATH_GTK_2_0(2.0.0,havegtk_am=yes,havegtk_am=no)
84   CFLAGS="${CFLAGS} ${g76GTK_CFLAGS} ${GLIB_CFLAGS}"
85 fi
86
87 AC_CHECK_LIB(wx_gtk2u_core-3.0, main, [wxwin=true; wx_gtk=true; AC_DEFINE(HAVE_WXWINDOWS,1,[wxwindows library])], [], [-L/usr/lib64 -L/usr/lib ${GTK_LIBS} ${GLIB_LIBS} ])
88 AC_CHECK_LIB(wx_mac_core-3.0, main, [wxwin=true; wx_mac=true; AC_DEFINE(HAVE_WXWINDOWS,1,[wxwindows library])])
89 AC_CHECK_LIB(fftw3, fftw_malloc, [fftw=true; AC_DEFINE(HAVE_FFTW,1,[FFTW library])], [fftw=false], [-L/usr/lib64 -L/usr/lib])
90 AC_CHECK_LIB(GL, main, [libgl=true], [libgl=false], [-L/usr/X11R6/lib -L/usr/X11R6/lib64])
91 AC_CHECK_LIB(pthread, main, [pthread=true], [pthread=false])
92
93 if test "$zlib" = "true" ; then
94   AC_CHECK_LIB(png, main, [png=true ; AC_DEFINE(HAVE_PNG,1,[PNG library])], [png=false], [-L/opt/local/lib -lz -lm])
95 fi
96
97 dnl Checks for header files.
98 AC_HEADER_STDC
99 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 assert.h sys/time.h sys/resource.h sys/time.h readline.h readline/readline.h)
100
101 dnl Checks for typedefs, structures, and compiler characteristics.
102 AC_C_CONST
103 AC_TYPE_OFF_T
104 AC_TYPE_SIZE_T
105 AC_STRUCT_TM
106
107 dnl Checks for library functions.
108 AC_FUNC_VPRINTF
109 AC_CHECK_FUNCS(strtod strtol snprintf htonl usleep vsprintf vsnprintf basename setjmp setpriority time gettimeofday getenv)
110 AC_CHECK_FUNC(basename)
111 AC_CHECK_FUNC(setjmp)
112 AC_CHECK_FUNC(setpriority)
113 AC_CHECK_FUNC(time)
114 AC_CHECK_FUNC(gettimeofday)
115 AC_CHECK_FUNC(getopt, [ getopt=true ], [ getopt=false ])
116
117 if test "${OSTYPE}" = "cygwin" ; then
118   getopt_long=false
119 else
120   AC_CHECK_FUNC(getopt_long, [ getopt_long=true ], [ getopt_long=false ])
121 fi
122
123 if test "${getopt_long}" = "false" ; then
124   my_includes="$my_includes -I../getopt"
125   AC_DEFINE(HAVE_GETOPT_LONG,1,[getopt_long library])
126   ctlibs_base="$ctlibs_base -lgetopt"
127   LDFLAGS="$LDFLAGS -L../getopt"
128   GETOPTLONG=1
129 fi
130 AM_CONDITIONAL(INCLUDED_GETOPT_LONG, test "$GETOPTLONG"="1")
131
132 ARCH_OPTION=""
133 case $target_cpu in
134     i386|i486|i586|i686|x86|x86_64)
135         AX_EXT
136         CFLAGS="$CFLAGS $CPUEXT_FLAGS $SIMD_FLAGS"
137         CXXFLAGS="$CXXFLAGS $CPUEXT_FLAGS $SIMD_FLAGS"
138         ;;
139     powerpc*)
140         ARCH_OPTION="-fno-common -faltivec";;
141     armv1*|armv2*|armv3*|armv4*|armv5*|armv6*)
142         ARCH_OPTION="-ffast-math";;
143     armv7*|armv8*)
144         ARCH_OPTION="-ffast-math -mcpu=cortex-a7 -mfloat-abi=hard -mfpu=neon-vfpv4";;
145     *)
146         # unknown architecture : use portable C version
147         ARCH_OPTION="";;
148 esac
149 CPPFLAGS="$CPPFLAGS $ARCH_OPTION"
150 CXXFLAGS="$CPPFLAGS $ARCH_OPTION"
151
152 if test "${readline}" = "true" ; then
153   ctlibs_base="$ctlibs_base -lreadline"
154   if test "${ncurses}" = "true"; then
155     ctlibs_base="$ctlibs_base -lncurses"
156   elif test "${curses}" = "true"; then
157     ctlibs_base="$ctlibs_base -lcurses"
158   fi
159 fi
160
161 dnl Check for debug mode
162 AC_MSG_CHECKING([debug])
163 AC_ARG_ENABLE(debug,
164 [  --enable-debug          Turn on debugging],
165 [case "${enableval}" in
166   yes) debug="true" 
167        AC_MSG_RESULT(yes)
168        ;;
169   no)  debug="false" 
170        AC_MSG_RESULT(no)
171        ;;
172   *) AC_MSG_RESULT([bad value ${enableval} for --enable-debug]) 
173        ;;
174 esac],
175 [debug=false; AC_MSG_RESULT(no)])
176 AM_CONDITIONAL(DEBUG, test "$debug" = "true")
177
178 if test "$datadir" != "" ; then
179   CPPFLAGS="$CPPFLAGS -DDATADIR=\"\\\"$datadir\\\"\""
180 fi
181 dnl CFLAGS="$CFLAGS -I/usr/local/include"
182 dnl LDFLAGS="$LDFLAGS -L/usr/local/lib"
183
184 if test "$debug" = "true" ; then
185   CFLAGS="$CFLAGS -g -O0 -DDEBUG"
186   AC_DEFINE(DEBUG,1,[turn on debugging])
187 else
188   CFLAGS="$CFLAGS -g -O4 -DNDEBUG -fomit-frame-pointer"
189   AC_DEFINE(NDEBUG,1,[no debugging])
190 fi
191
192 if test "${pthread}" = "true" ; then
193 dnl  CFLAGS="$CFLAGS -D_REENTRANT"
194   AC_DEFINE(HAVE_WXTHREADS,1,[have wxthreads library])
195 fi
196
197 AC_MSG_CHECKING(sstream)
198  if [ test -f /usr/include/sstream || test -f /usr/include/g++/sstream ||
199      test -f /usr/include/g++-2/sstream || test -f /usr/include/g++-3/sstream ||
200      test -f /usr/include/gcc/darwin/3.1/g++-v3/sstream ]; then
201    AC_DEFINE(HAVE_SSTREAM,1,[sstream header])
202    AC_MSG_RESULT(yes)
203   else
204    AC_MSG_RESULT(no)
205  fi
206
207
208 CFLAGS="$CFLAGS -Wall"
209 AC_MSG_CHECKING(whether to enable verbose warnings)
210 AC_ARG_ENABLE(verbose-warnings,AS_HELP_STRING([--enable-verbose-warnings],[Enable verbose compiler warnings.]),
211 [ case "$enableval" in
212   yes)
213     AC_MSG_RESULT(yes)
214     CFLAGS="$CFLAGS -W -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -Waggregate-return -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wredundant-decls"
215     ;;
216   *)
217     AC_MSG_RESULT(no)
218     ;;
219   esac ], AC_MSG_RESULT(no)
220 )
221
222 AC_MSG_CHECKING(static executables)
223 AC_ARG_ENABLE(static,AS_HELP_STRING([--enable-static],[Enable static executables]),
224 [ case "$enableval" in
225   yes)
226     AC_MSG_RESULT(yes)
227     CFLAGS="$CFLAGS --static"
228     ;;
229   *)
230     AC_MSG_RESULT(no)
231     ;;
232   esac ], AC_MSG_RESULT(no)
233 )
234
235 dnl Checking if use OpenMP
236 AC_ARG_ENABLE([openmp], AS_HELP_STRING([--disable-openmp],[Disable use of OpenMP]))
237 AS_IF([test "x$enable_openmp" != "xno"], [
238     AX_OPENMP
239     CFLAGS="$CFLAGS $OPENMP_CFLAGS"
240     CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS"
241 ])
242
243 dnl Set LAM path
244 AC_ARG_WITH(lam,AS_HELP_STRING([--with-lam[=PATH]],[Set path of LAM MPI ]),
245 [    if test "$withval" != "no" ; then
246          trylamdir=$withval
247      fi ]
248 )
249
250 if test "$withval" != "no" ; then
251   if test "$prefix" != "NONE" ; then
252      trylamdir="$trylamdir $prefix"
253   fi
254
255   AC_MSG_CHECKING([for LAM MPI installation])
256   for testlamdir in "." $trylamdir /usr/local /usr/local/lam /usr /usr/lam /opt /opt/lam ; do
257     if test -x "$testlamdir/bin/hcp" ; then
258       if test "$testlamdir" != "/usr"; then     
259         LDFLAGS="$LDFLAGS -L$testlamdir/lib"
260         CFLAGS="$CFLAGS -I$testlamdir/include"
261       fi
262       CFLAGS="$CFLAGS -I$testlamdir/include/mpi2c++"
263       lamdir="$testlamdir"
264       AC_SUBST(lamdir)
265       mpienable="true"
266       AC_SUBST(mpienable)
267       break
268     fi
269   done
270   AC_MSG_RESULT($lamdir)
271 else
272   AC_MSG_RESULT([no])
273 fi
274
275
276 dnl Set CTN path
277 AC_ARG_WITH(ctn,
278 [  --with-ctn[=PATH]         Set path of CTN DICOM library ],
279 [    if test "$withval" != "no" ; then
280          tryctndir=$withval
281      fi ]
282 )
283
284 if test "$withval" = "no" -o "$withval" = "NONE" ; then
285   AC_MSG_CHECKING([for CTN DICOM installation])
286   AC_MSG_RESULT([disabled])
287 else
288   AC_MSG_CHECKING([for CTN DICOM installation])
289   for testctndir in $tryctndir/lib /usr/local/lib /usr/local/ctn/lib /usr/lib /usr/ctn/lib /usr/lib/ctn /opt/ctn/lib ; do
290     if test -f "$testctndir/libctn.a" ; then
291       LDFLAGS="$LDFLAGS -L$testctndir"
292       ctnlib="true"
293       break
294     fi
295   done
296   for testctndir in $tryctndir/include /usr/local/include /usr/local/ctn/include /usr/include /usr/include/ctn /usr/ctn/include /opt/ctn/include ; do
297     if test -f "$testctndir/ctn_os.h" ; then
298       CFLAGS="$CFLAGS -I$testctndir"
299       ctninclude="true"
300       break
301     fi
302   done
303   if test "$ctnlib" = "true" -a "$ctninclude" = "true" ; then
304       ctn="true"
305       AC_DEFINE(HAVE_CTN_DICOM,1,[ctn dicom library])
306       AC_MSG_RESULT([yes])
307   else
308     AC_MSG_RESULT([no])
309   fi
310 fi
311
312 dnl Set CPU
313 AC_MSG_CHECKING([for CPU specification])
314 AC_ARG_WITH(mcpu,
315 [  --with-mcpu[=CPU]         Set name of CPU for gcc -mcpu])
316
317 if test "$withval" = "no" -o "$withval" = "yes" -o "$withval" = ""; then
318   AC_MSG_RESULT([no])
319 else
320   AC_MSG_RESULT([$withval])
321   CFLAGS="$CFLAGS -mcpu=$withval"
322 fi
323
324 AC_MSG_CHECKING([for web access])
325 dnl Set cgi-bin directory
326 AC_ARG_WITH(cgibin-dir, [  --with-cgibin-dir=PATH  Set path of CGI binaries directory ], 
327 [ cgibindir=$withval ; AC_SUBST(cgibindir) ] )
328
329 AC_ARG_WITH(cgibin-url, [  --with-cgibin-url=PATH  Set URL path of CGI binaries ], 
330 [ cgibinurl=$withval ; AC_SUBST(cgibinurl) ] )
331
332 AC_ARG_WITH(webdata-dir, [  --with-webdata-dir=PATH Set path of webdata], 
333 [ webdatadir=$withval ; AC_SUBST(webdatadir)  ] )
334
335 AC_ARG_WITH(webdata-url, [  --with-webdata-url=PATH Set URL path of webdata], 
336 [ webdataurl=$withval ; AC_SUBST(webdataurl) ] )
337
338 AC_ARG_WITH(html-dir, [  --with-html-dir=PATH    Set directory of html files], 
339 [ html_%dir=$withval ; AC_SUBST(htmldir) ] )
340
341 if test "x$cgibindir" != "x" -o "x$cgibinurl" != "x" ; then
342   cgiprograms="ctsim.cgi ctsim.conf"
343   AC_SUBST(cgiprograms)
344 fi
345
346 if test "x$html_dir" = "x" ; then
347   htmldata=simulate.html
348   AC_SUBST(htmldata)
349 fi
350 AM_CONDITIONAL(USE_HTML, test "x$html_dir" = "x")
351
352 if test "x$cgibindir" != "x" -o "x$cgibinurl" != "x" -o "x$webdatadir" != "x" -o "x$webdataurl" != "x" -o "x$html_dir" != "x" ; then
353   webenabled=true
354   AC_SUBST(webenabled)
355   AC_MSG_RESULT([yes])
356   if test "x$cgibindir" = "x" ; then
357     AC_MSG_ERROR([--with-cgibin-dir not set for web access])
358   elif test "x$cgibinurl" = "x" ; then
359     AC_MSG_ERROR([--with-cgibin-url not set for web access])
360   elif test "x$webdatadir" = "x" ; then
361     AC_MSG_ERROR([--with-webdata-dir not set for web access])
362   elif test "x$webdataurl" = "x" ; then
363     AC_MSG_ERROR([--with-webdata-url not set for web access])
364   elif test "x$html_dir" = "x" ; then
365     AC_MSG_ERROR([--with-html-dir not set for web access])
366   fi
367 else
368   AC_MSG_RESULT([no])
369 fi
370
371 AM_CONDITIONAL(USE_LAM, test "x$lamdir" != "x")
372
373 AC_PATH_XTRA
374 AC_SUBST(X_CFLAGS)
375 dnl Following five are concatenated together into a linker specification.
376 AC_SUBST(X_LIBS)
377 AC_SUBST(X_TOOLKIT_LIBS)
378 AC_SUBST(X_PRE_LIBS)
379 AC_SUBST(X_BASIC_LIBS)
380 AC_SUBST(X_EXTRA_LIBS)
381
382 dnl Our Makefile.am files test the automake variable NO_X to determine
383 dnl whether X should be supported.
384 AM_CONDITIONAL(NO_X, test "x$with_x" = "xno")
385
386 my_includes="$my_includes -I../include -I.. -I/usr/local/include"
387
388 LDFLAGS="$LDFLAGS -L/usr/local/lib"
389
390 AC_MSG_CHECKING([for X])
391 if test "$with_x" != "no" && test "$wxwin" = "true"; then
392   AC_DEFINE(HAVE_X11,1,[X11 system])
393   LDFLAGS="$LDFLAGS -L../libctgraphics -L/usr/X11R6/lib -L/usr/X11R6/lib64"
394   my_includes="$my_includes -I/usr/X11R6/include -I/usr/include/X11"
395   ctlib_graphics="$ctlibs_base -lctgraphics"
396   AC_MSG_RESULT(yes)
397   ctlib_graphics="$ctlib_graphics $X_BASIC_LIBS $X_TOOLKIT_LIBS"
398   wx_cppflags="`$wxconfig --cppflags`"
399   if test "$libgl" = "true" ; then
400     dnl  Removed "-lglut" for Mac OS X compilation
401     ctlib_graphics="$ctlib_graphics -lGL -lGLU"
402     if test "$wxwin" = "true" ; then
403        wxdebug=""
404        if test "$debug" = "true"; then
405          wxdebug="--debug"
406        fi  
407       if test "x$wx_gtk" != "x" ; then
408        ctlib_graphics="$ctlib_graphics `$wxconfig $wxdebug --version=3.0  --libs std,gl` ${GTK_LIBS} ${GLIB_LIBS}"
409        
410       elif test "x$wx_mac" != "x" ; then
411         ctlib_graphics="$ctlib_graphics `$wxconfig $wxdebug --version=3.0 --libs std,gl`"
412       fi
413     fi
414   fi
415   if test "$wxwin" = "true" ; then
416     AC_DEFINE(HAVE_SGP,1,[use sgp library])
417   fi
418 else
419   AC_MSG_RESULT(no)
420 fi
421
422 AM_CONDITIONAL(HAVE_SGP, test "$wxwin" = "true")
423
424 if test "$png" = "true" ; then
425   ctlibs_tools="$ctlibs_tools -lpng"
426 fi
427 if test "$zlib" = "true" ; then
428   ctlibs_tools="$ctlibs_tools -lz"
429 fi
430 if test "$fftw" = "true" ; then
431   ctlibs_tools="$ctlibs_tools -lfftw3"
432 fi
433 if test "$ctn" = "true"; then
434   ctlibs_tools="$ctlibs_tools -lctn"
435 fi
436
437 dnl Check for dmalloc
438 AC_CHECK_LIB(dmallocxx, main, [dmallocxx=true], [dmallocxx=false])
439 AC_MSG_CHECKING([for enable-dmalloc])
440 AC_ARG_ENABLE(dmalloc,
441 [  --enable-dmalloc        Use dmalloc memory allocation],
442 [case "${enableval}" in
443   yes) usedmalloc=true 
444        AC_MSG_RESULT(yes)
445        ;;
446   no)  usedmalloc=false 
447        AC_MSG_RESULT(no)
448        ;;
449   *) AC_MSG_RESULT([bad value ${enableval} for --enable-dmalloc]) 
450        ;;
451 esac],
452 [usedmalloc=false; AC_MSG_RESULT(no)])
453
454 if test "$dmallocxx" = "true" -a "$usedmalloc" = "true" ; then
455   ctlibs_tools="$ctlibs_tools -ldmallocxx"
456   AC_DEFINE(HAVE_DMALLOC,1,[dmalloc library])
457   AC_MSG_RESULT(Using dmalloc)
458 fi
459
460 dnl Check for efence
461 AC_CHECK_LIB(efence, main, [efence=true], [efence=false])
462 AC_MSG_CHECKING([for enable-efence])
463 AC_ARG_ENABLE(efence,
464 [--enable-efence],[Use ElectricFence memory allocation],
465 [case "${enableval}" in
466   yes) useefence=true 
467        AC_MSG_RESULT(yes)
468        ;;
469   no)  useefence=false 
470        AC_MSG_RESULT(no)
471        ;;
472   *) AC_MSG_RESULT([bad value ${enableval} for --enable-efence]) 
473        ;;
474 esac],
475 [useefence=false; AC_MSG_RESULT(no)])
476
477 if test "$efence" = "true" -a "$useefence" = "true" ; then
478   ctlibs_tools="$ctlibs_tools -lefence"
479   AC_DEFINE(HAVE_EFENCE,1,[efence library])
480   AC_MSG_RESULT(Using efence)
481 fi
482
483 if test "$wxwin" = "true" ; then
484   if test "$wx_gtk" = "true"  -o "$wx_mac" = "true" ; then
485     wxcflags=`$wxconfig $wxdebug --cxxflags --version=3.0`
486     #wxlibs=`$wxconfig --libs`
487   else
488         wxcflags="-D__WXMSW__ -D__WIN32__ -D__GNUWIN32__"
489         wxlibs="-lwx -lglui -ljpeg -lxpm -lzlib -ltiff"
490   fi
491   CFLAGS="$CFLAGS -I../include $wxcflags"
492   ctlib_graphics="$ctlib_graphics $wxlibs"
493 fi
494 AC_SUBST(wxcflags)
495 AC_SUBST(wxlibs)
496 AM_CONDITIONAL(HAVE_WXWINDOWS, test "$wxwin"="true")
497
498 dnl Setting projet libraries and includes
499 LDFLAGS="$LDFLAGS -L../libctsupport -L../libctsim" 
500 ctlibs="$ctlibs_base -lctsim $ctlib_graphics -lctsupport $ctlibs_tools"
501 AC_SUBST(ctlibs)
502
503 if test "x$lamdir" != "x" ; then
504   lamprograms="ctsimtext-lam"
505   AC_SUBST(lamprograms)
506   lamdefs="$CFLAGS"
507   AC_SUBST(lamdefs)
508 fi
509
510 CXXFLAGS="$CFLAGS"
511
512 AC_SUBST(my_includes)
513 AC_SUBST(wx_cppflags)
514
515 AC_CONFIG_FILES([Makefile libctgraphics/Makefile libctsupport/Makefile libctsim/Makefile man/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 helical/Makefile helical/sample-helical.sh])
516
517 AC_OUTPUT