1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

Add new configure option, --with-bug-report-url, which allows users/vendors to

specify where bug reports should be submitted.
Part of rdar://9575623

llvm-svn: 135233
This commit is contained in:
Chad Rosier 2011-07-15 00:37:26 +00:00
parent 7c5092d1c2
commit 480582c363

View File

@ -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)]),