Ignore:
Timestamp:
2008-05-17T10:01:24+12:00 (16 years ago)
Author:
davidb
Message:

Introduction of COMPAT32BITFLAGS to confirugre and Makefile.in files to help compile Greenstone on a 64-bit machine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/colservr/Makefile.in

    r15546 r15551  
    3232AR = ar
    3333CC = @CC@
    34 CPP = @CXX@
    35 CFLAGS = @CFLAGS@
    36 CPPFLAGS = @CXXFLAGS@
     34CXX = @CXX@
     35CFLAGS = @CFLAGS@ @COMPAT32BITFLAGS@
     36CXXFLAGS = @CXXFLAGS@ @COMPAT32BITFLAGS@
    3737DEFS = @DEFS@ -DNZDL -DQUIET -DSHORT_SUFFIX -DPARADOCNUM -DGSDLSERVER
    3838# Do NOT add the "recpt" directory here: the colserver should be independent of the receptionist!
     
    4545
    4646COMPILE = $(CC) -c $(CFLAGS) $(DEFS) $(INCLUDES)
    47 CPPCOMPILE = $(CPP) -c $(CPPFLAGS) $(DEFS) $(INCLUDES)
     47CXXCOMPILE = $(CXX) -c $(CXXFLAGS) $(DEFS) $(INCLUDES)
    4848
    4949
     
    5555.SUFFIXES: .cpp .o
    5656.cpp.o:
    57     $(CPPCOMPILE) $<
     57    $(CXXCOMPILE) $<
    5858
    5959
     
    133133
    134134depend:
    135     makedepend -Y -- $(DEFS) $(INCLUDES) $(CPPFLAGS) -- $(SOURCES)
     135    makedepend -Y -- $(DEFS) $(INCLUDES) $(CXXFLAGS) -- $(SOURCES)
Note: See TracChangeset for help on using the changeset viewer.