source: main/trunk/greenstone2/runtime-src/packages/security/gs-code-changes/configure_scripts/configure.in@ 28886

Last change on this file since 28886 was 28886, checked in by ak19, 10 years ago

Additions to the OWASP-for-C++ security package, even though we are no longer using this now. Adding Dr Bainbridge's new files esapitools.cpp and .h, in case we use this in future, along with its Makefile.in. Adding configure files to enable/disable the security package. (The Makefile in runtime-src/packages is not yet complete.)

  • Property svn:executable set to *
File size: 16.4 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl Use autoconf-2.59 or later... it might not work anymore with
3dnl the older 2.1x versions - jrm21 12/2004
4AC_INIT()
5AC_CONFIG_HEADER(config.h)
6
7PACKAGE=gsdl
8VERSION=2.x-svn
9AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
10AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
11AC_SUBST(PACKAGE)
12AC_SUBST(VERSION)
13
14
15dnl
16dnl Set use of fast cgi
17dnl
18USE_FASTCGI=0
19if test USE_FASTCGI = 1; then
20AC_DEFINE(USE_FASTCGI)
21AC_SUBST(USE_FASTCGI)
22fi
23
24dnl
25dnl Set use of langaction
26dnl
27dnl USE_LANGACTION=0
28if test USE_LANGACTION = 1; then
29AC_DEFINE(USE_LANGACTION)
30AC_SUBST(USE_LANGACTION)
31fi
32
33dnl
34dnl Set use of corba
35dnl
36AC_ARG_ENABLE(corba, [ --enable-corba Enable CORBA support], USE_CORBA=$enableval, USE_CORBA=no)
37if test $USE_CORBA = "yes" -o $USE_CORBA = "1" ; then
38 USE_CORBA=1
39 AC_DEFINE(USE_CORBA,[])
40else
41 USE_CORBA=0
42fi
43AC_SUBST(USE_CORBA)
44
45AC_ARG_WITH(micodir, [ --with-micodir Use installed MICO directory], MICO_DIR=$withval, MICO_DIR="default")
46AC_DEFINE_UNQUOTED(MICO_DIR, "$MICO_DIR")
47AC_SUBST(MICO_DIR)
48
49dnl
50dnl Disable all Java compilation
51dnl
52AC_ARG_ENABLE(java, [ --disable-java Disable Java compilation], ENABLE_JAVA=$enableval, ENABLE_JAVA=yes)
53if test $ENABLE_JAVA = "yes" -o $ENABLE_JAVA = "1" ; then
54 ENABLE_JAVA=1
55 if test "x$JAVA_HOME" != "x" ; then
56 echo "Detected JAVA_HOME is set, however this will not be used during compilation"
57 echo "To control the version of 'javac' and 'java' set environment variables JAVAC"
58 echo "and JAVA respectively"
59 export JAVA_HOME=
60 fi
61else
62 ENABLE_JAVA=0
63fi
64AC_SUBST(ENABLE_JAVA)
65
66dnl
67dnl Set use of z39.50
68dnl
69AC_ARG_ENABLE(z3950, [ --enable-z3950 Enable Z39.50 client support], USE_Z3950=$enableval, USE_Z3950=no)
70if test $USE_Z3950 = "yes" -o $USE_Z3950 = "1" ; then
71 USE_Z3950=1
72 AC_DEFINE(USE_Z3950,[])
73else
74 USE_Z3950=0
75fi
76AC_SUBST(USE_Z3950)
77
78dnl
79dnl Set use of yaz - now compiled by default even when z3950 support not required
80dnl
81AC_ARG_ENABLE(yaz, [ --disable-yaz Disable YAZ compilation], USE_YAZ=$enableval, USE_YAZ=yes)
82if test $USE_YAZ = "yes" -o $USE_YAZ = "1" ; then
83 USE_YAZ=1
84 AC_DEFINE(USE_YAZ,[])
85else
86 USE_YAZ=0
87fi
88AC_SUBST(USE_YAZ)
89
90dnl
91dnl Set use of wvware (enabled by default)
92dnl
93AC_ARG_ENABLE(wvware, [ --disable-wvware Disable wvWare compilation], USE_WVWARE=$enableval, USE_WVWARE=yes)
94if test $USE_WVWARE = "yes" -o $USE_WVWARE = "1" ; then
95 USE_WVWARE=1
96 AC_DEFINE(USE_WVWARE,[])
97else
98 USE_WVWARE=0
99fi
100AC_SUBST(USE_WVWARE)
101
102dnl
103dnl Set use of JDBM (enabled by default)
104dnl
105AC_ARG_ENABLE(jdbm, [ --disable-jdbm Disable JDBM compilation], USE_JDBM=$enableval, USE_JDBM=yes)
106if test $ENABLE_JAVA = "1" -a \( $USE_JDBM = "yes" -o $USE_JDBM = "1" \) ; then
107 USE_JDBM=1
108 AC_DEFINE(USE_JDBM,[])
109else
110 USE_JDBM=0
111fi
112AC_SUBST(USE_JDBM)
113
114dnl
115dnl Set use of GDBM (enabled by default)
116dnl
117AC_ARG_ENABLE(gdbm, [ --disable-gdbm Disable GDBM compilation], USE_GDBM=$enableval, USE_GDBM=yes)
118if test $USE_GDBM = "yes" -o $USE_GDBM = "1" ; then
119 USE_GDBM=1
120 AC_DEFINE(USE_GDBM,[])
121else
122 USE_GDBM=0
123fi
124AC_SUBST(USE_GDBM)
125
126dnl
127dnl Set use of SECURITY package (enabled by default)
128dnl
129AC_ARG_ENABLE(security, [ --disable-security Disable SECURITY compilation], USE_SECURITY=$enableval, USE_SECURITY=yes)
130if test $USE_SECURITY = "yes" -o $USE_SECURITY = "1" ; then
131 USE_SECURITY=1
132 AC_DEFINE(USE_SECURITY,[])
133else
134 USE_SECURITY=0
135fi
136AC_SUBST(USE_SECURITY)
137
138dnl
139dnl disable compilation of accent folding stuff for mgpp (and one day mg)
140dnl
141AC_ARG_ENABLE(accentfold, [ --disable-accentfold Disable Accent Folding for MGPP], ENABLE_ACCENTFOLD=$enableval, ENABLE_ACCENTFOLD=yes)
142if test $ENABLE_ACCENTFOLD = "yes" -o $ENABLE_ACCENTFOLD = "1" ; then
143 ENABLE_ACCENTFOLD=1
144 AC_DEFINE(ENABLE_ACCENTFOLD,[])
145else
146 ENABLE_ACCENTFOLD=0
147fi
148AC_SUBST(ENABLE_ACCENTFOLD)
149
150dnl
151dnl Set use of SQLite (enabled by default)
152dnl
153AC_ARG_ENABLE(sqlite, [ --disable-sqlite Disable SQLite support], USE_SQLITE=$enableval, USE_SQLITE=yes)
154if test $USE_SQLITE = "yes" -o $USE_SQLITE = "1" ; then
155 USE_SQLITE=1
156 AC_DEFINE(USE_SQLITE,[])
157else
158 USE_SQLITE=0
159fi
160AC_SUBST(USE_SQLITE)
161
162dnl
163dnl Set use of RSS (enabled by default)
164dnl
165AC_ARG_ENABLE(rss, [ --disable-rss Disable RSS support], USE_RSS=$enableval, USE_RSS=yes)
166if test $USE_RSS = "yes" -o $USE_RSS = "1" ; then
167 USE_RSS=1
168 AC_DEFINE(USE_RSS,[])
169else
170 USE_RSS=0
171fi
172AC_SUBST(USE_RSS)
173
174
175dnl
176dnl Set use of Apache httpd (disabled by default)
177dnl
178if test -d runtime-src; then
179 AC_ARG_ENABLE(apache-httpd, [ --enable-apache-httpd Enable Apache httpd support], USE_APACHE_HTTPD=$enableval, USE_APACHE_HTTPD=no)
180 if test $USE_APACHE_HTTPD = "yes" -o $USE_APACHE_HTTPD = "1" ; then
181 USE_APACHE_HTTPD=1
182 AC_DEFINE(USE_APACHE_HTTPD,[])
183 else
184 USE_APACHE_HTTPD=0
185 fi
186 AC_SUBST(USE_APACHE_HTTPD)
187fi
188
189dnl
190dnl Set compilation of JNI parts of MG and MGPP indexers (disabled by default, which is GS2's default behaviour)
191dnl
192AC_ARG_ENABLE(jni, [ --enable-jni Enable JNI compilation], ENABLE_JNI=$enableval, ENABLE_JNI=no)
193if test $ENABLE_JAVA = "1" -a \( $ENABLE_JNI = "yes" -o $ENABLE_JNI = "1" \) ; then
194 ENABLE_JNI=1
195 AC_DEFINE(ENABLE_JNI,[])
196else
197 ENABLE_JNI=0
198fi
199AC_SUBST(ENABLE_JNI)
200
201dnl
202dnl Set compilation of MG (enabled by default)
203dnl
204AC_ARG_ENABLE(mg, [ --disable-mg Disable MG compilation], ENABLE_MG=$enableval, ENABLE_MG=yes)
205if test $ENABLE_MG = "yes" -o $ENABLE_MG = "1" ; then
206 ENABLE_MG=1
207 AC_DEFINE(ENABLE_MG,[])
208 else
209 ENABLE_MG=0
210 fi
211AC_SUBST(ENABLE_MG)
212
213
214dnl
215dnl Set compilation of MGPP (enabled by default)
216dnl
217AC_ARG_ENABLE(mgpp, [ --disable-mgpp Disable MGPP compilation], ENABLE_MGPP=$enableval, ENABLE_MGPP=yes)
218if test $ENABLE_MGPP = "yes" -o $ENABLE_MGPP = "1" ; then
219 ENABLE_MGPP=1
220 AC_DEFINE(ENABLE_MGPP,[])
221else
222 ENABLE_MGPP=0
223fi
224AC_SUBST(ENABLE_MGPP)
225
226dnl
227dnl Set compilation of lucene (enabled by default)
228dnl
229AC_ARG_ENABLE(lucene, [ --disable-lucene Disable Lucene compilation], ENABLE_LUCENE=$enableval, ENABLE_LUCENE=yes)
230if test $ENABLE_JAVA = "1" -a \( $ENABLE_LUCENE = "yes" -o $ENABLE_LUCENE = "1" \) ; then
231 ENABLE_LUCENE=1
232 AC_DEFINE(ENABLE_LUCENE,[])
233else
234 ENABLE_LUCENE=0
235fi
236AC_SUBST(ENABLE_LUCENE)
237
238
239dnl
240dnl Set compilation and/or sourcing of gnome-lib extension (disabled by default)
241dnl
242AC_ARG_ENABLE(gnome-lib-ext, [ --enable-gnome-lib-ext Enable the gnome-lib extension], ENABLE_GNOMELIB_EXT=1, ENABLE_GNOMELIB_EXT=0)
243if test -d ext/gnome-lib ; then
244 AC_DEFINE(ENABLE_GNOMELIB_EXT, $ENABLE_GNOMELIB_EXT)
245elif test -f ext/gnome-lib-minimal/devel.bash ; then
246 AC_DEFINE(ENABLE_GNOMELIB_EXT, $ENABLE_GNOMELIB_EXT)
247else
248 # Running `svn` returns 127 if no svn is installed. It returns 1 if svn is installed,
249 # since it suggests running svn --help. It returns 0 if running `svn --version`
250
251 if test $ENABLE_GNOMELIB_EXT = 1; then
252 svn --version
253 result=$?
254 if test $result = 0; then
255 cd ext
256 svn co http://svn.greenstone.org/gs2-extensions/gnome-lib/trunk/src gnome-lib
257 cd ..
258 AC_DEFINE(ENABLE_GNOMELIB_EXT, 1)
259 else
260 echo "**** WARNING: No gnome-lib or gnome-lib-minimal(/devel.bash) in gs2build/ext folder. Unable to check out gnome-lib. Disabling gnome-lib-ext."
261 AC_DEFINE(ENABLE_GNOMELIB_EXT, 0)
262 fi
263 fi
264fi
265AC_SUBST(ENABLE_GNOMELIB_EXT)
266
267
268dnl Checks for programs.
269LDFLAGS=$LDFLAGS
270AC_SUBST(LDFLAGS)
271dnl only set CFLAGS if not already set in environment
272if test -z "$CFLAGS"; then
273CFLAGS=-O2
274fi
275AC_SUBST(CFLAGS)
276
277
278AC_PROG_CC
279AC_PROG_CXX
280AC_PROG_AWK
281AC_PROG_YACC
282dnl get $target_cpu, $target_vendor, and $target_os
283dnl (as well as host_*)
284AC_CANONICAL_SYSTEM
285dnl do we actually want this? It adds a prefix based on host, system etc
286dnl AC_ARG_PROGRAM
287AC_PROG_INSTALL
288AC_PROG_LN_S
289AC_PROG_MAKE_SET
290AC_PROG_RANLIB
291
292AC_MSG_CHECKING(to see if architecture is 64-bit)
293arch_64bit=no
294case "$host_cpu" in
295x86_64) arch_64bit=yes ;;
296esac
297
298if test "$arch_64bit" = yes; then
299 AC_MSG_RESULT(yes)
300 if test -z "$ARCH_DEP_FLAGS" ; then
301 ARCH_DEP_FLAGS=-fPIC
302 fi
303else
304 AC_MSG_RESULT(no)
305 if test -z "$ARCH_DEP_FLAGS" ; then
306 ARCH_DEP_FLAGS=
307 fi
308fi
309
310export ARCH_DEP_FLAGS
311AC_SUBST(ARCH_DEP_FLAGS)
312
313
314#moved CORBA MICO directory test to get version of MICO
315if test $USE_CORBA = 1; then
316
317if test $MICO_DIR = "default"; then
318#do something
319MICO_INC="-I packages/mico/mico/include"
320else
321#build the micotest program
322MICO_INC= ""
323if test $MICO_DIR != yes; then
324MICO_INC="-I $MICO_DIR"
325fi
326fi
327
328#get MICO_VER value
329sh -c "$CC -c micotest.cpp -o micotest.o $MICO_INC 2>&1" > /dev/null
330sh -c "$CC -o micotest micotest.o -lstdc++ 2>&1" > /dev/null
331MICO_VER=`./micotest` || MICO_VER=2.3.5
332sh -c "rm micotest"
333sh -c "rm micotest.o"
334
335#do test of MICO_VER
336if test MICO_VER != 0; then
337AC_DEFINE(MICO_VER)
338AC_SUBST(MICO_VER)
339fi
340#end USE_CORBA test
341fi
342
343dnl Checks for typedefs, structures, and compiler characteristics.
344AC_AIX
345AC_ISC_POSIX
346AC_MINIX
347fp_C_PROTOTYPES
348AC_C_CONST
349AC_TYPE_OFF_T
350AC_TYPE_SIZE_T
351AC_HEADER_TIME
352AC_STRUCT_TM
353
354dnl --- This should be in the stdc checking -----------------
355if test "$ac_cv_prog_cc_stdc" = '-Xc'; then
356dnl The Pyramids running SMP_DC.OSx on MIPS r3000 chips with
357dnl /usr/opt/cc3.11/bin/cc treat -Xc as full ANSI mode - no POSIX or
358dnl XOPEN extensions (like popen).
359dnl Unfortunately -D_{XOPEN,POSIX}_SOURCE can't provide all that mg
360dnl needs. So drop back to -Xa
361AC_TRY_COMPILE(
362[#include <stdio.h>
363], [ FILE *rubbish = popen("yes", "r"); ],,
364[CC="`echo $CC | sed 's/-Xc/-Xa/'`" ac_cv_prog_cc_stdc='-Xa'])
365fi
366dnl ----------------------
367
368
369dnl Checks for libraries.
370dnl check for -lg:
371AC_HAVE_LIBRARY(g)
372dnl check for -lm:
373AC_HAVE_LIBRARY(m)
374dnl check for -lcrypt:
375AC_HAVE_LIBRARY(crypt)
376#if test $ENABLE_ACCENTFOLD = 1; then
377#AC_HAVE_LIBRARY(iconv)
378#fi
379
380dnl Checks for header files.
381AC_HEADER_DIRENT
382AC_HEADER_STDC
383AC_CHECK_HEADERS(fcntl.h limits.h sys/time.h unistd.h crypt.h string.h memory.h sys/procfs.h sys/stat.h)
384AC_EGREP_HEADER(fread, stdio.h, AC_DEFINE(HAVE_FREAD_DECL))
385AC_EGREP_HEADER(fgetc, stdio.h, AC_DEFINE(HAVE_FGETC_DECL))
386AC_EGREP_HEADER(pr_brksize, sys/procfs.h, AC_DEFINE(HAVE_PR_BRKSIZE))
387
388dnl Checks for library functions.
389AC_FUNC_ALLOCA
390AC_PROG_GCC_TRADITIONAL
391AC_TYPE_SIGNAL
392AC_FUNC_VPRINTF
393AC_CHECK_FUNCS(ftime select strftime strtol getrusage times mallinfo setbuffer getpagesize strerror)
394AC_REPLACE_FUNCS(ftruncate strstr strcasecmp)
395
396dnl see if gettext is in libc. (try the textdomain() function).
397AC_CHECK_FUNC(textdomain, AC_DEFINE(ENABLE_NLS ,1) )
398
399# *** Custom checking (based on GNU tar configure.in) ***
400# ---------------------------------------------------------------------------
401AC_MSG_CHECKING(for HP-UX needing gmalloc)
402if test "`(uname -s) 2> /dev/null`" = 'HP-UX'; then
403 AC_MSG_RESULT(yes)
404 AC_LIBOBJ([gmalloc])
405 AC_DEFINE(HAVE_VALLOC)
406else
407 AC_MSG_RESULT(no)
408 AC_CHECK_FUNCS(valloc)
409fi
410
411# we cannot generate static libraries under Darwin
412AC_MSG_CHECKING(for Apple MacOS X/Darwin)
413if test "`(uname -s) 2> /dev/null`" = 'Darwin'; then
414 AC_MSG_RESULT(yes)
415 STATIC=""
416else
417 AC_MSG_RESULT(no)
418 STATIC="-static "
419fi
420AC_SUBST(STATIC)
421
422fp_WITH_DMALLOC
423fp_WITH_REGEX
424
425# ---------------------------------------------------------------------------
426if test "$ac_cv_func_alloca" = 'no'; then
427dnl support functions for alloca.c
428 AC_LIBOBJ([xmalloc])
429 AC_LIBOBJ([error])
430fi
431
432
433# ---------------------------------------------------------------------------
434
435dnl
436dnl Switch into C++
437dnl
438AC_LANG_CPLUSPLUS
439
440dnl
441dnl Now check that Perl is actually around, and can be found
442dnl
443AC_MSG_CHECKING(that Perl 5 is available)
444success="no"
445pl_path="$PATH"
446IFS="${IFS= }"; pl_save_ifs="$IFS"; IFS=":"
447for pl_dir in $pl_path; do
448 test -z "$pl_dir" && pl_dir=.
449 if test -x $pl_dir/perl; then
450 success="yes"
451 break
452 fi
453done
454IFS="$pl_save_ifs"
455
456dnl
457dnl Perl actually can be run; now we see if it is version 5 by
458dnl running a sample script (which returns a "clean" version number
459dnl and then tests the result using expr. If perl errors in some
460dnl way (eg. broken Perl executable, missing script), we set a failure
461dnl value ("0") and then proceed as best we can
462dnl
463if test $success = "yes"; then
464try=`perl configtest.pl` || try="0"
465try=`expr $try \> 5.000`
466if test $try = "1"; then
467AC_MSG_RESULT("yes")
468else
469success="no"
470fi
471fi
472
473if test $success = "no"; then
474AC_MSG_RESULT("no")
475AC_MSG_ERROR("Perl 5 not available - cannot install")
476fi
477
478dnl
479dnl Check if the STL library has any known faults;
480dnl In GCC 2.7.2.x series, some STL library headers are missing
481dnl a file called "new" which is referred to by other headers
482dnl (eg. vector/vector.h); if this applies, then all use of the
483dnl STL will cause a compile fail, so we'd better let the user
484dnl know now, before things really go wrong!
485dnl
486success=no
487AC_MSG_CHECKING("whether STL library has known faults")
488
489dnl - first shot, try simple good old vector on its own
490AC_TRY_COMPILE(
491[#include <vector>
492],
493[],
494success=yes,
495)
496
497dnl - try using the .h equivalent
498if test $success = "no"; then
499AC_TRY_COMPILE(
500[#include <vector.h>
501],
502[],
503success="yes",
504)
505fi
506
507dnl - now try for the objectspace headers
508if test $success = "no"; then
509AC_TRY_COMPILE(
510[#include <ospace\\std\\vector>
511],
512[],
513success="yes",
514)
515fi
516
517if test $success = yes; then
518AC_MSG_RESULT("no")
519else
520AC_MSG_RESULT("yes")
521AC_MSG_ERROR("STL Broken - Obtain newer version of GNU C Compiler")
522fi
523
524gsdlos=`uname | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
525# check for running bash under cygwin
526 if test "`echo $gsdlos | sed 's/cygwin//'`" != "$gsdlos" ;
527 then
528 gsdlos=windows
529 fi
530AC_SUBST(gsdlos)
531
532# check for endianness
533AC_C_BIGENDIAN
534# ---------------------------------------------------------------------------
535if test "$ac_cv_func_alloca" = 'no'; then
536dnl support functions for alloca.c
537 AC_LIBOBJ([xmalloc.o])
538 AC_LIBOBJ([error])
539fi
540
541# ---------------------------------------------------------------------------
542
543dnl
544dnl Locate all children of the modules folder
545dnl
546moduleDirs=""
547MODULEDIRS=""
548if test -d modules ; then
549 for x in `find modules -mindepth 1 -maxdepth 2`; do
550 if test -d "$x"; then
551 d="$x/Makefile.in"
552 if test -e "$d"; then
553 dnl echo $d
554 moduleDirs="$moduleDirs $x/Makefile"
555 MODULEDIRS="$MODULEDIRS $x"
556 fi
557 fi
558 done
559 echo "Making $moduleDirs in modules directory"
560 AC_SUBST(MODULEDIRS)
561fi
562
563
564#----------------------------------------------------------------------------
565# GS2 uses this configure to set up gnome-lib env, GS3 uses the one in gs2build/build-src
566# For gnome-lib-minimal need to source its ./devel.bash before wvware can even be configured
567# For a gnome-lib that's already compiled, don't need to its source ./devel.bash to configure wvware
568# If a gnome-lib is not yet compiled, we compile it first with CASCADE-MAKE.sh
569# Need to make sure that the gnome-lib-minimal is not the cut-down gnome-lib-minimal (which contains
570# only the linux/lib subfolder) that's included with linux and mac binaries, because we can't compile
571# wvware with the cut-down one, only run wvware with it. The test for the cut-down version is that
572# it does not contain devel.bash.
573
574if test -f ext/gnome-lib-minimal/devel.bash; then
575 echo "*** gnome-lib (minimal) detected. Sourcing the gnomelib env for configuring wvware..."
576 cd ext/gnome-lib-minimal
577 source ./devel.bash
578 cd ../..
579elif test -d ext/gnome-lib; then
580 if test -d ext/gnome-lib/$gsdlos; then
581 echo "*** gnome-lib already compiled up in ext/gnome-lib/$gsdlos"
582 echo "*** Sourcing the gnomelib env for configuring wvware for GS2 (although it's not necessary)..."
583 cd ext/gnome-lib
584 source ./devel.bash
585 cd ../..
586 else
587 echo "*** Compiling up gnome-lib..."
588 cd ext/gnome-lib
589 ./CASCADE-MAKE.sh
590 gnomestatus=$?
591 if test $gnomestatus != 0; then
592 echo "****************************************"
593 echo "@@@ Failed to compile up gnomelib successfully"
594 echo "****************************************"
595 exit -1
596 fi
597 cd ../..
598 fi
599fi
600
601# ---------------------------------------------------------------------------
602dnl for Darwin, as our packages don't (yet) correctly guess our system type.
603dnl not needed any more?
604dnl ac_configure_args="$ac_configure_args --build=$build --target=$target"
605
606# indexers needs a bindir option to get the binaries into the right place
607gsdlprefix=`pwd`
608ac_configure_args="$ac_configure_args --bindir=$gsdlprefix/bin/$gsdlos --libdir=$gsdlprefix/lib/$gsdlos"
609AC_CONFIG_SUBDIRS(common-src)
610AC_CONFIG_SUBDIRS(build-src)
611
612# the list of folders in the src folder
613srclist="common-src/Makefile \
614 build-src/Makefile"
615
616if test -d runtime-src; then
617 AC_CONFIG_SUBDIRS(runtime-src)
618 srclist="$srclist \
619 runtime-src/Makefile"
620fi
621
622AC_OUTPUT(Makefile $srclist $moduleDirs)
623
624
Note: See TracBrowser for help on using the repository browser.