From: Albert Chin-A-Young Date: Sun, 23 Jun 2002 22:48:38 +0000 (+0000) Subject: * ltdl.m4 (AC_LTDL_SYS_DLOPEN_DEPLIBS): HP/UX needs X-Git-Tag: release-1-4-3~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fd8e0b38391b3627b2a0fc8f349328b9f5606465;p=thirdparty%2Flibtool.git * ltdl.m4 (AC_LTDL_SYS_DLOPEN_DEPLIBS): HP/UX needs libltdl_cv_sys_dlopen_deplibs set to yes. --- diff --git a/ChangeLog b/ChangeLog index ee5044f06..61b865fd8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-06-23 Albert Chin-A-Young + + * ltdl.m4 (AC_LTDL_SYS_DLOPEN_DEPLIBS): HP/UX needs + libltdl_cv_sys_dlopen_deplibs set to yes. + 2002-06-23 Gary V. Vaughan * libltdl/ltdl.c (argz_insert): Actually, BEFORE can be NULL diff --git a/ltdl.m4 b/ltdl.m4 index ae224cc8c..4f77e2baf 100644 --- a/ltdl.m4 +++ b/ltdl.m4 @@ -124,6 +124,9 @@ AC_CACHE_CHECK([whether deplibs are loaded by dlopen], # PORTME does your system automatically load deplibs for dlopen()? libltdl_cv_sys_dlopen_deplibs=unknown case "$host_os" in + hpux10*|hpux11*) + libltdl_cv_sys_dlopen_deplibs=yes + ;; linux*) libltdl_cv_sys_dlopen_deplibs=yes ;;