Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
dl.h/dlfnc.h clash in module.c RE: 3.1.6-dev-15
- X-seq: zsh-workers 9310
- From: "Andrej Borsenkow" <Andrej.Borsenkow@xxxxxxxxxxxxxx>
- To: "Peter Stephenson" <pws@xxxxxxxxxxxxxxxxxxxxxxxx>, "Zsh hackers list" <zsh-workers@xxxxxxxxxxxxxx>
- Subject: dl.h/dlfnc.h clash in module.c RE: 3.1.6-dev-15
- Date: Thu, 13 Jan 2000 22:02:20 +0300
- Importance: Normal
- In-reply-to: <E128p4T-0008Ql-00.2000-01-13-18-34-10@xxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
O.K., looks, like my mail was lost.
I complained about inability to load complete.so (that depends on zle.so) in
dev-14. It turned out to be patch from 9200, that changed
#ifdef HAVE_DLFNC_H
#include <dlfnc.h>
into
#ifdef HAVE_DLFNC_H
#ifdef HAVE_DL_H
#include <dl.h>
#else
#include <dlfnc.h>
#endif
Our system has dl.h that has nothing to do with dynamic locading (it is most
probably from Double Linked lists). It results in RTLD_GLOBAL being undefined
(defined to dummy value in module.c) - with obvious consequencies ...
The wording in 9200 was "HPUX 11.0 does not have dlfnc.h ..." - I fail to see
how above patch fixes that.
/andrej
Messages sorted by:
Reverse Date,
Date,
Thread,
Author