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 2004/02/06 09:39:35 UTC

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

dbertoni    2004/02/06 00:39:35

  Modified:    c        configure configure.in runConfigure
  Log:
  Initial changes for HP-UX IA64 port.
  
  Revision  Changes    Path
  1.5       +2 -0      xml-xalan/c/configure
  
  Index: configure
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/configure,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- configure	29 Dec 2003 00:26:53 -0000	1.4
  +++ configure	6 Feb 2004 08:39:35 -0000	1.5
  @@ -2679,6 +2679,7 @@
           *-*-netbsd*)    platform=NETBSD ;;
           *-*-irix*)      platform=IRIX ;;
           *-*-aix*)       platform=AIX ;;
  +        ia64-hp*)       platform=HPUX ; osver=HPUX11 ; osvariant=IA64;;
           *-*-hp*)        platform=HPUX ;
                           case "${host}" in
                               *-*-hpux11*)  osver=HPUX11;;
  @@ -4026,6 +4027,7 @@
   s,@cxx@,$cxx,;t t
   s,@cc@,$cc,;t t
   s,@osver@,$osver,;t t
  +s,@osvariant@,$osvariant,;t t
   s,@cxxflags@,$cxxflags,;t t
   s,@cppflags@,$cppflags,;t t
   s,@cflags@,$cflags,;t t
  
  
  
  1.6       +3 -0      xml-xalan/c/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/configure.in,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- configure.in	29 Dec 2003 00:26:53 -0000	1.5
  +++ configure.in	6 Feb 2004 08:39:35 -0000	1.6
  @@ -48,6 +48,7 @@
           *-*-netbsd*)    platform=NETBSD ;;
           *-*-irix*)      platform=IRIX ;;
           *-*-aix*)       platform=AIX ;;
  +        ia64-hp*)       platform=HPUX ; osver=HPUX11 ; osvariant=IA64;;
           *-*-hp*)        platform=HPUX ;
                           case "${host}" in
                               *-*-hpux11*)  osver=HPUX11;;
  @@ -107,6 +108,8 @@
   AC_SUBST(prefix)
   dnl  Not used:
   AC_SUBST(osver)
  +
  +AC_SUBST(osvariant)
   
   cxxflags=${CXXFLAGS}
   AC_SUBST(cxxflags)
  
  
  
  1.6       +16 -10    xml-xalan/c/runConfigure
  
  Index: runConfigure
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/runConfigure,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- runConfigure	6 Jan 2004 02:41:25 -0000	1.5
  +++ runConfigure	6 Feb 2004 08:39:35 -0000	1.6
  @@ -58,6 +58,9 @@
   # 
   #
   # $Log$
  +# Revision 1.6  2004/02/06 08:39:35  dbertoni
  +# Initial changes for HP-UX IA64 port.
  +#
   # Revision 1.5  2004/01/06 02:41:25  dbertoni
   # Changes for Bugzilla 25914.
   #
  @@ -165,7 +168,7 @@
       echo "Usage: runConfigure \"options\""
       echo "       where options may be any of the following:"
       echo "       -p <platform> (accepts 'aix', 'linux', 'freebsd', 'netbsd', 'solaris',
  -            'hp-10', 'hp-11', 'irix', 'tru64', 'macosx', 'os400')"
  +            'hp-11', 'hp-11-ia64', 'irix', 'tru64', 'macosx', 'os400')"
       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)"
  @@ -301,7 +304,7 @@
   #
   
   case $platform in
  -   aix | linux | freebsd | netbsd | solaris | hp-10 | hp-11 | irix | tru64 | macosx | os400)
  +   aix | linux | freebsd | netbsd | solaris | hp-11 | hp-11-ia64 | irix | tru64 | macosx | os400)
          # platform has been recognized
          ;;
      *)
  @@ -339,8 +342,8 @@
   #
   
   #
  -#  aix | linux | hp-11 | solaris |
  -#  hp-10 | freebsd | netbsd | irix | openserver | unixware | os400 | ptx | tru64 | macosx
  +#  aix | linux | hp-11 | hp-11-ia64 | solaris |
  +#  freebsd | netbsd | irix | openserver | unixware | os400 | ptx | tru64 | macosx
   #
   if test $bitsToBuild = 64; then
       bitstobuildDefines=" -DXML_BITSTOBUILD_64 "
  @@ -355,6 +358,9 @@
              hp-11)
                 bitstobuildDefines=" $bitstobuildDefines +DA2.0W "
                 bitstobuildLink=" +DA2.0W " ;;
  +           hp-11-ia64)
  +	          bitstobuildDefines=" $bitstobuildDefines +DD64 "
  +              bitstobuildLink=" +DD64 " ;;
              linux)
                 bitstobuildDefines=" $bitstobuildDefines " ;;
              *)
  @@ -362,8 +368,8 @@
           esac
       fi
   elif test $bitsToBuild = 32; then
  -    bitstobuildDefines=" "
  -    bitstobuildLink=" "
  +    bitstobuildDefines=""
  +    bitstobuildLink=""
       if test $platform; then
           case $platform in
              solaris)
  @@ -371,7 +377,10 @@
              aix)
   		      ;;
              hp-11)
  -              bitstobuildDefines=" $bitstobuildDefines +DAportable "
  +              bitstobuildDefines="+DAportable "
  +			  ;;
  +           hp-11-ia64)
  +              bitstobuildDefines="+DD32 "
   			  ;;
              linux)
                 ;;
  @@ -473,9 +482,6 @@
       threadingLibs="-pthread -lc_r"
   elif test $platform = "netbsd"; then
       threadingLibs="-pthread -lpthread"
  -elif test $platform = "hp-10"; then
  -    threadingLibs="-lcma"
  -    threadingDefines="-DXML_USE_DCE"
   elif test $platform = "os400"; then
       threadingLibs=""
   fi
  
  
  

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