gvlayout_dot_layout.c
if WITH_CGRAPH
libgvplugin_dot_layout_C_la_LIBADD = \
- $(top_builddir)/lib/dotgen2/libdotgen2_C.la
+ $(top_builddir)/lib/dotgen/libdotgen_C.la
else
libgvplugin_dot_layout_C_la_LIBADD = \
$(top_builddir)/lib/dotgen/libdotgen_C.la
#ifdef WITH_CGRAPH
#pragma comment( lib, "cgraph.lib" )
#pragma comment( lib, "dotgen2.lib" )
- extern void dot2_layout(graph_t * g);
- extern void dot2_cleanup(graph_t * g);
+ extern void dot_layout(graph_t * g);
+ extern void dot_cleanup(graph_t * g);
gvlayout_engine_t dotgen_engine = {
- dot2_layout,
- dot2_cleanup,
+ dot_layout,
+ dot_cleanup,
};