You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 1998/10/23 08:50:40 UTC

cvs commit: apache-1.3/src CHANGES Configure

rse         98/10/22 23:50:39

  Modified:    src      CHANGES Configure
  Log:
  Add DSO support for UnixWare 7 platform.
  
  PS: Actually I merged all UnixWare DSO cases into one because DSO
  linker/compiler flags for all UnixWare 2.x and 7.x versions are identical.
  
  Revision  Changes    Path
  1.1117    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1116
  retrieving revision 1.1117
  diff -u -r1.1116 -r1.1117
  --- CHANGES	1998/10/22 20:56:55	1.1116
  +++ CHANGES	1998/10/23 06:50:37	1.1117
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.4
   
  +  *) PORT: DSO support for UnixWare 7
  +     [Ralf S. Engelschall]
  +
     *) Merge the contents of the {srm,access}.conf-dist* files into the
        httpd.conf-dist* files.  The srm and access files now contain
        only comments, and httpd.conf has all the combined contents in
  
  
  
  1.302     +1 -9      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.301
  retrieving revision 1.302
  diff -u -r1.301 -r1.302
  --- Configure	1998/10/22 11:54:57	1.301
  +++ Configure	1998/10/23 06:50:37	1.302
  @@ -1013,15 +1013,7 @@
               LDFLAGS_SHLIB="-shared -expect_unresolved '*' -s"
               LDFLAGS_SHLIB_EXPORT=""
               ;;
  -        *-unixware2)
  -            case $CC in
  -                */gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
  -                */cc|cc   ) CFLAGS_SHLIB="-KPIC" ;;
  -            esac
  -            LDFLAGS_SHLIB="-Bdynamic -G"
  -            LDFLAGS_SHLIB_EXPORT="-Wl,-Bexport"
  -            ;;
  -        *-unixware21*)
  +        *-unixware*)
               case $CC in
                   */gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
                   */cc|cc   ) CFLAGS_SHLIB="-KPIC" ;;