@@ -, +, @@ Tue, 4 Apr 2006 04:44:40 -0700 (PDT) Tue, 04 Apr 2006 04:44:39 -0700 (PDT) by mx.gmail.com with ESMTP id j76si793610pyd.2006.04.04.04.44.39; Tue, 04 Apr 2006 04:44:39 -0700 (PDT) bug-gnu-gettext@gnu.org charset="iso-8859-1" +i'm not sure if this has been discussed at all as i cant seem to find any +mailing list archives for this list ... +expat-2.0.0 was released recently and this version changed ABI #'s ... so +it now installs as libexpat.so.1 instead of libexpat.so.0 +the trouble is the x-glade.c file tries to dlopen "libexpat.so.0" which +will obviously fail on systems that only have expat-2.0.0 ... would it be +safe to change the code to just dlopen("libexpat.so") or should it be +changed to read something like: +void *handle = dlopen ("libexpat.so.1", RTLD_LAZY); +if (handle == NULL) + handle = dlopen ("libexpat.so.0", RTLD_LAZY);