Remove ./configure --disable-runtime

With DAFSA as builtin data, we need runtime conversions.
This commit is contained in:
Tim Rühsen 2015-12-15 21:21:28 +01:00
parent e252af877f
commit cd5a11b7a5
2 changed files with 0 additions and 4 deletions

View File

@ -10,7 +10,6 @@ env:
- RUNTIME=libicu
- RUNTIME=libidn2
- RUNTIME=libidn
- RUNTIME=no
addons:
apt:

View File

@ -96,7 +96,6 @@ AC_ARG_ENABLE(runtime,
libicu [[default]]: IDNA2008 UTS#46 library
libidn2: IDNA2008 library (also needs libunistring)
libidn: IDNA2003 library (also needs libunistring)
--disable-runtime Do not link runtime IDNA functionality
], [
if test "$enableval" = "libicu" -o "$enableval" = "yes"; then
enable_runtime=libicu
@ -107,8 +106,6 @@ AC_ARG_ENABLE(runtime,
elif test "$enableval" = "libidn"; then
enable_runtime=libidn
AC_DEFINE([WITH_LIBIDN], [1], [generate PSL data using libidn])
elif test "$enableval" = "no"; then
enable_runtime=no
else
AC_MSG_ERROR([Unknown value $enableval for --enable-runtime])
fi