Ignore:
Timestamp:
2006-09-28T16:58:10+12:00 (18 years ago)
Author:
kjdon
Message:

the compilation of the accent folding stuff (which needs unac package and iconv library) is now under the control of ENABLE_ACCENTFOLD, which gets defined in the CFLAGS if we want accent folding. turn it off in the mgpp/src/text/Makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/mgpp/text/Queryer.cpp

    r12882 r12915  
    5050       << "\t.c0/.c1\t\tcasefolding off/on\n"
    5151       << "\t.s0/.s1\t\tstemming off/on\n"
     52#ifdef ENABLE_ACCENTFOLD
    5253       << "\t.a0/.a1\t\taccentfolding off/on\n"
     54#endif
    5355       << "\t.o0/.o1\t\tshort output off/on\n"
    5456       << "\t.m\t\tset maxnumeric (enter the number at the prompt)\n\n"
     
    221223    }
    222224      }     
     225#ifdef ENABLE_ACCENTFOLD
    223226      else if (queryArray[1] == 'a') { // accentfolding - on/off
    224227    if (queryArray[2] == '1') defaultStemMethod |= STEM_AccentFolding;
     
    228231    }
    229232      }
     233#endif
    230234      else if (queryArray[1] == 'o') { // output - short/long
    231235    if (queryArray[2] == '1') shortOutput = true;
Note: See TracChangeset for help on using the changeset viewer.