diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2005-07-14 05:19:12 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2005-07-14 05:19:12 +0000 |
| commit | be13028264888b01ac6fcd46667cf31a7e84e9cf (patch) | |
| tree | 3ad0fa0cab8ff7b3c838edbcf9d8dd69b91a0298 /include | |
| parent | e388b5ea2c599a1db72497bf2d2920895da28f47 (diff) | |
* 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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
| -rw-r--r-- | include/llvm/Config/config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/Config/config.h.in b/include/llvm/Config/config.h.in index fdea3d624d..79204ca2f7 100644 --- a/include/llvm/Config/config.h.in +++ b/include/llvm/Config/config.h.in @@ -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 |
