[llvm-commits] [llvm] r135233 - /llvm/trunk/autoconf/configure.ac
Chad Rosier
mcrosier at apple.com
Thu Jul 14 17:37:26 PDT 2011
Author: mcrosier
Date: Thu Jul 14 19:37:26 2011
New Revision: 135233
URL: http://llvm.org/viewvc/llvm-project?rev=135233&view=rev
Log:
Add new configure option, --with-bug-report-url, which allows users/vendors to
specify where bug reports should be submitted.
Part of rdar://9575623
Modified:
llvm/trunk/autoconf/configure.ac
Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=135233&r1=135232&r2=135233&view=diff
==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Thu Jul 14 19:37:26 2011
@@ -939,6 +939,14 @@
fi
fi
+dnl Specify the URL where bug reports should be submitted.
+AC_ARG_WITH(bug-report-url,
+ AS_HELP_STRING([--with-bug-report-url],
+ [Specify the URL where bug reports should be submitted (default=http://llvm.org)]),,
+ withval="http://llvm.org")
+AC_DEFINE_UNQUOTED(BUG_REPORT_URL,"$withval",
+ [Bug report URL.])
+
dnl --enable-libffi : check whether the user wants to turn off libffi:
AC_ARG_ENABLE(libffi,AS_HELP_STRING(
--enable-libffi,[Check for the presence of libffi (default is NO)]),
More information about the llvm-commits
mailing list