summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2011-07-15 00:37:26 +0000
committerChad Rosier <mcrosier@apple.com>2011-07-15 00:37:26 +0000
commit96212ad674db09a03e803bcc5de98f2e5d367297 (patch)
tree495ff230477667921c81000fee7ce88aa00fa6c3 /autoconf
parent0bf164605dd83d65f6c510dad26449fcf9a79a51 (diff)
Add new configure option, --with-bug-report-url, which allows users/vendors to
specify where bug reports should be submitted. Part of rdar://9575623 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135233 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 18890f6e1fe..3c3ddaa6661 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -939,6 +939,14 @@ if test "x$WITH_BINUTILS_INCDIR" != xdefault ; then
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)]),