From: ellson Date: Fri, 6 Jun 2008 14:29:54 +0000 (+0000) Subject: HPUX __ia64 uses .so as extension for shared libs, not .sl X-Git-Tag: LAST_LIBGRAPH~32^2~3970 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb57773ecc9c6b6e645c62bc958b4093655d1cda;p=graphviz HPUX __ia64 uses .so as extension for shared libs, not .sl Geert Coelmont --- diff --git a/lib/gvc/gvconfig.c b/lib/gvc/gvconfig.c index c7716d945..868a3e555 100644 --- a/lib/gvc/gvconfig.c +++ b/lib/gvc/gvconfig.c @@ -352,7 +352,7 @@ static void config_rescan(GVC_t *gvc, char *config_path) char *plugin_glob = "gvplugin_*"; char *plugin_re_beg = "[^0-9]"; char *plugin_re_end = "\\.dll$"; -#elif defined(__hpux__) || defined(__hpux) +#elif ((defined(__hpux__) || defined(__hpux)) && !(defined(__ia64))) char *plugin_re_beg = "\\.sl\\."; char *plugin_re_end = "$"; #else