fix for the iconv detection by spigot.. thx!!

This commit is contained in:
psyc://psyced.org/~lynX 2010-05-23 15:18:49 +02:00
parent aea800c047
commit 7f8694ec3d
4 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2010-05-23 (lynX) (4.0.13)
- added fix for the iconv detection to configure script by spigot. thx!!
2009-05-22 (lynX) (4.0.12)
+ adopted changes in LDMUD 3.3.718:
- many many many fixes

1
TODO
View File

@ -3,6 +3,7 @@ FROM LDMUD
- examine & apply: 2320, 2334, 2335, 2336, 2340, 2341
BUGS
- should autoconf to sysmalloc also for osol (OpenSolaris)
- #define USE_EXPAT und JSON werden trotzdem gesetzt in config.h
auch wenn configure keine libs gefunden hat (egal, wir verwenden beide nicht)
- Because of some funny bug the driver will probably not bind properly

View File

@ -1245,7 +1245,10 @@ changequote(,)dnl
echo "$as_me:$LINENO: checking for broken iconv in glibc 2.0-2.2" >&5
echo $ECHO_N "checking for broken iconv in glibc 2.0-2.2... $ECHO_C" >&6
if test -f /usr/sbin/iconvconfig; then
if /usr/sbin/iconvconfig -V | egrep ' 2\.[0-2]' >/dev/null 2>&1; then
# omg, this was matching 2.10 and higher!
# we could probably remove this whole check by now
# thanks to spigot for figuring this one out!
if /usr/sbin/iconvconfig -V | egrep ' 2\.[0-2]\.' >/dev/null 2>&1; then
lp_cv_has_broken_iconv="yes"
lp_cv_has_iconv="no"
else

5
src/configure vendored
View File

@ -17884,7 +17884,10 @@ fi
echo "$as_me:$LINENO: checking for broken iconv in glibc 2.0-2.2" >&5
echo $ECHO_N "checking for broken iconv in glibc 2.0-2.2... $ECHO_C" >&6
if test -f /usr/sbin/iconvconfig; then
if /usr/sbin/iconvconfig -V | egrep ' 2\.[0-2]' >/dev/null 2>&1; then
# omg, this was matching 2.10 and higher!
# we could probably remove this whole check by now
# thanks to spigot for figuring this one out!
if /usr/sbin/iconvconfig -V | egrep ' 2\.[0-2]\.' >/dev/null 2>&1; then
lp_cv_has_broken_iconv="yes"
lp_cv_has_iconv="no"
else