rse         98/10/27 02:37:47

  Modified:    src      Configure
  Log:
  Fix the LDLIBS_SHLIB for Rhapsody.
  
  Submitted by: Wilfredo Sanchez <[EMAIL PROTECTED]>
  Reviewed by: Ralf S. Engelschall
  
  Comment: It's not a really good fix, but it's currently
           the only way to fix it for Rhapsody. Actually we have to fix the
           complete LDFLAGS/LDFLAGS_SHLIB/EXTRA_LDFLAGS/LDFLAGS1 handling.
           Because this is not quite correct. But we cannot fix it to be correct
           without risking platforms to break (which is a bad thing for Apache
           1.3.x while we're already stable) because of mutual exclusion of
           linker options under DSO and non-DSO situation on some platforms.
  
  Revision  Changes    Path
  1.303     +1 -1      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.302
  retrieving revision 1.303
  diff -u -r1.302 -r1.303
  --- Configure 1998/10/23 06:50:37     1.302
  +++ Configure 1998/10/27 10:37:46     1.303
  @@ -940,7 +940,7 @@
           *-apple-rhapsody*)
               LD_SHLIB="cc"
               CFLAGS_SHLIB=""
  -            LDFLAGS_SHLIB="-bundle -undefined suppress"
  +            LDFLAGS_SHLIB='$(EXTRA_LDFLAGS) -bundle -undefined suppress'
               LDFLAGS_SHLIB_EXPORT=""
               SHLIB_SUFFIX_DEPTH=0
               ;;
  
  
  

Reply via email to