]> granicus.if.org Git - graphviz/commitdiff
add an empty builtins.c to dot.demo/ programs
authorellson <devnull@localhost>
Thu, 28 Jul 2005 23:29:53 +0000 (23:29 +0000)
committerellson <devnull@localhost>
Thu, 28 Jul 2005 23:29:53 +0000 (23:29 +0000)
update a couple of .cvsignore

cmd/dot/.cvsignore
dot.demo/.cvsignore [new file with mode: 0644]
dot.demo/builtins.c [new file with mode: 0644]

index 50a41073a999f7a197b9d7ac9a747e51d66ad1c8..b62231e989dd35c0cfc020ae2a3f640c615c235b 100644 (file)
@@ -1,18 +1,9 @@
 *.la
 *.lo
-*.pc
 .deps
 .libs
 Makefile
 Makefile.in
-circo
 dot
-fdp
-neato
-twopi
-dotmemtest
-fdpmemtest
-neatomemtest
-twopimemtest
-dotneato-config
+dot_static
 *.pdf
diff --git a/dot.demo/.cvsignore b/dot.demo/.cvsignore
new file mode 100644 (file)
index 0000000..935610d
--- /dev/null
@@ -0,0 +1,3 @@
+dot
+simple
+demo
diff --git a/dot.demo/builtins.c b/dot.demo/builtins.c
new file mode 100644 (file)
index 0000000..82c3821
--- /dev/null
@@ -0,0 +1,37 @@
+/* $Id$ $Revision$ */
+/* vim:set shiftwidth=4 ts=8: */
+
+/**********************************************************
+*      This software is part of the graphviz package      *
+*                http://www.graphviz.org/                 *
+*                                                         *
+*            Copyright (c) 1994-2004 AT&T Corp.           *
+*                and is licensed under the                *
+*            Common Public License, Version 1.0           *
+*                      by AT&T Corp.                      *
+*                                                         *
+*        Information and Software Systems Research        *
+*              AT&T Research, Florham Park NJ             *
+**********************************************************/
+
+#include        "gvplugin.h"
+
+#if 0
+
+extern gvplugin_library_t
+    gvplugin_dot_layout_LTX_library,
+    gvplugin_neato_layout_LTX_library,
+    gvplugin_usershape_gd_LTX_library;
+
+gvplugin_library_t *builtins[] = {
+    &gvplugin_dot_layout_LTX_library,
+    &gvplugin_neato_layout_LTX_library,
+    &gvplugin_usershape_gd_LTX_library,
+    NULL
+};
+
+#else
+
+gvplugin_library_t *builtins[] = { NULL };
+
+#endif