[llvm-commits] [sample] r40403 - /sample/trunk/autoconf/configure.ac

Reid Spencer rspencer at reidspencer.com
Sun Jul 22 13:55:26 PDT 2007


Author: reid
Date: Sun Jul 22 15:55:26 2007
New Revision: 40403

URL: http://llvm.org/viewvc/llvm-project?rev=40403&view=rev
Log:
Document availability of LLVM_WITH_FEATURE and LLVM_WITH_LEVEL

Modified:
    sample/trunk/autoconf/configure.ac

Modified: sample/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/sample/trunk/autoconf/configure.ac?rev=40403&r1=40402&r2=40403&view=diff

==============================================================================
--- sample/trunk/autoconf/configure.ac (original)
+++ sample/trunk/autoconf/configure.ac Sun Jul 22 15:55:26 2007
@@ -59,9 +59,11 @@
 dnl===-----------------------------------------------------------------------===
 
 dnl NOTES FOR MODULES:
-dnl   1. This is where you can put AC_ARG_WITH and AC_ARG_ENABLE macros to 
-dnl      define the --with-* and --enable-* options.
+dnl   1. This is where you can put LLVM_WITH_FEATURE, LLVM_WITH_LEVEL, 
+dnl      AC_ARG_WITH AC_ARG_ENABLE macros to define the --with-* and --enable-*
+dnl      options.
 dnl      For example:
+dnl        LLVM_WITH_FEATURE(feature-name,"Help text for feature-name",0)
 dnl        AC_ARG_WITH(my_thing, AS_HELP_STRING([--with-my-thing,
 dnl          [Specify where my-thing is]),,withval=default)
 dnl        case "$withval" in
@@ -69,7 +71,7 @@
 dnl          *) MY_THING=$withval ;;
 dnl        esac
 dnl        AC_SUBST(MY_THING,$MY_THING)
-dnl   2. Also put anything else here that is general and not a feature test
+dnl   2. Also put anything else here that is general or needed below.
 
 dnl===-----------------------------------------------------------------------===
 dnl===





More information about the llvm-commits mailing list