source: indexers/tags/3.03/configure.ac@ 14808

Last change on this file since 14808 was 13703, checked in by kjdon, 17 years ago

some configure and make files for the new indexers package

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