changeset 7183:6f7ae14f29a8

generalized iconv detection
author atmos4
date Sat, 31 Aug 2002 02:13:20 +0000
parents 0bfd137f492a
children bcbbe5ee11fd
files configure
diffstat 1 files changed, 3 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Aug 31 01:44:54 2002 +0000
+++ b/configure	Sat Aug 31 02:13:20 2002 +0000
@@ -3587,17 +3587,15 @@
 }
 EOF
   _iconv=no
-  if freebsd || bsdos || openbsd ; then
-    cc_check  -lm -liconv && _iconv=yes
+  if cc_check -lm -liconv ; then
+    _iconv=yes
   else
     cc_check -lm && _iconv=yes
   fi
 fi
 if test "$_iconv" = yes ; then
   _def_iconv='#define USE_ICONV 1'
-  freebsd && _ld_iconv='-liconv'
-  bsdos && _ld_iconv='-liconv'
-  openbsd && _ld_iconv='-liconv'
+  linux || _ld_iconv='-liconv'
 else
   _def_iconv='#undef USE_ICONV'
 fi