diff options
author | drochner <drochner@pkgsrc.org> | 2010-09-02 11:27:55 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2010-09-02 11:27:55 +0000 |
commit | 645d395be767ff3b16e8a6a4d4251a043d7927a2 (patch) | |
tree | 3bd79361e4fad7701cd8d92239e3e1cd672834f0 | |
parent | 85c2021a27ce21cdb58eb088dac739f04c5c6ab4 (diff) | |
download | pkgsrc-645d395be767ff3b16e8a6a4d4251a043d7927a2.tar.gz |
work around a configure check which looks for bind_textdomain_codeset(3)
only in libc but not in libintl: assume it is always there on NetBSD
(unbreaks gnome-sudoku and glchess of gnome-games)
bump PKGREVISION
-rw-r--r-- | lang/python25/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/python25/Makefile b/lang/python25/Makefile index 84ca90458cc..02f572086af 100644 --- a/lang/python25/Makefile +++ b/lang/python25/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.26 2010/04/07 14:57:49 gdt Exp $ +# $NetBSD: Makefile,v 1.27 2010/09/02 11:27:55 drochner Exp $ DISTNAME= Python-2.5.5 PKGNAME= python25-2.5.5 +PKGREVISION= 1 CATEGORIES= lang python MASTER_SITES= http://www.python.org/ftp/python/2.5.5/ EXTRACT_SUFX= .tar.bz2 @@ -47,6 +48,8 @@ PLIST_SRC+= ${.CURDIR}/../../lang/python25/PLIST.${OPSYS} .if ${OPSYS} == "NetBSD" PRIVILEGED_STAGES+= clean +# XXX work around a botched autoconf check which ignores libintl +CONFIGURE_ENV+= ac_cv_func_bind_textdomain_codeset=yes .endif .if ${OPSYS} == "Darwin" || ${OPSYS} == "Interix" |