Hello community, here is the log from the commit of package gettext-runtime for openSUSE:Factory checked in at 2013-06-17 10:33:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gettext-runtime (Old) and /work/SRC/openSUSE:Factory/.gettext-runtime.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gettext-runtime" Changes: -------- --- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-csharp.changes 2013-06-14 16:45:20.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-csharp.changes 2013-06-17 10:33:32.000000000 +0200 @@ -1,0 +2,8 @@ +Sat Jun 15 11:52:06 UTC 2013 - [email protected] + +- Add glib2-devel libcroco-devel libxml2-devel to build requires to avoid + using the included copies. +- gettext-configure.patch: Fix syntax in libxml check to avoid spurious + failure + +------------------------------------------------------------------- gettext-java.changes: same change gettext-runtime.changes: same change New: ---- gettext-configure.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gettext-csharp.spec ++++++ --- /var/tmp/diff_new_pack.Az9Bod/_old 2013-06-17 10:33:33.000000000 +0200 +++ /var/tmp/diff_new_pack.Az9Bod/_new 2013-06-17 10:33:33.000000000 +0200 @@ -19,7 +19,10 @@ Name: gettext-csharp BuildRequires: fdupes BuildRequires: gcc-c++ +BuildRequires: glib2-devel +BuildRequires: libcroco-devel BuildRequires: libtool +BuildRequires: libxml2-devel BuildRequires: mono-devel BuildRequires: perl-libintl-perl BuildRequires: tcl @@ -41,6 +44,7 @@ Patch4: gettext-po-mode.diff Patch5: gettext-initialize_vars.patch Patch9: gettext-needlessly_init_vars.patch +Patch10: gettext-configure.patch %description Mono with its 'resgen' program uses a design that Microsoft created and @@ -71,6 +75,7 @@ %patch4 %patch5 %patch9 +%patch10 -p1 %build export CFLAGS="%{optflags} -pipe -W -Wall -Dgcc_is_lint" ++++++ gettext-java.spec ++++++ --- /var/tmp/diff_new_pack.Az9Bod/_old 2013-06-17 10:33:33.000000000 +0200 +++ /var/tmp/diff_new_pack.Az9Bod/_new 2013-06-17 10:33:33.000000000 +0200 @@ -20,7 +20,10 @@ BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: gcc-java +BuildRequires: glib2-devel +BuildRequires: libcroco-devel BuildRequires: libtool +BuildRequires: libxml2-devel BuildRequires: perl-libintl-perl BuildRequires: tcl Url: http://www.gnu.org/software/gettext/ @@ -40,6 +43,7 @@ Patch4: gettext-po-mode.diff Patch5: gettext-initialize_vars.patch Patch9: gettext-needlessly_init_vars.patch +Patch10: gettext-configure.patch %description This package includes the tools needed to support message catalogs in @@ -53,6 +57,7 @@ %patch4 %patch5 %patch9 +%patch10 -p1 %build export CFLAGS="%{optflags} -pipe -W -Wall -Dgcc_is_lint" ++++++ gettext-runtime.spec ++++++ --- /var/tmp/diff_new_pack.Az9Bod/_old 2013-06-17 10:33:33.000000000 +0200 +++ /var/tmp/diff_new_pack.Az9Bod/_new 2013-06-17 10:33:33.000000000 +0200 @@ -22,7 +22,10 @@ Version: 0.18.2.1 Release: 0 BuildRequires: gcc-c++ +BuildRequires: glib2-devel +BuildRequires: libcroco-devel BuildRequires: libtool +BuildRequires: libxml2-devel BuildRequires: perl-libintl-perl BuildRequires: tcl # To get an updated linkdupes.sh (in case there are new dupes), temproarily enable: @@ -51,6 +54,7 @@ Patch4: gettext-po-mode.diff Patch5: gettext-initialize_vars.patch Patch9: gettext-needlessly_init_vars.patch +Patch10: gettext-configure.patch %description This package contains the intl library as well as tools that ease the @@ -89,6 +93,7 @@ %patch4 %patch5 %patch9 +%patch10 -p1 %build # expect a couple "You should update your `aclocal.m4' by running aclocal." ++++++ gettext-configure.patch ++++++ Index: gettext-0.18.2.1/gettext-tools/configure =================================================================== --- gettext-0.18.2.1.orig/gettext-tools/configure +++ gettext-0.18.2.1/gettext-tools/configure @@ -40566,13 +40566,13 @@ fi LIBS="$gl_save_LIBS $LIBXML2 $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -[#include <libxml/xmlversion.h> +#include <libxml/xmlversion.h> #include <libxml/xmlmemory.h> - ] + int main () { -[xmlCheckVersion (0); xmlFree ((void *) 0);] +xmlCheckVersion (0); xmlFree ((void *) 0); ; return 0; } @@ -40590,13 +40590,13 @@ rm -f core conftest.err conftest.$ac_obj CPPFLAGS="$CPPFLAGS $INCXML2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -[#include <libxml/xmlversion.h> +#include <libxml/xmlversion.h> #include <libxml/xmlmemory.h> - ] + int main () { -[xmlCheckVersion (0); xmlFree ((void *) 0);] +xmlCheckVersion (0); xmlFree ((void *) 0); ; return 0; } @@ -40746,13 +40746,13 @@ rm -f conftest.err conftest.i conftest.$ CPPFLAGS="$gl_save_CPPFLAGS -I$libxml2_include_dir" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -[#include <libxml/xmlversion.h> +#include <libxml/xmlversion.h> #include <libxml/xmlmemory.h> - ] + int main () { -[xmlCheckVersion (0); xmlFree ((void *) 0);] +xmlCheckVersion (0); xmlFree ((void *) 0); ; return 0; } Index: gettext-0.18.2.1/gettext-tools/gnulib-m4/libxml.m4 =================================================================== --- gettext-0.18.2.1.orig/gettext-tools/gnulib-m4/libxml.m4 +++ gettext-0.18.2.1/gettext-tools/gnulib-m4/libxml.m4 @@ -42,10 +42,10 @@ AC_DEFUN([gl_LIBXML], dnl -Wl,--disable-auto-import. AC_LIB_LINKFLAGS_BODY([xml2]) LIBS="$gl_save_LIBS $LIBXML2 $LIBICONV" - AC_TRY_LINK([[#include <libxml/xmlversion.h> + AC_TRY_LINK([#include <libxml/xmlversion.h> #include <libxml/xmlmemory.h> - ]], - [[xmlCheckVersion (0); xmlFree ((void *) 0);]], + ], + [xmlCheckVersion (0); xmlFree ((void *) 0);], [gl_cv_libxml=yes gl_cv_LIBXML="$LIBXML2 $LIBICONV" gl_cv_LTLIBXML="$LTLIBXML2 $LTLIBICONV" @@ -53,10 +53,10 @@ AC_DEFUN([gl_LIBXML], if test "$gl_cv_libxml" != yes; then gl_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCXML2" - AC_TRY_LINK([[#include <libxml/xmlversion.h> + AC_TRY_LINK([#include <libxml/xmlversion.h> #include <libxml/xmlmemory.h> - ]], - [[xmlCheckVersion (0); xmlFree ((void *) 0);]], + ], + [xmlCheckVersion (0); xmlFree ((void *) 0);], [gl_cv_libxml=yes gl_cv_LIBXML="$LIBXML2 $LIBICONV" gl_cv_LTLIBXML="$LTLIBXML2 $LTLIBICONV" @@ -80,10 +80,10 @@ AC_DEFUN([gl_LIBXML], fi if test -n "$libxml2_include_dir" && test -d "$libxml2_include_dir"; then CPPFLAGS="$gl_save_CPPFLAGS -I$libxml2_include_dir" - AC_TRY_LINK([[#include <libxml/xmlversion.h> + AC_TRY_LINK([#include <libxml/xmlversion.h> #include <libxml/xmlmemory.h> - ]], - [[xmlCheckVersion (0); xmlFree ((void *) 0);]], + ], + [xmlCheckVersion (0); xmlFree ((void *) 0);], [gl_cv_libxml=yes gl_cv_LIBXML="$LIBXML2 $LIBICONV" gl_cv_LTLIBXML="$LTLIBXML2 $LTLIBICONV" -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
