You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/04/13 04:53:21 UTC

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

dbertoni    01/04/12 19:53:21

  Modified:    c/src    configure configure.in Makefile.in runConfigure
  Log:
  Changes for the TRU64 port.
  
  Revision  Changes    Path
  1.4       +1 -0      xml-xalan/c/src/configure
  
  Index: configure
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/configure,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- configure	2001/04/11 02:40:37	1.3
  +++ configure	2001/04/13 02:53:20	1.4
  @@ -1308,6 +1308,7 @@
                               *)            osver=HPUX11;;
                           esac;;
           *-*-mvs*)       platform=OS390 ;;
  +        *-*-osf*)       platform=TRU64 ;;
           *)              platform=UNKNOWN ;;
   esac
   
  
  
  
  1.2       +1 -0      xml-xalan/c/src/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/configure.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- configure.in	2000/01/28 14:22:26	1.1
  +++ configure.in	2001/04/13 02:53:20	1.2
  @@ -40,6 +40,7 @@
                               *)            osver=HPUX11;;
                           esac;;
           *-*-mvs*)       platform=OS390 ;;
  +        *-*-osf*)       platform=TRU64 ;;
           *)              platform=UNKNOWN ;;
   esac
   AC_SUBST(platform)
  
  
  
  1.37      +14 -1     xml-xalan/c/src/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/Makefile.in,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- Makefile.in	2001/04/12 14:17:48	1.36
  +++ Makefile.in	2001/04/13 02:53:20	1.37
  @@ -251,9 +251,22 @@
                                                                                   
   endif                                                                           
   
  +#============ TRU64 SPECIFIC OPTIONS ============================
  +ifeq ($(PLATFORM), TRU64)
  +
  +SUPPORTED = TRUE
  +PLATFORM_COMPILE_OPTIONS = -D${PLATFORM} -ptr ${ALL_OBJECTS_DIR}/.cxx_repository -error_limit 10
  +ALLLIBS = ${LIBS} -L/usr/lib -L/usr/local/lib -L/usr/ccs/lib -lc -lrt -lm
  +SHLIBSUFFIX = .so
  +CC1 = ${CXX} ${CXXFLAGS} $(PLATFORM_COMPILE_OPTIONS)
  +MAKE_SHARED = ${CXX} ${CXXFLAGS} -shared -D${PLATFORM} -ptr ${ALL_OBJECTS_DIR}/.cxx_repository
  +LINK = ${CXX} $(CXXFLAGS) $(PLATFORM_COMPILE_OPTIONS)
  +
  +endif
  +
   ifndef SUPPORTED
   nogood:
  -	@echo Linux Solaris, AIX and HPUX are the only unix platforms supported.
  +	@echo Linux, Solaris, AIX, Compaq Tru64, OS/390, and HP-UX are the only platforms supported.
   endif
   
   # We need the Xerces library
  
  
  
  1.3       +6 -3      xml-xalan/c/src/runConfigure
  
  Index: runConfigure
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/runConfigure,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- runConfigure	2001/03/15 15:56:36	1.2
  +++ runConfigure	2001/04/13 02:53:20	1.3
  @@ -58,6 +58,9 @@
   # 
   #
   # $Log: runConfigure,v $
  +# Revision 1.3  2001/04/13 02:53:20  dbertoni
  +# Changes for the TRU64 port.
  +#
   # Revision 1.2  2001/03/15 15:56:36  dbertoni
   # Add -D NDEBUG to release builds to disable assertions.
   #
  @@ -89,7 +92,7 @@
       echo "runConfigure: Helper script to run \"configure\" for one of the supported platforms"
       echo "Usage: runConfigure \"options\""
       echo "       where options may be any of the following:"
  -    echo "       -p <platform> (accepts 'aix', 'linux', 'solaris', 'hp-10', 'hp-11', 'irix')"
  +    echo "       -p <platform> (accepts 'aix', 'linux', 'solaris', 'hp-10', 'hp-11', 'irix', 'tru64' )"
       echo "       -c <C compiler name> (e.g. gcc, cc, xlc)"
       echo "       -x <C++ compiler name> (e.g. g++, CC, xlC)"
       echo "       -d (specifies that you want to build debug version)"
  @@ -180,7 +183,7 @@
   #
   
   case $platform in
  -   aix | linux | solaris | hp-10 | hp-11 | irix)
  +   aix | linux | solaris | hp-10 | hp-11 | irix | tru64)
          # platform has been recognized
          ;;
      *)
  @@ -238,7 +241,7 @@
   #
   
   case $cppcompiler in
  -   xlC | xlc | xlC_r | xlc_r | g++ | c++ | cc | CC | aCC)
  +   xlC | xlc | xlC_r | xlc_r | g++ | c++ | cc | CC | aCC | cxx)
         ;;
   
      *)
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org