Hello community, here is the log from the commit of package speexdsp for openSUSE:Factory checked in at 2015-05-20 23:30:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/speexdsp (Old) and /work/SRC/openSUSE:Factory/.speexdsp.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "speexdsp" Changes: -------- --- /work/SRC/openSUSE:Factory/speexdsp/speexdsp.changes 2015-04-07 09:27:04.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.speexdsp.new/speexdsp.changes 2015-05-20 23:30:24.000000000 +0200 @@ -1,0 +2,6 @@ +Mon May 18 10:30:00 UTC 2015 - [email protected] + +- Fix incorrect includes (boo#929450) + * speexdsp-fixbuilds-774c87d.patch + +------------------------------------------------------------------- New: ---- speexdsp-fixbuilds-774c87d.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ speexdsp.spec ++++++ --- /var/tmp/diff_new_pack.RAwjyG/_old 2015-05-20 23:30:25.000000000 +0200 +++ /var/tmp/diff_new_pack.RAwjyG/_new 2015-05-20 23:30:25.000000000 +0200 @@ -25,8 +25,13 @@ License: BSD-3-Clause Group: Productivity/Multimedia/Sound/Editors and Convertors Url: http://www.speex.org/ -Source: http://downloads.xiph.org/releases/speex/%{name}-%{package_version}.tar.gz +Source0: http://downloads.xiph.org/releases/speex/%{name}-%{package_version}.tar.gz Source2: baselibs.conf +# taken from upstream boo#929450 +Patch0: speexdsp-fixbuilds-774c87d.patch +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool BuildRequires: pkg-config BuildRequires: pkgconfig(ogg) Conflicts: speex <= 1.1.999_1.2rc1 @@ -60,6 +65,8 @@ %prep %setup -q -n %{name}-%{package_version} +%patch0 -p1 +autoreconf -fi %build # Disable NEON since it doesn't check for availability of the NEON ++++++ speexdsp-fixbuilds-774c87d.patch ++++++ Index: speexdsp-1.2rc3/configure.ac =================================================================== --- speexdsp-1.2rc3.orig/configure.ac +++ speexdsp-1.2rc3/configure.ac @@ -334,6 +334,12 @@ AC_SUBST([USIZE16]) AC_SUBST([SIZE32]) AC_SUBST([USIZE32]) +AS_IF([test "$ac_cv_header_stdint_h" = "yes"], [INCLUDE_STDINT="#include <stdint.h>"], + [test "$ac_cv_header_inttypes_h" = "yes"], [INCLUDE_STDINT="#include <inttypes.h>"], + [test "$ac_cv_header_sys_types_h" = "yes"], [INCLUDE_STDINT="#include <sys/types.h>"]) + +AC_SUBST([INCLUDE_STDINT]) + AC_CONFIG_FILES([ Makefile libspeexdsp/Makefile doc/Makefile SpeexDSP.spec include/Makefile include/speex/Makefile speexdsp.pc Index: speexdsp-1.2rc3/include/speex/speexdsp_config_types.h.in =================================================================== --- speexdsp-1.2rc3.orig/include/speex/speexdsp_config_types.h.in +++ speexdsp-1.2rc3/include/speex/speexdsp_config_types.h.in @@ -1,13 +1,7 @@ #ifndef __SPEEX_TYPES_H__ #define __SPEEX_TYPES_H__ -#if defined HAVE_STDINT_H -# include <stdint.h> -#elif defined HAVE_INTTYPES_H -# include <inttypes.h> -#elif defined HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif +@INCLUDE_STDINT@ typedef @SIZE16@ spx_int16_t; typedef @USIZE16@ spx_uint16_t;
