Ignore:
Timestamp:
2005-11-22T15:53:13+13:00 (18 years ago)
Author:
kjdon
Message:

added -fpic to CFLAGS (and unused CXXFLAGS) - need to generate position independent code for shared library. needed on solaris, doesn't seem to make any difference on linux, ignored on Mac (all code is position independent)

File:
1 edited

Legend:

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

    r10917 r10921  
    1414CC = @CC@
    1515CXX = @CXX@
    16 CFLAGS = @CFLAGS@ -ansi -DSILENT -DSHORT_SUFFIX
    17 CXXFLAGS = @CXXFLAGS@ -DSILENT -DSHORT_SUFFIX
     16CFLAGS = @CFLAGS@ -fpic -ansi -DSILENT -DSHORT_SUFFIX
     17CXXFLAGS = @CXXFLAGS@ -fpic -DSILENT -DSHORT_SUFFIX
    1818DEFS = @DEFS@
    1919RANLIB = @RANLIB@
Note: See TracChangeset for help on using the changeset viewer.