aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'general-concepts/autotools/autoconf-8.txt')
-rw-r--r--general-concepts/autotools/autoconf-8.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/general-concepts/autotools/autoconf-8.txt b/general-concepts/autotools/autoconf-8.txt
new file mode 100644
index 0000000..1fa471c
--- /dev/null
+++ b/general-concepts/autotools/autoconf-8.txt
@@ -0,0 +1,11 @@
+# vim: set ft=config :
+
+AC_MSG_CHECKING(--enable-cscope argument)
+AC_ARG_ENABLE(cscope,
+ [ --enable-cscope Include cscope interface.],
+ [enable_cscope=$enableval],
+ [enable_cscope="no"])
+AC_MSG_RESULT($enable_cscope)
+if test "$enable_cscope" = "yes"; then
+ AC_DEFINE(FEAT_CSCOPE)
+fi