-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 tags 322648 + patch pending thanks
The following patch (thanks to Akira Yamada) fixes this problem. I will upload it to the DELAYED queue with a 7 day delay shortly. If you perform a maintainer upload within 7 days, it will be removed. Please acknowledge this NMU in your next maintainer upload. There are a number of lintian warnings which also need your attention. Regards, Roger - -- Roger Leigh Printing on GNU/Linux? http://gimp-print.sourceforge.net/ Debian GNU/Linux http://www.debian.org/ GPG Public Key: 0x25BFB848. Please sign and encrypt your mail. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) Comment: Processed by Mailcrypt 3.5.8+ <http://mailcrypt.sourceforge.net/> iD8DBQFDxnE7VcFcaSW/uEgRAnc+AJ9IHiTdfzggnfVXk0LjGHeChmGrnwCgz1NU xZ41436yhJ2hTtQJhryYUc0= =wbvn -----END PGP SIGNATURE-----
diff -urN libintl-gettext-ruby-0.11.original/debian/changelog libintl-gettext-ruby-0.11/debian/changelog --- libintl-gettext-ruby-0.11.original/debian/changelog 2006-01-12 15:00:11.000000000 +0000 +++ libintl-gettext-ruby-0.11/debian/changelog 2006-01-12 15:09:05.922334205 +0000 @@ -1,3 +1,12 @@ +libintl-gettext-ruby (0.11-5.1) unstable; urgency=low + + * Non-maintainer upload. + * extconf.rb: have_func() must specify libintl.h, or else the check + for gettext() will fail; thanks to Akira Yamada for this patch. + closes: #322648. + + -- Roger Leigh <[EMAIL PROTECTED]> Thu, 12 Jan 2006 15:06:43 +0000 + libintl-gettext-ruby (0.11-5) unstable; urgency=low * New maintainer. diff -urN libintl-gettext-ruby-0.11.original/extconf.rb libintl-gettext-ruby-0.11/extconf.rb --- libintl-gettext-ruby-0.11.original/extconf.rb 1999-08-24 23:32:00.000000000 +0100 +++ libintl-gettext-ruby-0.11/extconf.rb 2006-01-12 15:01:43.631281150 +0000 @@ -4,6 +4,6 @@ $CFLAGS = "-I/usr/local/include"; have_library( "xpg4", "setlocale" ); have_header( "locale.h" ); -if ( have_header( "libintl.h" ) and (have_library( "intl", "gettext" ) or have_func( "gettext" )) ) +if ( have_header( "libintl.h" ) and (have_library( "intl", "gettext" ) or have_func( "gettext", "libintl.h" )) ) create_makefile( "intl" ); end