source: indexers/tags/2.82/configure.ac@ 20889

Last change on this file since 20889 was 19810, checked in by davidb, 15 years ago

test for JAVA and JAVAC failing for some reason, when JAVA is there. Commenting out for now

  • Property svn:keywords set to Author Date Id Revision
File size: 878 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
16echo "***** CWD = " `pwd`
17echo "***** PATH = $PATH"
18echo "**** java: " `which java`
19echo "*** javac: " `which javac`
20
21#AC_PROG_JAVAC
22#AC_PROG_JAVA
23
24dnl
25dnl Specify location of unac - if specified, will be passed to cascading configures
26dnl
27AC_ARG_WITH(unac, [ --with-unac=dir Use specified unac directory], UNAC_DIR=$withval)
28
29if test $ENABLE_ACCENTFOLD = 1; then
30AC_CONFIG_SUBDIRS(packages/unac)
31fi
32
33AC_CONFIG_SUBDIRS(mg mgpp)
34
35AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.