You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jw...@apache.org on 2003/01/30 23:42:33 UTC

cvs commit: httpd-2.0 README.platforms

jwoolley    2003/01/30 14:42:33

  Modified:    .        Tag: APACHE_2_0_BRANCH README.platforms
  Log:
  A little docco...
  
  Submitted by:	Madhu
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.5.2.1   +24 -0     httpd-2.0/README.platforms
  
  Index: README.platforms
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/README.platforms,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -d -u -r1.5 -r1.5.2.1
  --- README.platforms	30 Aug 2002 04:42:26 -0000	1.5
  +++ README.platforms	30 Jan 2003 22:42:33 -0000	1.5.2.1
  @@ -54,3 +54,27 @@
      shell implementation (/bin/sh) on FreeBSD.  Be sure to use v2.13
      of autoconf.
   
  +================
  +  HP-UX:
  +   The dlopen() system call in HP-UX has problems when loading/unloading
  +   C++ modules. The problem can be resolved by using shl_load() instead
  +   of dlopen(). This is fixed in the Apache 2.0.44 release.
  +   To enable loading of C++ modules, the httpd binary has to be linked with
  +   the following libraries :
  +
  +   HP-UX (11.0 / 11i):
  +      When using shl_load        : "cpprt0_stub.s -lcl"
  +      When using dlopen          : "cpprt0_stub.s -lcl -lCsup"
  +
  +   HP-UX (11i version 1.5 and greater):
  +      When using dlopen/shl_load : "cpprt0_stub.s -lcl -lunwind"
  +
  +   The cpprt0_stub.s can be downloaded from the web site :
  +      http://h21007.www2.hp.com/hpux-devtools/CXX/hpux-devtools.0107/0083.html
  +
  +   Compile cpprt0_stub.s with the PIC option
  +     cc -c +z cpprt0_stub.s
  +       - OR -
  +     gcc -c -fPIC cpprt0_stub.s
  +
  +