Changeset 13696 for trunk


Ignore:
Timestamp:
2007-01-19T14:42:31+13:00 (17 years ago)
Author:
kjdon
Message:

made the unac directory a variable

Location:
trunk/indexers/mgpp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/indexers/mgpp/jni/Makefile.in

    r13629 r13696  
    1111transform = @program_transform_name@
    1212
     13UNAC_DIR=@UNAC_DIR@
    1314
    1415ENABLE_ACCENTFOLD = @ENABLE_ACCENTFOLD@
    1516ifeq ($(ENABLE_ACCENTFOLD), 1)
    16 AFLIBS = ../packages/unac/libunac.a
    17 AFINCLUDES = -I../packages/unac
     17AFLIBS = $(UNAC_DIR)/libunac.a
     18AFINCLUDES = -I$(UNAC_DIR)
    1819else
    1920AFLIBS =
  • trunk/indexers/mgpp/text/Makefile.in

    r13629 r13696  
    2525VERSION = @VERSION@
    2626
     27UNAC_DIR = @UNAC_DIR@
     28
    2729ENABLE_ACCENTFOLD = @ENABLE_ACCENTFOLD@
    2830ifeq ($(ENABLE_ACCENTFOLD), 1)
    29 AFLIBS = ../packages/unac/libunac.a
    30 AFINCLUDES = -I../packages/unac
     31AFLIBS = $(UNAC_DIR)/libunac.a
     32AFINCLUDES = -I$(UNAC_DIR)
    3133AFFLAGS = -DENABLE_ACCENTFOLD
    3234else
Note: See TracChangeset for help on using the changeset viewer.