[issue17226] libintl should also check for libiconv

2021-02-03 Thread Jeffrey Armstrong
Change by Jeffrey Armstrong : -- nosy: -Jeffrey.Armstrong ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17226] libintl should also check for libiconv

2013-09-16 Thread Alan Hourihane
Alan Hourihane added the comment: This works for me... --- configure.ac.old2013-09-10 14:37:20.0 + +++ configure.ac2013-09-10 14:56:27.0 + @@ -2190,7 +2190,11 @@ AC_CHECK_LIB(intl, textdomain, [AC_DEFINE(WITH_LIBINTL, 1, [Define to 1 if

[issue17226] libintl should also check for libiconv

2013-04-24 Thread Alan Hourihane
Alan Hourihane added the comment: Bumping. How does Jeffrey's patch look folks ? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17226 ___ ___

[issue17226] libintl should also check for libiconv

2013-02-24 Thread Jeffrey Armstrong
Jeffrey Armstrong added the comment: Alan, I was about to file a bug as well because I'm not even getting a libintl dependency to be acknowledged under these build conditions. What versions of gettext and GCC are you using? Ned, not sure if it matters, but the libintl page does specify that

[issue17226] libintl should also check for libiconv

2013-02-24 Thread Jeffrey Armstrong
Jeffrey Armstrong added the comment: 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

[issue17226] libintl should also check for libiconv

2013-02-19 Thread Alan Hourihane
Alan Hourihane added the comment: Sure this is on an Atari m68k platform called FreeMiNT. Traditionally in configure scripts you'll see it checked as *-mint* -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17226

[issue17226] libintl should also check for libiconv

2013-02-18 Thread Alan Hourihane
New submission from Alan Hourihane: The configure.ac script detects libintl but can depend on libiconv. I added this to force it and to demonstrate, but I think this is not 100% correct and should be massaged into the libintl tests. --- configure.ac.old2013-02-16 09:34:55.0 +

[issue17226] libintl should also check for libiconv

2013-02-18 Thread Ned Deily
Ned Deily added the comment: Do you have a use case where this is needed? As far as I know, Python itself doesn't reference libiconv directly. libintl may but we're not building it, merely using it. If libintl does reference it, the linker in use should try to satisfy the dependency for

[issue17226] libintl should also check for libiconv

2013-02-18 Thread Alan Hourihane
Alan Hourihane added the comment: Hi Yes, when Python is built as static only, on a system when no dynamic loading is available. You have to explicitly link libiconv when libintl references it. -- ___ Python tracker rep...@bugs.python.org

[issue17226] libintl should also check for libiconv

2013-02-18 Thread Ned Deily
Ned Deily added the comment: That helps a bit but, to be able to even test this, we would still need a specific example of a platform and a configuration where this is the case. It's not necessary or desirable to add on most platforms, I think. --