Ignore:
Timestamp:
2005-11-22T15:53:13+13:00 (19 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/indexers/mgpp/lib/Makefile.in

    r3372 r10921  
    3535CXX = @CXX@
    3636ifneq ($(NZDL), 1)
    37 CFLAGS = @CFLAGS@ -ansi
     37CFLAGS = @CFLAGS@ -ansi -fpic
    3838else
    39 CFLAGS = @CFLAGS@ -ansi -DSILENT
     39CFLAGS = @CFLAGS@ -ansi -fpic -DSILENT
    4040endif
    41 CXXFLAGS = @CXXFLAGS@
     41CXXFLAGS = @CXXFLAGS@ -fpic
    4242DEFS = @DEFS@
    4343RANLIB = @RANLIB@
Note: See TracChangeset for help on using the changeset viewer.