This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author alanh
Recipients Jeffrey.Armstrong, alanh, ned.deily
Date 2013-09-16.15:58:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379347093.7.0.581168072692.issue17226@psf.upfronthosting.co.za>
In-reply-to
Content
This works for me...

--- configure.ac.old    2013-09-10 14:37:20.000000000 +0000
+++ configure.ac        2013-09-10 14:56:27.000000000 +0000
@@ -2190,7 +2190,11 @@
 AC_CHECK_LIB(intl, textdomain,
        [AC_DEFINE(WITH_LIBINTL, 1,
        [Define to 1 if libintl is needed for locale functions.])
-        LIBS="-lintl $LIBS"])
+        LIBS="-lintl $LIBS"],
+       [AC_SEARCH_LIBS(textdomain, intl,
+               [AC_DEFINE(WITH_LIBINTL, 1,
+               [Define to 1 if libintl is needed for locale functions.])
+               LIBS="-lintl -liconv $LIBS"], , "-liconv")])
 
 # checks for system dependent C++ extensions support
 case "$ac_sys_system" in
History
Date User Action Args
2013-09-16 15:58:13alanhsetrecipients: + alanh, ned.deily, Jeffrey.Armstrong
2013-09-16 15:58:13alanhsetmessageid: <1379347093.7.0.581168072692.issue17226@psf.upfronthosting.co.za>
2013-09-16 15:58:13alanhlinkissue17226 messages
2013-09-16 15:58:13alanhcreate