Ignore:
Timestamp:
2006-09-28T17:37:33+12:00 (18 years ago)
Author:
kjdon
Message:

added --disable-accentfold option to main configure, which is used to set ENABLE_ACCENTFOLD. compilation of unac dependent on this, and itss used by src/mgpp/text/makefile to include accentfoldign support or not

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/configure.in

    r12492 r12922  
    6363dnl
    6464AC_ARG_WITH(gdbm, [  --with-gdbm=dir         Use local gdbm library and headers], gdbmdir=$withval)
     65
     66dnl
     67dnl disable compilation of accent folding stuff for mgpp (and one day mg)
     68dnl
     69AC_ARG_ENABLE(accentfold, [  --disable-accentfold          Disable Accent Folding for MGPP], ENABLE_ACCENTFOLD=0, ENABLE_ACCENTFOLD=1)
     70AC_DEFINE(ENABLE_ACCENTFOLD, $ENABLE_ACCENTFOLD)
     71AC_SUBST(ENABLE_ACCENTFOLD)
    6572
    6673dnl Checks for programs.
     
    148155dnl check for -lcrypt:
    149156AC_HAVE_LIBRARY(crypt)
    150 
     157if test $ENABLE_ACCENTFOLD = 1; then
     158AC_HAVE_LIBRARY(ICONV)
     159fi
    151160
    152161dnl Checks for header files.
Note: See TracChangeset for help on using the changeset viewer.