Hello community,

here is the log from the commit of package espeak-ng for openSUSE:Factory 
checked in at 2019-07-29 17:23:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/espeak-ng (Old)
 and      /work/SRC/openSUSE:Factory/.espeak-ng.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "espeak-ng"

Mon Jul 29 17:23:59 2019 rev:5 rq:714860 version:1.49.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/espeak-ng/espeak-ng.changes      2018-03-06 
10:47:20.108181884 +0100
+++ /work/SRC/openSUSE:Factory/.espeak-ng.new.4126/espeak-ng.changes    
2019-07-29 17:24:00.950354973 +0200
@@ -1,0 +2,6 @@
+Fri Jul 12 11:33:11 UTC 2019 - Martin Liška <mli...@suse.cz>
+
+- Add espeak-ng-1.49.2-fix_no_return_nonvoid-in-configure.patch
+  in order to fix missing return type in a function.
+
+-------------------------------------------------------------------

New:
----
  espeak-ng-1.49.2-fix_no_return_nonvoid-in-configure.patch

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

Other differences:
------------------
++++++ espeak-ng.spec ++++++
--- /var/tmp/diff_new_pack.G2heSH/_old  2019-07-29 17:24:01.842354643 +0200
+++ /var/tmp/diff_new_pack.G2heSH/_new  2019-07-29 17:24:01.846354641 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package espeak-ng
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -21,12 +21,13 @@
 Version:        1.49.2
 Release:        0
 Summary:        Software speech synthesizer (text-to-speech)
-License:        GPL-3.0+ AND BSD-2-Clause AND Apache-2.0 AND Unicode-DFS-2015
+License:        GPL-3.0-or-later AND BSD-2-Clause AND Apache-2.0 AND 
Unicode-DFS-2015
 Group:          Productivity/Multimedia/Other
 Url:            https://github.com/espeak-ng/espeak-ng
 Source0:        
https://github.com/espeak-ng/espeak-ng/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM espeak-ng-1.49.2-fix_no_return_nonvoid.patch 
aloi...@gmx.com -- addresses rpmlint complaint
 Patch0:         espeak-ng-1.49.2-fix_no_return_nonvoid.patch
+Patch1:         espeak-ng-1.49.2-fix_no_return_nonvoid-in-configure.patch
 BuildRequires:  fdupes
 BuildRequires:  libtool >= 2.4.2
 BuildRequires:  pcaudiolib-devel
@@ -79,6 +80,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 # let's have a versioned data dir
 sed -i '/^DATADIR/s/data/data-%{version}/' Makefile.am
 
@@ -89,7 +91,7 @@
    --with-extdict-zh \
    --with-extdict-zhy
 # build is not parallel-safe
-make
+make V=1
 
 %install
 %make_install

++++++ espeak-ng-1.49.2-fix_no_return_nonvoid-in-configure.patch ++++++
diff --git a/configure.ac b/configure.ac
index 33960c2..e449788 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,7 +49,7 @@ AC_LANG_PUSH(C)
 AC_MSG_CHECKING([if $CC supports C99 without any flags])
 AC_COMPILE_IFELSE(
        [AC_LANG_PROGRAM(
-               [[static inline int c99_restrict(int *restrict c99_restrict) 
{}]],
+               [[static inline int c99_restrict(int *restrict c99_restrict) { 
return 0; }]],
                [[]])],
        [AC_MSG_RESULT([yes])
         have_c99_native=yes],
@@ -63,7 +63,7 @@ CFLAGS="$CFLAGS -std=c99"
 AC_MSG_CHECKING([if $CC supports C99 with the -std=c99 flag])
 AC_COMPILE_IFELSE(
        [AC_LANG_PROGRAM(
-               [[static inline int c99_restrict(int *restrict c99_restrict) 
{}]],
+               [[static inline int c99_restrict(int *restrict c99_restrict) { 
return 0; }]],
                [[]])],
        [AC_MSG_RESULT([yes])
         have_c99_c99=yes],

Reply via email to