[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in
Reid Spencer
reid at x10sys.com
Wed Jul 13 22:19:24 PDT 2005
Changes in directory llvm/include/llvm/Config:
config.h.in updated: 1.52 -> 1.53
---
Log message:
* Correct the AC_DEFINE for LLVM_PATH_GRAPHVIZ to use AC_DEFINE_UNQUOTED so
we actually get the path and not $GRAPHVIZ as the value.
* Add a #define for the gv program (HAVE_GV) and its value LLVM_PATH_GV.
---
Diffs of the changes: (+6 -0)
config.h.in | 6 ++++++
1 files changed, 6 insertions(+)
Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.52 llvm/include/llvm/Config/config.h.in:1.53
--- llvm/include/llvm/Config/config.h.in:1.52 Wed Jul 13 21:25:12 2005
+++ llvm/include/llvm/Config/config.h.in Thu Jul 14 00:19:12 2005
@@ -124,6 +124,9 @@
/* Define if the Graphviz program is available */
#undef HAVE_GRAPHVIZ
+/* Define if the gv program is available */
+#undef HAVE_GV
+
/* Define to 1 if you have the `index' function. */
#undef HAVE_INDEX
@@ -395,6 +398,9 @@
/* Define to path to Graphviz program if found or 'echo Graphviz' otherwise */
#undef LLVM_PATH_GRAPHVIZ
+/* Define to path to gv program if found or 'echo gv' otherwise */
+#undef LLVM_PATH_GV
+
/* Installation prefix directory */
#undef LLVM_PREFIX
More information about the llvm-commits
mailing list