Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: 3.1.6-dev-16



"Andrej Borsenkow" wrote:
> This still have the same dl.h/dlfnc.h problem. I cannot provide a patch, as I
> have no idea, how to check for HPUX.

We were going to change it something like this, but I can't remember
hearing whether that would do the trick or not.  It should be OK for you,
at least.

Index: Src/module.c
===================================================================
RCS file: /home/pws/CVSROOT/projects/zsh/Src/module.c,v
retrieving revision 1.6
diff -u -r1.6 module.c
--- Src/module.c	2000/01/14 12:33:35	1.6
+++ Src/module.c	2000/01/30 21:03:09
@@ -319,7 +319,7 @@
 #else
 
 #ifdef HAVE_DLFCN_H
-# ifdef HAVE_DL_H
+# if defined(HAVE_DL_H) && defined(__hpux)
 #  include <dl.h>
 # else
 #  include <dlfcn.h>

-- 
Peter Stephenson <pws@xxxxxxxxxxxxxxxxxxxxxxxx>



Messages sorted by: Reverse Date, Date, Thread, Author