You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@hyperreal.org on 1998/08/03 19:52:25 UTC

cvs commit: apache-1.3/src/os/unix os.h

stoddard    98/08/03 10:52:24

  Modified:    src/os/unix os.h
  Log:
  Do not include native AIX dlfcn.h. Use Apache's DSO declarations instead.
  
  Revision  Changes    Path
  1.31      +7 -0      apache-1.3/src/os/unix/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/os/unix/os.h,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- os.h	1998/07/13 11:32:49	1.30
  +++ os.h	1998/08/03 17:52:22	1.31
  @@ -93,6 +93,13 @@
   #include <dl.h>
   #endif
   
  +/*
  + * Do not use native AIX DSO support
  + */
  +#ifdef AIX
  +#undef HAVE_DLFCN_H
  +#endif
  +
   #ifdef HAVE_DLFCN_H
   #include <dlfcn.h>
   #else