1
0
Fork 0
mirror of git://git.psyced.org/git/psyclpc synced 2024-08-15 03:20:16 +00:00

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) 2009-05-22 (lynX) (4.0.12)
+ adopted changes in LDMUD 3.3.718: + adopted changes in LDMUD 3.3.718:
- many many many fixes - many many many fixes

1
TODO
View file

@ -3,6 +3,7 @@ FROM LDMUD
- examine & apply: 2320, 2334, 2335, 2336, 2340, 2341 - examine & apply: 2320, 2334, 2335, 2336, 2340, 2341
BUGS BUGS
- should autoconf to sysmalloc also for osol (OpenSolaris)
- #define USE_EXPAT und JSON werden trotzdem gesetzt in config.h - #define USE_EXPAT und JSON werden trotzdem gesetzt in config.h
auch wenn configure keine libs gefunden hat (egal, wir verwenden beide nicht) auch wenn configure keine libs gefunden hat (egal, wir verwenden beide nicht)
- Because of some funny bug the driver will probably not bind properly - 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 "$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 echo $ECHO_N "checking for broken iconv in glibc 2.0-2.2... $ECHO_C" >&6
if test -f /usr/sbin/iconvconfig; then 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_broken_iconv="yes"
lp_cv_has_iconv="no" lp_cv_has_iconv="no"
else 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 "$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 echo $ECHO_N "checking for broken iconv in glibc 2.0-2.2... $ECHO_C" >&6
if test -f /usr/sbin/iconvconfig; then 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_broken_iconv="yes"
lp_cv_has_iconv="no" lp_cv_has_iconv="no"
else else