source: indexers/trunk/configure.ac@ 20910

Last change on this file since 20910 was 20832, checked in by ak19, 15 years ago

Libiconv and libexpat are now compiled up during configure time rather than during Make. Committing files affected with adjustments related to this change, of which setup.bash adds the lib folder in common-src packages (generated by compiling libiconv) to the LD_LIBRARY_PATH for now. The last is probably not necessary since libiconv is generated as a static library (not shared).

  • Property svn:keywords set to Author Date Id Revision
File size: 970 bytes
Line 
1dnl
2dnl Disable accent folding
3dnl
4
5AC_INIT(mgpp/text/MGQuery.cpp)
6AC_ARG_ENABLE(accentfolding, [ --disable-accentfold Disable Accent Folding support], ENABLE_ACCENTFOLD=0, ENABLE_ACCENTFOLD=1)
7AC_DEFINE_UNQUOTED(ENABLE_ACCENTFOLD, $ENABLE_ACCENTFOLD)
8AC_SUBST(ENABLE_ACCENTFOLD)
9
10AC_DEFINE_UNQUOTED(COMPAT32BITFLAGS, $COMPAT32BITFLAGS)
11AC_SUBST(COMPAT32BITFLAGS)
12
13dnl
14dnl Make sure Javac and Java are available
15dnl
16
17AC_PROG_JAVAC
18AC_PROG_JAVA
19
20dnl
21dnl Specify location of unac - if specified, will be passed to cascading configures
22dnl
23AC_ARG_WITH(unac, [ --with-unac=dir Use specified unac directory], UNAC_DIR=$withval)
24
25dnl
26dnl Specify location of libiconv - if specified, will be passed to cascading configures
27dnl
28AC_ARG_WITH(libiconv, [ --with-libiconv-prefix=dir Use specified libiconv directory], LIBICONV_DIR=$withval)
29
30if test $ENABLE_ACCENTFOLD = 1; then
31AC_CONFIG_SUBDIRS(packages/unac)
32fi
33
34AC_CONFIG_SUBDIRS(mg mgpp)
35
36AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.