Hello community,

here is the log from the commit of package gettext-runtime for openSUSE:Factory 
checked in at 2012-07-23 10:00:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gettext-runtime (Old)
 and      /work/SRC/openSUSE:Factory/.gettext-runtime.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gettext-runtime", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-csharp.changes   
2011-09-23 01:59:36.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-csharp.changes      
2012-07-23 10:15:36.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Jul 22 18:41:30 UTC 2012 - [email protected]
+
+- Fix build with missing gets declaration (glibc 2.16)
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-java.changes     
2011-09-23 01:59:36.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-java.changes        
2012-07-23 10:15:36.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Jul 22 18:41:35 UTC 2012 - [email protected]
+
+- Fix build with missing gets declaration (glibc 2.16)
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-runtime.changes  
2012-07-02 21:21:09.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-runtime.changes     
2012-07-23 10:15:36.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Jul 22 18:41:39 UTC 2012 - [email protected]
+
+- Fix build with missing gets declaration (glibc 2.16)
+
+-------------------------------------------------------------------

New:
----
  getext-stdio.in.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gettext-csharp.spec ++++++
--- /var/tmp/diff_new_pack.yglTot/_old  2012-07-23 10:15:38.000000000 +0200
+++ /var/tmp/diff_new_pack.yglTot/_new  2012-07-23 10:15:38.000000000 +0200
@@ -43,6 +43,7 @@
 Patch6:         gettext-0.15-docdir.diff
 Patch7:         gettext-autotools.patch
 Patch9:         gettext-needlessly_init_vars.patch
+Patch10:        getext-stdio.in.patch
 
 %description
 Mono with its 'resgen' program uses a design that Microsoft created and
@@ -81,6 +82,7 @@
 %patch6
 %patch7
 %patch9
+%patch10 -p1
 
 %build
 export CFLAGS="%{optflags} -pipe -W -Wall -Dgcc_is_lint"

++++++ gettext-java.spec ++++++
--- /var/tmp/diff_new_pack.yglTot/_old  2012-07-23 10:15:38.000000000 +0200
+++ /var/tmp/diff_new_pack.yglTot/_new  2012-07-23 10:15:38.000000000 +0200
@@ -43,6 +43,7 @@
 Patch6:         gettext-0.15-docdir.diff
 Patch7:         gettext-autotools.patch
 Patch9:         gettext-needlessly_init_vars.patch
+Patch10:        getext-stdio.in.patch
 
 %description
 This package includes the tools needed to support message catalogs in
@@ -59,6 +60,7 @@
 %patch6
 %patch7
 %patch9
+%patch10 -p1
 
 %build
 export CFLAGS="%{optflags} -pipe -W -Wall -Dgcc_is_lint"

++++++ gettext-runtime.spec ++++++
--- /var/tmp/diff_new_pack.yglTot/_old  2012-07-23 10:15:38.000000000 +0200
+++ /var/tmp/diff_new_pack.yglTot/_new  2012-07-23 10:15:38.000000000 +0200
@@ -54,6 +54,7 @@
 Patch6:         gettext-0.15-docdir.diff
 Patch7:         gettext-autotools.patch
 Patch9:         gettext-needlessly_init_vars.patch
+Patch10:        getext-stdio.in.patch
 
 %description
 This package contains the intl library as well as tools that ease the
@@ -95,6 +96,7 @@
 %patch6
 %patch7
 %patch9
+%patch10 -p1
 
 %build
 # expect a couple "You should update your `aclocal.m4' by running aclocal."

++++++ getext-stdio.in.patch ++++++
Index: gettext-0.18.1.1/gettext-runtime/gnulib-lib/stdio.in.h
===================================================================
--- gettext-0.18.1.1.orig/gettext-runtime/gnulib-lib/stdio.in.h
+++ gettext-0.18.1.1/gettext-runtime/gnulib-lib/stdio.in.h
@@ -141,7 +141,9 @@ _GL_WARN_ON_USE (fflush, "fflush is not
    so any use of gets warrants an unconditional warning.  Assume it is
    always declared, since it is required by C89.  */
 #undef gets
+#if HAVE_RAW_DECL_GETS
 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
+#endif
 
 #if @GNULIB_FOPEN@
 # if @REPLACE_FOPEN@
Index: gettext-0.18.1.1/gettext-tools/gnulib-lib/stdio.in.h
===================================================================
--- gettext-0.18.1.1.orig/gettext-tools/gnulib-lib/stdio.in.h
+++ gettext-0.18.1.1/gettext-tools/gnulib-lib/stdio.in.h
@@ -141,7 +141,9 @@ _GL_WARN_ON_USE (fflush, "fflush is not
    so any use of gets warrants an unconditional warning.  Assume it is
    always declared, since it is required by C89.  */
 #undef gets
+#if HAVE_RAW_DECL_GETS
 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
+#endif
 
 #if @GNULIB_FOPEN@
 # if @REPLACE_FOPEN@
Index: gettext-0.18.1.1/gettext-tools/libgettextpo/stdio.in.h
===================================================================
--- gettext-0.18.1.1.orig/gettext-tools/libgettextpo/stdio.in.h
+++ gettext-0.18.1.1/gettext-tools/libgettextpo/stdio.in.h
@@ -141,7 +141,9 @@ _GL_WARN_ON_USE (fflush, "fflush is not
    so any use of gets warrants an unconditional warning.  Assume it is
    always declared, since it is required by C89.  */
 #undef gets
+#if HAVE_RAW_DECL_GETS
 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
+#endif
 
 #if @GNULIB_FOPEN@
 # if @REPLACE_FOPEN@
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to