better wording for --enable-iconv description
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
diff --git a/CMakeLists.txt b/CMakeLists.txt
index adbf9eb..57bf374 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -448,7 +448,7 @@ set_option(SDL_DIRECTFB "Use DirectFB video driver" OFF)
dep_option(SDL_DIRECTFB_SHARED "Dynamically load directfb support" ON "SDL_DIRECTFB" OFF)
set_option(SDL_DUMMYVIDEO "Use dummy video driver" ON)
dep_option(SDL_IBUS "Enable IBus support" ON ${UNIX_SYS} OFF)
-set_option(SDL_ICONV "Support character set conversion through libiconv" ON)
+set_option(SDL_ICONV "Use iconv() from system-installed libraries" ON)
set_option(SDL_OPENGL "Include OpenGL support" ON)
set_option(SDL_OPENGLES "Include OpenGL ES support" ON)
set_option(SDL_PTHREADS "Use POSIX threads for multi-threading" ${SDL_PTHREADS_ENABLED_BY_DEFAULT})
diff --git a/configure b/configure
index 3e0cadf..3eba8eb 100755
--- a/configure
+++ b/configure
@@ -1632,7 +1632,7 @@ Optional Features:
--enable-dependency-tracking
Use gcc -MMD -MT dependency tracking [default=yes]
--enable-libc Use the system C library [default=yes]
- --enable-iconv Enable character set conversion through iconv
+ --enable-iconv Use iconv() from system-installed libraries
[default=yes]
--enable-gcc-atomics Use gcc builtin atomics [default=yes]
--enable-atomic Enable the atomic operations subsystem [default=yes]
diff --git a/configure.ac b/configure.ac
index 6cd98df..c8921aa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -320,7 +320,7 @@ AC_ARG_ENABLE(libc,
dnl See whether we are allowed to use libiconv
AC_ARG_ENABLE(iconv,
-[AS_HELP_STRING([--enable-iconv], [Enable character set conversion through iconv [default=yes]])],
+[AS_HELP_STRING([--enable-iconv], [Use iconv() from system-installed libraries [default=yes]])],
, enable_iconv=yes)
if test x$enable_libc = xyes; then