From: erg Date: Thu, 13 Jan 2005 23:50:48 +0000 (+0000) Subject: Empty builtins an empty array, because gvpack doesn't need any of the X-Git-Tag: LAST_LIBGRAPH~32^2~8087 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd6aedaaa1f05f5c114fc32899842ac4f7593fed;p=graphviz Empty builtins an empty array, because gvpack doesn't need any of the drivers. Leave plugins.c in case we need it in the future. --- diff --git a/cmd/tools/plugins.c b/cmd/tools/plugins.c index 035e34651..b7e1cf6ef 100644 --- a/cmd/tools/plugins.c +++ b/cmd/tools/plugins.c @@ -20,21 +20,7 @@ #include "types.h" #include "macros.h" #include "gvc.h" - -#ifndef DISABLE_GVRENDER -extern gvplugin_t gvplugin_cairo_LTX_plugin, - gvplugin_gd_LTX_plugin, - gvplugin_text_LTX_plugin; -#endif -extern gvplugin_t gvplugin_layout_LTX_plugin; - gvplugin_t *builtins[] = { -#ifndef DISABLE_GVRENDER - &gvplugin_cairo_LTX_plugin, - &gvplugin_gd_LTX_plugin, - &gvplugin_text_LTX_plugin, -#endif - &gvplugin_layout_LTX_plugin, NULL };