[llvm-commits] [release_19] CVS: llvm-poolalloc/autoconf/configure.ac

John Criswell criswell at cs.uiuc.edu
Thu Jan 11 15:27:52 PST 2007



Changes in directory llvm-poolalloc/autoconf:

configure.ac updated: 1.10.2.2 -> 1.10.2.3
---
Log message:

Added --with-safecodesrc and --with=safecodeobj options to specify the
location of SAFECode.  There should be no more hard coded paths in the
poolalloc source tree.
These should default to LLVM_SRC_ROOT/project/safecode and
LLVM_OBJ_ROOT/projects/safecode, respectively.


---
Diffs of the changes:  (+2 -1)

 configure.ac |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)


Index: llvm-poolalloc/autoconf/configure.ac
diff -u llvm-poolalloc/autoconf/configure.ac:1.10.2.2 llvm-poolalloc/autoconf/configure.ac:1.10.2.3
--- llvm-poolalloc/autoconf/configure.ac:1.10.2.2	Wed Dec 13 17:22:45 2006
+++ llvm-poolalloc/autoconf/configure.ac	Thu Jan 11 17:27:33 2007
@@ -91,7 +91,8 @@
 dnl **************************************************************************
 
 dnl Location of SAFECode
-AC_ARG_WITH(safecodesrc,AS_HELP_STRING(--with-safecode,Location of SAFECode Source Code),AC_SUBST(SAFECODESRC,[$withval]),AC_SUBST(SAFECODESRC,[`cd ../safecode; pwd`]))
+AC_ARG_WITH(safecodesrc,AS_HELP_STRING(--with-safecode,Location of SAFECode Source Code),AC_SUBST(SAFECODESRC,[$withval]),AC_SUBST(SAFECODESRC,[`cd $LLVM_SRC_ROOT/projects/safecode; pwd`]))
+AC_ARG_WITH(safecodeobj,AS_HELP_STRING(--with-safecode,Location of SAFECode Object Code),AC_SUBST(SAFECODEOBJ,[$withval]),AC_SUBST(SAFECODEOBJ,[`cd $LLVM_OBJ_ROOT/projects/safecode; pwd`]))
 
 dnl **************************************************************************
 dnl * Create the output files






More information about the llvm-commits mailing list