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 Jeffrey.Armstrong
Recipients Jeffrey.Armstrong, alanh, ned.deily
Date 2013-02-24.22:57:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361746656.12.0.451668244026.issue17226@psf.upfronthosting.co.za>
In-reply-to
Content
I would suggest a more straightforward patch.  My understanding is that the standard library on the m68k-atari-mint platform does not include the necessary gettext functionality.  This functionality is present in glibc, however.  A more direct test might be to see if gettext is available in the standard library.  If so, proceed.  If not, attempt to link in libintl and its dependency:

--- a/configure.ac	Sat Feb 23 18:52:51 2013 +0100
+++ b/configure.ac	Sun Feb 24 17:59:41 2013 -0500
@@ -2180,6 +2180,14 @@
 	[Define to 1 if libintl is needed for locale functions.])
         LIBS="-lintl $LIBS"])
 
+# search for gettext in either libc or libintl
+AC_CHECK_FUNC(gettext, [],
+	[AC_CHECK_LIB(intl, gettext, 
+                  [LIBS="$LIBS -lintl -liconv"],
+                  [AC_MSG_ERROR([unable to find the gettext() function])],
+                  [-liconv])
+    ])
+
History
Date User Action Args
2013-02-24 22:57:36Jeffrey.Armstrongsetrecipients: + Jeffrey.Armstrong, ned.deily, alanh
2013-02-24 22:57:36Jeffrey.Armstrongsetmessageid: <1361746656.12.0.451668244026.issue17226@psf.upfronthosting.co.za>
2013-02-24 22:57:36Jeffrey.Armstronglinkissue17226 messages
2013-02-24 22:57:35Jeffrey.Armstrongcreate