You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by tn...@apache.org on 2001/02/27 18:28:45 UTC

cvs commit: xml-xerces/c/src Makefile.incl

tng         01/02/27 09:28:44

  Modified:    c/src    Makefile.incl
  Log:
  [Bug 676] New - Linux for S/390 build requires -fPIC
  
  Revision  Changes    Path
  1.37      +4 -4      xml-xerces/c/src/Makefile.incl
  
  Index: Makefile.incl
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/Makefile.incl,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- Makefile.incl	2001/02/09 14:40:00	1.36
  +++ Makefile.incl	2001/02/27 17:28:42	1.37
  @@ -54,7 +54,7 @@
   # <http://www.apache.org/>.
   #
   #
  -# $Id: Makefile.incl,v 1.36 2001/02/09 14:40:00 tng Exp $
  +# $Id: Makefile.incl,v 1.37 2001/02/27 17:28:42 tng Exp $
   #
   
   ###################################################################
  @@ -244,9 +244,9 @@
   
   #=============== LINUX SPECIFIC OPTIONS =========================
   ifeq (${PLATFORM}, LINUX)
  -PLATFORM_COMPILE_OPTIONS = -fpic -D${PLATFORM} -D_REENTRANT
  -MAKE_SHARED = ${CXX} -D${PLATFORM} -shared -fpic
  -MAKE_SHARED_C = ${CC} -D${PLATFORM} -shared -fpic
  +PLATFORM_COMPILE_OPTIONS = -fPIC -D${PLATFORM} -D_REENTRANT
  +MAKE_SHARED = ${CXX} -D${PLATFORM} -shared -fPIC
  +MAKE_SHARED_C = ${CC} -D${PLATFORM} -shared -fPIC
   ifeq (${TRANSCODER}, ICU)
       ALLLIBS = ${LIBS} -L/usr/lib -L/usr/local/lib -L/usr/ccs/lib -licu-uc -licudata -lc
   else