rse         98/06/09 05:59:21

  Modified:    src      CHANGES Configure
  Log:
  Make sure the DSO emulation code for HPUX finds the proprietary shl_xxx()
  functions which are in libdld under HPUX 9/10.
  
  PR: 2378
  
  Revision  Changes    Path
  1.904     +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.903
  retrieving revision 1.904
  diff -u -r1.903 -r1.904
  --- CHANGES   1998/06/09 11:00:19     1.903
  +++ CHANGES   1998/06/09 12:59:18     1.904
  @@ -1,4 +1,8 @@
   Changes with Apache 1.3.1
  +  
  +  *) Make sure the DSO emulation code for HPUX finds the proprietary 
shl_xxx()
  +     functions which are in libdld under HPUX 9/10.
  +     [Ralf S. Engelschall] PR#2378
   
     *) Make sure the "install" target of the top-level Makefile doesn't break
        because of a return code of 1 from an "if" (for instance under braindead
  
  
  
  1.267     +9 -0      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.266
  retrieving revision 1.267
  diff -u -r1.266 -r1.267
  --- Configure 1998/06/09 10:30:12     1.266
  +++ Configure 1998/06/09 12:59:19     1.267
  @@ -1071,6 +1071,15 @@
           *-ibm-aix* )
               DL_LIB="-lld"
               ;;
  +        *-hp-hpux*)
  +            if ./helpers/TestCompile func shl_load; then
  +                :
  +            else
  +                if ./helpers/TestCompile lib dld; then
  +                    DL_LIB="-ldld"
  +                fi
  +            fi
  +            ;;
           * )
               if ./helpers/TestCompile func dlopen; then
                   :
  
  
  

Reply via email to