You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ab...@locus.apache.org on 2000/02/09 23:14:16 UTC

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

abagchi     00/02/09 14:14:16

  Modified:    c/src    runConfigure Makefile.incl configure.in
  Log:
  AS/400 changes
  
  Revision  Changes    Path
  1.19      +14 -1     xml-xerces/c/src/runConfigure
  
  Index: runConfigure
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/runConfigure,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- runConfigure	2000/02/08 02:37:42	1.18
  +++ runConfigure	2000/02/09 22:14:15	1.19
  @@ -58,6 +58,9 @@
   #
   #
   # $Log: runConfigure,v $
  +# Revision 1.19  2000/02/09 22:14:15  abagchi
  +# AS/400 changes
  +#
   # Revision 1.18  2000/02/08 02:37:42  abagchi
   # Added Iconv390 as a transcoder option
   #
  @@ -307,7 +310,17 @@
   
   if test $debug = "off"; then
       echo "Debug is OFF"
  -    debugflag="-O";
  +    if test ${SYSOVR}o = "o"; then
  +      if test $platform = "os400"; then
  +        echo "NATIVE OS400 BUILD"
  +         debugflag="";
  +      else
  +      debugflag="-O";
  +    fi
  + else
  +       echo "OVERRIDE FOR OS400 ON AIX"
  +       debugflag="";
  +     fi
   else
       echo "Debug is ON"
       debugflag="-g";
  
  
  
  1.14      +9 -0      xml-xerces/c/src/Makefile.incl
  
  Index: Makefile.incl
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/Makefile.incl,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Makefile.incl	2000/02/06 07:47:26	1.13
  +++ Makefile.incl	2000/02/09 22:14:15	1.14
  @@ -55,6 +55,9 @@
   #
   #
   # $Log: Makefile.incl,v $
  +# Revision 1.14  2000/02/09 22:14:15  abagchi
  +# AS/400 changes
  +#
   # Revision 1.13  2000/02/06 07:47:26  rahulj
   # Year 2K copyright swat.
   #
  @@ -258,11 +261,13 @@
   MAKE_SHARED_C = ld -v
   SHLIBSUFFIX=.o
   endif
  +ifeq (${TRANSCODER}, ICU)
   ifeq (${SYSOVR},OS400)
   EXTRA_LINK_OPTIONS = -licu-uc -lbsd
   else
   EXTRA_LINK_OPTIONS = -lQZUUC
   endif
  +endif
   EXTRA_COMPILE_OPTIONS = -I. -g
   
   RM2 = -del
  @@ -385,7 +390,11 @@
   endif
   
   ###################### STANDARD TOOLS #############################
  +ifeq (${PLATFORM}, OS400)
  +CP = -cp -fph
  +else
   CP = -cp -fp
  +endif
   RM = -rm -f
   CAT = cat
   AR = ar -cqv
  
  
  
  1.9       +1 -0      xml-xerces/c/src/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/configure.in,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- configure.in	2000/02/08 02:38:43	1.8
  +++ configure.in	2000/02/09 22:14:15	1.9
  @@ -93,6 +93,7 @@
   util/Transcoders/ICU/Makefile \
   util/Transcoders/Iconv/Makefile \
   util/Transcoders/Iconv390/Makefile \
  +util/Transcoders/Iconv400/Makefile \
   util/Platforms/Makefile \
   util/Compilers/Makefile \
   util/MsgLoaders/InMemory/Makefile \