From: ellson Date: Thu, 1 Dec 2005 04:40:32 +0000 (+0000) Subject: fix for plugin loading on HPUX X-Git-Tag: LAST_LIBGRAPH~32^2~6935 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46c67e633ecfb7d803387ac5f0931fa8767c2dc1;p=graphviz fix for plugin loading on HPUX Bob Lied --- diff --git a/lib/gvc/gvconfig.c b/lib/gvc/gvconfig.c index 2ca05b384..ac520e326 100644 --- a/lib/gvc/gvconfig.c +++ b/lib/gvc/gvconfig.c @@ -285,6 +285,9 @@ static void config_rescan(GVC_t *gvc, char *config_path) plugin_glob = "cyggvplugin_*"; char *plugin_re_beg = "[^0-9]-"; char *plugin_re_end = "\\.dll$"; +#elif defined(__hpux__) + char *plugin_re_beg = "\\.sl\\."; + char *plugin_re_end = "$"; #else /* Everyone else */ char *plugin_re_beg = "\\.so\\.";