- Rename package to webrtc-audio-processing-1 to use the unversioned package name for webrtc-audio-processing 2.1 - Use %patch -P N instead of deprecated %patchN. - ExcludeArch s390, s390x and ppc64 since big endian support is not implemented. - Remove the tar.xz file. Having the obscpio file is enough - Use also dashes instead of underscores in the manual Requires - Rename the generated library package names to add a dash between the name and soname (libwebrtc*-1-3 instead of libwebrtc*1-3) - Rename the generated packages to use dashes instead of underscores - Change baselibs.conf accordingly - Add patch to reduce the required meson version so the package builds in Leap 15.4/15.5: * reduce-meson-dep.patch - Update to version 1.3: * build: Bump version to 1.3 * meson: Fix generation of pkgconfig files * build: Bump version to 1.2 * meson: Update minimum version based on what abseil wrap needs * build: Expose absl as a dependency of webrtc-audio-processing * meson: Update to latest wrap, install required absl headers * doc: Update tarball generation process * file_utils.h: Fix build with gcc-13 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/webrtc-audio-processing-1?expand=0&rev=1
25 lines
905 B
Diff
25 lines
905 B
Diff
diff -up webrtc-audio-processing-0.2/webrtc/typedefs.h.typedef webrtc-audio-processing-0.2/webrtc/typedefs.h
|
|
--- webrtc-audio-processing-0.2/webrtc/typedefs.h.typedef 2016-05-12 09:08:53.885000410 -0500
|
|
+++ webrtc-audio-processing-0.2/webrtc/typedefs.h 2016-05-12 09:12:38.006851953 -0500
|
|
@@ -48,7 +48,19 @@
|
|
#define WEBRTC_ARCH_32_BITS
|
|
#define WEBRTC_ARCH_LITTLE_ENDIAN
|
|
#else
|
|
-#error Please add support for your architecture in typedefs.h
|
|
+/* instead of failing, use typical unix defines... */
|
|
+#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
|
+#define WEBRTC_ARCH_LITTLE_ENDIAN
|
|
+#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
|
+#define WEBRTC_ARCH_BIG_ENDIAN
|
|
+#else
|
|
+#error __BYTE_ORDER__ is not defined
|
|
+#endif
|
|
+#if defined(__LP64__)
|
|
+#define WEBRTC_ARCH_64_BITS
|
|
+#else
|
|
+#define WEBRTC_ARCH_32_BITS
|
|
+#endif
|
|
#endif
|
|
|
|
#if !(defined(WEBRTC_ARCH_LITTLE_ENDIAN) ^ defined(WEBRTC_ARCH_BIG_ENDIAN))
|