source: indexers/trunk/configure.ac@ 15560

Last change on this file since 15560 was 15560, checked in by davidb, 16 years ago

Addition of COMPAT32BITFLAGS so mg and mgpp can compile on a 64-bit machine

  • Property svn:keywords set to Author Date Id Revision
File size: 680 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
13
14dnl
15dnl Specify location of unac - if specified, will be passed to cascading configures
16dnl
17AC_ARG_WITH(unac, [ --with-unac=dir Use specified unac directory], UNAC_DIR=$withval)
18
19if test $ENABLE_ACCENTFOLD = 1; then
20AC_CONFIG_SUBDIRS(packages/unac)
21fi
22
23AC_CONFIG_SUBDIRS(mg mgpp)
24
25AC_OUTPUT(Makefile)
26
27
Note: See TracBrowser for help on using the repository browser.