1 | dnl Process this file with autoconf to produce a configure script. |
---|
2 | dnl Use autoconf-2.59 or later... it might not work anymore with |
---|
3 | dnl the older 2.1x versions - jrm21 12/2004 |
---|
4 | AC_INIT(src/lib/text_t.h) |
---|
5 | AC_CONFIG_HEADER(config.h) |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | |
---|
10 | PACKAGE=gsdl |
---|
11 | VERSION=2.x-svn |
---|
12 | AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE") |
---|
13 | AC_DEFINE_UNQUOTED(VERSION, "$VERSION") |
---|
14 | AC_SUBST(PACKAGE) |
---|
15 | AC_SUBST(VERSION) |
---|
16 | |
---|
17 | dnl |
---|
18 | dnl Set use of fast cgi |
---|
19 | dnl |
---|
20 | USE_FASTCGI=0 |
---|
21 | if test USE_FASTCGI = 1; then |
---|
22 | AC_DEFINE(USE_FASTCGI) |
---|
23 | AC_SUBST(USE_FASTCGI) |
---|
24 | fi |
---|
25 | |
---|
26 | dnl |
---|
27 | dnl Set use of langaction |
---|
28 | dnl |
---|
29 | dnl USE_LANGACTION=0 |
---|
30 | if test USE_LANGACTION = 1; then |
---|
31 | AC_DEFINE(USE_LANGACTION) |
---|
32 | AC_SUBST(USE_LANGACTION) |
---|
33 | fi |
---|
34 | |
---|
35 | dnl |
---|
36 | dnl Set use of corba |
---|
37 | dnl |
---|
38 | AC_ARG_ENABLE(corba, [ --enable-corba Enable CORBA support], USE_CORBA=$enableval, USE_CORBA=no) |
---|
39 | if test $USE_CORBA = "yes" -o $USE_CORBA = "1" ; then |
---|
40 | USE_CORBA=1 |
---|
41 | AC_DEFINE(USE_CORBA,[]) |
---|
42 | else |
---|
43 | USE_CORBA=0 |
---|
44 | fi |
---|
45 | AC_SUBST(USE_CORBA) |
---|
46 | |
---|
47 | AC_ARG_WITH(micodir, [ --with-micodir Use installed MICO directory], MICO_DIR=$withval, MICO_DIR="default") |
---|
48 | AC_DEFINE_UNQUOTED(MICO_DIR, "$MICO_DIR") |
---|
49 | AC_SUBST(MICO_DIR) |
---|
50 | |
---|
51 | dnl |
---|
52 | dnl Set use of z39.50 |
---|
53 | dnl |
---|
54 | AC_ARG_ENABLE(z3950, [ --enable-z3950 Enable Z39.50 client support], USE_Z3950=$enableval, USE_Z3950=no) |
---|
55 | if test $USE_Z3950 = "yes" -o $USE_Z3950 = "1" ; then |
---|
56 | USE_Z3950=1 |
---|
57 | AC_DEFINE(USE_Z3950,[]) |
---|
58 | else |
---|
59 | USE_Z3950=0 |
---|
60 | fi |
---|
61 | AC_SUBST(USE_Z3950) |
---|
62 | |
---|
63 | dnl |
---|
64 | dnl Set use of yaz - now compiled by default even when z3950 support not required |
---|
65 | dnl |
---|
66 | AC_ARG_ENABLE(yaz, [ --disable-yaz Disable YAZ compilation], USE_YAZ=$enableval, USE_YAZ=yes) |
---|
67 | if test $USE_YAZ = "yes" -o $USE_YAZ = "1" ; then |
---|
68 | USE_YAZ=1 |
---|
69 | AC_DEFINE(USE_YAZ,[]) |
---|
70 | else |
---|
71 | USE_YAZ=0 |
---|
72 | fi |
---|
73 | AC_SUBST(USE_YAZ) |
---|
74 | |
---|
75 | dnl |
---|
76 | dnl Disable all Java compilation |
---|
77 | dnl |
---|
78 | AC_ARG_ENABLE(java, [ --disable-java Disable Java compilation], ENABLE_JAVA=$enableval, ENABLE_JAVA=yes) |
---|
79 | if test $ENABLE_JAVA = "yes" -o $ENABLE_JAVA = "1" ; then |
---|
80 | ENABLE_JAVA=1 |
---|
81 | if test "x$JAVA_HOME" != "x" ; then |
---|
82 | echo "Detected JAVA_HOME is set, however this will not be used during compilation" |
---|
83 | echo "To control the version of 'javac' and 'java' set environment variables JAVAC" |
---|
84 | echo "and JAVA respectively" |
---|
85 | export JAVA_HOME= |
---|
86 | fi |
---|
87 | else |
---|
88 | ENABLE_JAVA=0 |
---|
89 | fi |
---|
90 | AC_SUBST(ENABLE_JAVA) |
---|
91 | |
---|
92 | dnl |
---|
93 | dnl Set use of JDBM (enabled by default) |
---|
94 | dnl |
---|
95 | AC_ARG_ENABLE(jdbm, [ --disable-jdbm Disable JDBM compilation], USE_JDBM=$enableval, USE_JDBM=yes) |
---|
96 | if test $ENABLE_JAVA = "1" -a \( $USE_JDBM = "yes" -o $USE_JDBM = "1" \) ; then |
---|
97 | USE_JDBM=1 |
---|
98 | AC_DEFINE(USE_JDBM,[]) |
---|
99 | else |
---|
100 | USE_JDBM=0 |
---|
101 | fi |
---|
102 | AC_SUBST(USE_JDBM) |
---|
103 | |
---|
104 | dnl |
---|
105 | dnl Set use of GDBM (enabled by default) |
---|
106 | dnl |
---|
107 | AC_ARG_ENABLE(gdbm, [ --disable-gdbm Disable GDBM compilation], USE_GDBM=$enableval, USE_GDBM=yes) |
---|
108 | if test $USE_GDBM = "yes" -o $USE_GDBM = "1" ; then |
---|
109 | USE_GDBM=1 |
---|
110 | AC_DEFINE(USE_GDBM,[]) |
---|
111 | else |
---|
112 | USE_GDBM=0 |
---|
113 | fi |
---|
114 | AC_SUBST(USE_GDBM) |
---|
115 | |
---|
116 | dnl |
---|
117 | dnl disable compilation of accent folding stuff for mgpp (and one day mg) |
---|
118 | dnl |
---|
119 | AC_ARG_ENABLE(accentfold, [ --disable-accentfold Disable Accent Folding for MGPP], ENABLE_ACCENTFOLD=$enableval, ENABLE_ACCENTFOLD=yes) |
---|
120 | if test $ENABLE_ACCENTFOLD = "yes" -o $ENABLE_ACCENTFOLD = "1" ; then |
---|
121 | ENABLE_ACCENTFOLD=1 |
---|
122 | AC_DEFINE(ENABLE_ACCENTFOLD,[]) |
---|
123 | else |
---|
124 | ENABLE_ACCENTFOLD=0 |
---|
125 | fi |
---|
126 | AC_SUBST(ENABLE_ACCENTFOLD) |
---|
127 | |
---|
128 | |
---|
129 | dnl |
---|
130 | dnl Set use of SQLite (enabled by default) |
---|
131 | dnl |
---|
132 | AC_ARG_ENABLE(sqlite, [ --disable-sqlite Disable SQLite support], USE_SQLITE=$enableval, USE_SQLITE=yes) |
---|
133 | if test $USE_SQLITE = "yes" -o $USE_SQLITE = "1" ; then |
---|
134 | USE_SQLITE=1 |
---|
135 | AC_DEFINE(USE_SQLITE,[]) |
---|
136 | else |
---|
137 | USE_SQLITE=0 |
---|
138 | fi |
---|
139 | AC_SUBST(USE_SQLITE) |
---|
140 | |
---|
141 | dnl |
---|
142 | dnl Set compilation of JNI parts of MG and MGPP indexers (disabled by default, which is GS2's default behaviour) |
---|
143 | dnl |
---|
144 | AC_ARG_ENABLE(jni, [ --enable-jni Enable JNI compilation], ENABLE_JNI=$enableval, ENABLE_JNI=no) |
---|
145 | if test $ENABLE_JAVA = "1" -a \( $ENABLE_JNI = "yes" -o $ENABLE_JNI = "1" \) ; then |
---|
146 | ENABLE_JNI=1 |
---|
147 | AC_DEFINE(ENABLE_JNI,[]) |
---|
148 | else |
---|
149 | ENABLE_JNI=0 |
---|
150 | fi |
---|
151 | AC_SUBST(ENABLE_JNI) |
---|
152 | |
---|
153 | dnl |
---|
154 | dnl Set compilation of MG (enabled by default) |
---|
155 | dnl |
---|
156 | AC_ARG_ENABLE(mg, [ --disable-mg Disable MG compilation], ENABLE_MG=$enableval, ENABLE_MG=yes) |
---|
157 | if test $ENABLE_MG = "yes" -o $ENABLE_MG = "1" ; then |
---|
158 | ENABLE_MG=1 |
---|
159 | AC_DEFINE(ENABLE_MG,[]) |
---|
160 | else |
---|
161 | ENABLE_MG=0 |
---|
162 | fi |
---|
163 | AC_SUBST(ENABLE_MG) |
---|
164 | |
---|
165 | dnl |
---|
166 | dnl Set compilation of MGPP (enabled by default) |
---|
167 | dnl |
---|
168 | AC_ARG_ENABLE(mgpp, [ --disable-mgpp Disable MGPP compilation], ENABLE_MGPP=$enableval, ENABLE_MGPP=yes) |
---|
169 | if test $ENABLE_MGPP = "yes" -o $ENABLE_MGPP = "1" ; then |
---|
170 | ENABLE_MGPP=1 |
---|
171 | AC_DEFINE(ENABLE_MGPP,[]) |
---|
172 | else |
---|
173 | ENABLE_MGPP=0 |
---|
174 | fi |
---|
175 | AC_SUBST(ENABLE_MGPP) |
---|
176 | |
---|
177 | dnl |
---|
178 | dnl Set compilation of lucene (enabled by default) |
---|
179 | dnl |
---|
180 | AC_ARG_ENABLE(lucene, [ --disable-lucene Disable Lucene compilation], ENABLE_LUCENE=$enableval, ENABLE_LUCENE=yes) |
---|
181 | if test $ENABLE_JAVA = "1" -a \( $ENABLE_LUCENE = "yes" -o $ENABLE_LUCENE = "1" \) ; then |
---|
182 | ENABLE_LUCENE=1 |
---|
183 | AC_DEFINE(ENABLE_LUCENE,[]) |
---|
184 | else |
---|
185 | ENABLE_LUCENE=0 |
---|
186 | fi |
---|
187 | AC_SUBST(ENABLE_LUCENE) |
---|
188 | |
---|
189 | |
---|
190 | dnl Checks for programs. |
---|
191 | LDFLAGS=$LDFLAGS |
---|
192 | AC_SUBST(LDFLAGS) |
---|
193 | dnl only set CFLAGS if not already set in environment |
---|
194 | if test -z "$CFLAGS"; then |
---|
195 | CFLAGS=-O2 |
---|
196 | fi |
---|
197 | AC_SUBST(CFLAGS) |
---|
198 | |
---|
199 | |
---|
200 | AC_PROG_CC |
---|
201 | AC_PROG_CXX |
---|
202 | if test $ENABLE_JAVA = "1" ; then |
---|
203 | AC_PROG_JAVA |
---|
204 | AC_PROG_JAVAC |
---|
205 | fi |
---|
206 | AC_PROG_AWK |
---|
207 | AC_PROG_YACC |
---|
208 | dnl get $target_cpu, $target_vendor, and $target_os |
---|
209 | dnl (as well as host_*) |
---|
210 | AC_CANONICAL_SYSTEM |
---|
211 | dnl do we actually want this? It adds a prefix based on host, system etc |
---|
212 | dnl AC_ARG_PROGRAM |
---|
213 | AC_PROG_INSTALL |
---|
214 | AC_PROG_LN_S |
---|
215 | AC_PROG_MAKE_SET |
---|
216 | AC_PROG_RANLIB |
---|
217 | AC_CHECK_TOOL([STRIP],[strip]) |
---|
218 | |
---|
219 | AC_MSG_CHECKING(to see if architecture is 64-bit) |
---|
220 | arch_64bit=no |
---|
221 | case "$host_cpu" in |
---|
222 | x86_64) arch_64bit=yes ;; |
---|
223 | esac |
---|
224 | |
---|
225 | if test "$arch_64bit" = yes; then |
---|
226 | AC_MSG_RESULT(yes) |
---|
227 | if test -z "$ARCH_DEP_FLAGS" ; then |
---|
228 | ARCH_DEP_FLAGS="-fPIC" |
---|
229 | gsdlarch='64' |
---|
230 | fi |
---|
231 | else |
---|
232 | AC_MSG_RESULT(no) |
---|
233 | if test -z "$ARCH_DEP_FLAGS" ; then |
---|
234 | ARCH_DEP_FLAGS= |
---|
235 | gsdlarch='32' |
---|
236 | fi |
---|
237 | fi |
---|
238 | |
---|
239 | export ARCH_DEP_FLAGS |
---|
240 | AC_SUBST(ARCH_DEP_FLAGS) |
---|
241 | |
---|
242 | |
---|
243 | #moved CORBA MICO directory test to get version of MICO |
---|
244 | if test $USE_CORBA = 1; then |
---|
245 | |
---|
246 | if test $MICO_DIR = "default"; then |
---|
247 | #do something |
---|
248 | MICO_INC="-I packages/mico/mico/include" |
---|
249 | else |
---|
250 | #build the micotest program |
---|
251 | MICO_INC= "" |
---|
252 | if test $MICO_DIR != yes; then |
---|
253 | MICO_INC="-I $MICO_DIR" |
---|
254 | fi |
---|
255 | fi |
---|
256 | |
---|
257 | #get MICO_VER value |
---|
258 | sh -c "$CC -c micotest.cpp -o micotest.o $MICO_INC 2>&1" > /dev/null |
---|
259 | sh -c "$CC -o micotest micotest.o -lstdc++ 2>&1" > /dev/null |
---|
260 | MICO_VER=`./micotest` || MICO_VER=2.3.5 |
---|
261 | sh -c "rm micotest" |
---|
262 | sh -c "rm micotest.o" |
---|
263 | |
---|
264 | #do test of MICO_VER |
---|
265 | if test MICO_VER != 0; then |
---|
266 | AC_DEFINE(MICO_VER) |
---|
267 | AC_SUBST(MICO_VER) |
---|
268 | fi |
---|
269 | #end USE_CORBA test |
---|
270 | fi |
---|
271 | |
---|
272 | dnl Checks for typedefs, structures, and compiler characteristics. |
---|
273 | AC_AIX |
---|
274 | AC_ISC_POSIX |
---|
275 | AC_MINIX |
---|
276 | fp_C_PROTOTYPES |
---|
277 | AC_C_CONST |
---|
278 | AC_TYPE_OFF_T |
---|
279 | AC_TYPE_SIZE_T |
---|
280 | AC_HEADER_TIME |
---|
281 | AC_STRUCT_TM |
---|
282 | |
---|
283 | dnl --- This should be in the stdc checking ----------------- |
---|
284 | if test "$ac_cv_prog_cc_stdc" = '-Xc'; then |
---|
285 | dnl The Pyramids running SMP_DC.OSx on MIPS r3000 chips with |
---|
286 | dnl /usr/opt/cc3.11/bin/cc treat -Xc as full ANSI mode - no POSIX or |
---|
287 | dnl XOPEN extensions (like popen). |
---|
288 | dnl Unfortunately -D_{XOPEN,POSIX}_SOURCE can't provide all that mg |
---|
289 | dnl needs. So drop back to -Xa |
---|
290 | AC_TRY_COMPILE( |
---|
291 | [#include <stdio.h> |
---|
292 | ], [ FILE *rubbish = popen("yes", "r"); ],, |
---|
293 | [CC="`echo $CC | sed 's/-Xc/-Xa/'`" ac_cv_prog_cc_stdc='-Xa']) |
---|
294 | fi |
---|
295 | dnl ---------------------- |
---|
296 | |
---|
297 | |
---|
298 | dnl Checks for libraries. |
---|
299 | dnl check for -lg: |
---|
300 | AC_HAVE_LIBRARY(g) |
---|
301 | dnl check for -lm: |
---|
302 | AC_HAVE_LIBRARY(m) |
---|
303 | dnl check for -lcrypt: |
---|
304 | AC_HAVE_LIBRARY(crypt) |
---|
305 | #if test $ENABLE_ACCENTFOLD = 1; then |
---|
306 | #AC_HAVE_LIBRARY(iconv) |
---|
307 | #fi |
---|
308 | |
---|
309 | dnl Checks for header files. |
---|
310 | AC_HEADER_DIRENT |
---|
311 | AC_HEADER_STDC |
---|
312 | AC_CHECK_HEADERS(fcntl.h limits.h sys/time.h unistd.h crypt.h string.h memory.h sys/procfs.h sys/stat.h) |
---|
313 | AC_EGREP_HEADER(fread, stdio.h, AC_DEFINE(HAVE_FREAD_DECL)) |
---|
314 | AC_EGREP_HEADER(fgetc, stdio.h, AC_DEFINE(HAVE_FGETC_DECL)) |
---|
315 | AC_EGREP_HEADER(pr_brksize, sys/procfs.h, AC_DEFINE(HAVE_PR_BRKSIZE)) |
---|
316 | |
---|
317 | dnl Checks for library functions. |
---|
318 | AC_FUNC_ALLOCA |
---|
319 | AC_PROG_GCC_TRADITIONAL |
---|
320 | AC_TYPE_SIGNAL |
---|
321 | AC_FUNC_VPRINTF |
---|
322 | AC_CHECK_FUNCS(ftime select strftime strtol getrusage times mallinfo setbuffer getpagesize strerror) |
---|
323 | AC_REPLACE_FUNCS(ftruncate strstr strcasecmp) |
---|
324 | |
---|
325 | dnl see if gettext is in libc. (try the textdomain() function). |
---|
326 | AC_CHECK_FUNC(textdomain, AC_DEFINE(ENABLE_NLS ,1) ) |
---|
327 | |
---|
328 | # *** Custom checking (based on GNU tar configure.in) *** |
---|
329 | # --------------------------------------------------------------------------- |
---|
330 | AC_MSG_CHECKING(for HP-UX needing gmalloc) |
---|
331 | if test "`(uname -s) 2> /dev/null`" = 'HP-UX'; then |
---|
332 | AC_MSG_RESULT(yes) |
---|
333 | AC_LIBOBJ([gmalloc]) |
---|
334 | AC_DEFINE(HAVE_VALLOC) |
---|
335 | else |
---|
336 | AC_MSG_RESULT(no) |
---|
337 | AC_CHECK_FUNCS(valloc) |
---|
338 | fi |
---|
339 | |
---|
340 | # we cannot generate static libraries under Darwin |
---|
341 | AC_MSG_CHECKING(for Apple MacOS X/Darwin) |
---|
342 | if test "`(uname -s) 2> /dev/null`" = 'Darwin'; then |
---|
343 | AC_MSG_RESULT(yes) |
---|
344 | STATIC="" |
---|
345 | else |
---|
346 | AC_MSG_RESULT(no) |
---|
347 | STATIC="-static " |
---|
348 | fi |
---|
349 | AC_SUBST(STATIC) |
---|
350 | |
---|
351 | fp_WITH_DMALLOC |
---|
352 | fp_WITH_REGEX |
---|
353 | |
---|
354 | # --------------------------------------------------------------------------- |
---|
355 | if test "$ac_cv_func_alloca" = 'no'; then |
---|
356 | dnl support functions for alloca.c |
---|
357 | AC_LIBOBJ([xmalloc]) |
---|
358 | AC_LIBOBJ([error]) |
---|
359 | fi |
---|
360 | |
---|
361 | |
---|
362 | # --------------------------------------------------------------------------- |
---|
363 | |
---|
364 | dnl |
---|
365 | dnl Switch into C++ |
---|
366 | dnl |
---|
367 | AC_LANG_CPLUSPLUS |
---|
368 | |
---|
369 | dnl |
---|
370 | dnl Check if the STL library has any known faults; |
---|
371 | dnl In GCC 2.7.2.x series, some STL library headers are missing |
---|
372 | dnl a file called "new" which is referred to by other headers |
---|
373 | dnl (eg. vector/vector.h); if this applies, then all use of the |
---|
374 | dnl STL will cause a compile fail, so we'd better let the user |
---|
375 | dnl know now, before things really go wrong! |
---|
376 | dnl |
---|
377 | success=no |
---|
378 | AC_MSG_CHECKING("whether STL library has known faults") |
---|
379 | |
---|
380 | dnl - first shot, try simple good old vector on its own |
---|
381 | AC_TRY_COMPILE( |
---|
382 | [#include <vector> |
---|
383 | ], |
---|
384 | [], |
---|
385 | success=yes, |
---|
386 | ) |
---|
387 | |
---|
388 | dnl - try using the .h equivalent |
---|
389 | if test $success = "no"; then |
---|
390 | AC_TRY_COMPILE( |
---|
391 | [#include <vector.h> |
---|
392 | ], |
---|
393 | [], |
---|
394 | success="yes", |
---|
395 | ) |
---|
396 | fi |
---|
397 | |
---|
398 | dnl - now try for the objectspace headers |
---|
399 | if test $success = "no"; then |
---|
400 | AC_TRY_COMPILE( |
---|
401 | [#include <ospace\\std\\vector> |
---|
402 | ], |
---|
403 | [], |
---|
404 | success="yes", |
---|
405 | ) |
---|
406 | fi |
---|
407 | |
---|
408 | if test $success = yes; then |
---|
409 | AC_MSG_RESULT("no") |
---|
410 | else |
---|
411 | AC_MSG_RESULT("yes") |
---|
412 | AC_MSG_ERROR("STL Broken - Obtain newer version of GNU C Compiler") |
---|
413 | fi |
---|
414 | |
---|
415 | gsdlos=`uname | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` |
---|
416 | # check for running bash under cygwin |
---|
417 | if test "`echo $gsdlos | sed 's/cygwin//'`" != "$gsdlos" ; |
---|
418 | then |
---|
419 | gsdlos=windows |
---|
420 | fi |
---|
421 | if test "x$crossOS" != "x" ; then |
---|
422 | gsdlos=$crossOS |
---|
423 | gsdlarch="" |
---|
424 | fi |
---|
425 | AC_SUBST(gsdlos) |
---|
426 | |
---|
427 | # Make gsdlarch empty if the OS bit value (32 or 64) is not used in naming |
---|
428 | # directories already or if common-src is compiled up on its own. |
---|
429 | # E.g. 32/64 bit won't be used in the SVN version if only bin/linux exists. |
---|
430 | if test ! -d "../bin/$gsdlos$gsdlarch" -o ! -f "../setup.bash" ; then |
---|
431 | gsdlarch="" |
---|
432 | fi |
---|
433 | AC_SUBST(gsdlarch) |
---|
434 | |
---|
435 | # check for endianness |
---|
436 | AC_C_BIGENDIAN |
---|
437 | # --------------------------------------------------------------------------- |
---|
438 | if test "$ac_cv_func_alloca" = 'no'; then |
---|
439 | dnl support functions for alloca.c |
---|
440 | AC_LIBOBJ([xmalloc.o]) |
---|
441 | AC_LIBOBJ([error]) |
---|
442 | fi |
---|
443 | |
---|
444 | # --------------------------------------------------------------------------- |
---|
445 | |
---|
446 | |
---|
447 | dnl |
---|
448 | dnl Locate all children of the modules folder |
---|
449 | dnl |
---|
450 | moduleDirs="" |
---|
451 | MODULEDIRS="" |
---|
452 | if test -d modules ; then |
---|
453 | for x in `find modules -mindepth 1 -maxdepth 2`; do |
---|
454 | if test -d "$x"; then |
---|
455 | d="$x/Makefile.in" |
---|
456 | if test -e "$d"; then |
---|
457 | dnl echo $d |
---|
458 | moduleDirs="$moduleDirs $x/Makefile" |
---|
459 | MODULEDIRS="$MODULEDIRS $x" |
---|
460 | fi |
---|
461 | fi |
---|
462 | done |
---|
463 | echo "Making $moduleDirs in modules directory" |
---|
464 | AC_SUBST(MODULEDIRS) |
---|
465 | fi |
---|
466 | |
---|
467 | |
---|
468 | # --------------------------------------------------------------------------- |
---|
469 | |
---|
470 | AC_CONFIG_SUBDIRS(packages) |
---|
471 | |
---|
472 | commonsrcprefix=`pwd` |
---|
473 | ac_configure_args="$ac_configure_args --with-libiconv-prefix=$commonsrcprefix/packages/iconv" |
---|
474 | AC_CONFIG_SUBDIRS(indexers) |
---|
475 | |
---|
476 | # the list of folders in the src folder |
---|
477 | srclist="cgi-bin/Makefile \ |
---|
478 | src/lib/Makefile \ |
---|
479 | src/gdbmedit/db2txt/Makefile \ |
---|
480 | src/gdbmedit/txt2db/Makefile \ |
---|
481 | src/gdbmedit/gdbmget/Makefile \ |
---|
482 | src/gdbmedit/gdbmset/Makefile \ |
---|
483 | src/gdbmedit/gdbmkeys/Makefile \ |
---|
484 | src/gdbmedit/gdbmdel/Makefile \ |
---|
485 | src/getpw/Makefile \ |
---|
486 | src/jdbmedit/Makefile" |
---|
487 | |
---|
488 | AC_OUTPUT(packages/Makefile Makefile $srclist $moduleDirs) |
---|
489 | |
---|
490 | |
---|