rse         99/03/10 05:38:02

  Modified:    src      CHANGES Configure
  Log:
  Use -fPIC instead of -fpic on Solaris and SunOS for compiling DSOs because
  SPARCs have a small machine-specific maximum size for the Global Offset Table
  which is often exceeded when compiling one of the larger third-party modules
  with Apache.
  
  Suggested by: Peter Urban <[EMAIL PROTECTED]>
  Reviewed by: Ralf S. Engelschall
  PR: 3977
  
  Revision  Changes    Path
  1.1276    +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1275
  retrieving revision 1.1276
  diff -u -r1.1275 -r1.1276
  --- CHANGES   1999/03/10 13:02:10     1.1275
  +++ CHANGES   1999/03/10 13:37:58     1.1276
  @@ -1,5 +1,10 @@
   Changes with Apache 1.3.5
   
  +  *) Use -fPIC instead of -fpic on Solaris and SunOS for compiling DSOs
  +     because SPARCs have a small machine-specific maximum size for the Global
  +     Offset Table which is often exceeded when compiling one of the larger
  +     third-party modules with Apache. [Peter Urban <[EMAIL PROTECTED]>] 
PR#3977
  +
     *) Move the directive `ExtendedStatus' in httpd.conf-dist-win _after_ the
        DSO/DLL section because it's a directive from mod_status and isn't
        available before the DLL of mod_status is loaded.
  
  
  
  1.331     +2 -2      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.330
  retrieving revision 1.331
  diff -u -r1.330 -r1.331
  --- Configure 1999/02/10 11:48:44     1.330
  +++ Configure 1999/03/10 13:37:58     1.331
  @@ -996,7 +996,7 @@
            ;;
        *-solaris2*)
            case $CC in
  -             */gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
  +             */gcc|gcc ) CFLAGS_SHLIB="-fPIC" ;;
                */cc|cc   ) CFLAGS_SHLIB="-KPIC" ;;
            esac
            LDFLAGS_SHLIB="-G"
  @@ -1005,7 +1005,7 @@
            ;;
        *-sunos4*)
            case $CC in
  -             */gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
  +             */gcc|gcc ) CFLAGS_SHLIB="-fPIC" ;;
                */acc|acc ) CFLAGS_SHLIB="-pic" ;;
            esac
            LDFLAGS_SHLIB="-assert pure-text"
  
  
  

Reply via email to