├── .gitignore ├── LICENSE.LGPL ├── MANIFEST.in.in ├── Makefile ├── README ├── README.md ├── cerbero-uninstalled ├── cerbero ├── __init__.py ├── bootstrap │ ├── __init__.py │ ├── android.py │ ├── bootstrapper.py │ ├── build_tools.py │ ├── ios.py │ ├── linux.py │ ├── osx.py │ └── windows.py ├── build │ ├── __init__.py │ ├── build.py │ ├── cookbook.py │ ├── filesprovider.py │ ├── oven.py │ ├── recipe.py │ └── source.py ├── commands │ ├── __init__.py │ ├── add_package.py │ ├── add_recipe.py │ ├── bootstrap.py │ ├── build.py │ ├── bundlesource.py │ ├── check.py │ ├── checkpackage.py │ ├── cleanone.py │ ├── debugpackages.py │ ├── deps.py │ ├── fetch.py │ ├── genlibfiles.py │ ├── gensdkshell.py │ ├── genvsprops.py │ ├── genxcconfig.py │ ├── info.py │ ├── list.py │ ├── package.py │ ├── rdeps.py │ ├── runit.py │ ├── shell.py │ ├── tag.py │ └── wipe.py ├── config.py ├── enums.py ├── errors.py ├── hacks.py ├── ide │ ├── __init__.py │ ├── pkgconfig.py │ ├── vs │ │ ├── __init__.py │ │ ├── genlib.py │ │ ├── pkgconfig2vsprops.py │ │ ├── props.py │ │ └── vsprops.py │ └── xcode │ │ ├── __init__.py │ │ ├── fwlib.py │ │ └── xcconfig.py ├── main.py ├── packages │ ├── __init__.py │ ├── android.py │ ├── debian.py │ ├── disttarball.py │ ├── linux.py │ ├── osx │ │ ├── __init__.py │ │ ├── buildtools.py │ │ ├── bundles.py │ │ ├── distribution.py │ │ ├── info_plist.py │ │ └── packager.py │ ├── package.py │ ├── packager.py │ ├── packagesstore.py │ ├── rpm.py │ ├── wix.py │ └── wix_packager.py ├── tools │ ├── __init__.py │ ├── depstracker.py │ ├── libtool.py │ ├── osxrelocator.py │ ├── osxuniversalgenerator.py │ ├── pkgconfig.py │ └── strip.py └── utils │ ├── __init__.py │ ├── git.py │ ├── messages.py │ ├── msbuild.py │ ├── shell.py │ └── svn.py ├── config ├── android.config ├── build-tools.cbc ├── cross-android-arm64.cbc ├── cross-android-armv7.cbc ├── cross-android-universal.cbc ├── cross-android-x86-64.cbc ├── cross-android-x86.cbc ├── cross-android.cbc ├── cross-ios-arm64.cbc ├── cross-ios-arm7.cbc ├── cross-ios-arm7s.cbc ├── cross-ios-universal.cbc ├── cross-ios-x86-64.cbc ├── cross-ios-x86.cbc ├── cross-lin-arm.cbc ├── cross-lin-x86.cbc ├── cross-win32.cbc ├── cross-win64.cbc ├── darwin.config ├── ios.config ├── linux.cbc ├── linux.config ├── mingw-w32-lin.cbc ├── mingw-w32-win.cbc ├── mingw-w64-lin.cbc ├── mingw-w64-win.cbc ├── osx-universal.cbc ├── osx-x86-64.cbc ├── win32.cbc ├── win64.cbc └── windows.config ├── create_tarball.sh ├── data ├── autotools │ ├── config.guess │ └── config.sub ├── ndk-build │ ├── GStreamer.java │ ├── fontconfig │ │ ├── fonts.conf │ │ └── fonts │ │ │ └── Ubuntu-R.ttf │ ├── gstreamer-1.0.mk │ ├── gstreamer_android-1.0.c.in │ ├── gstreamer_prebuilt.mk │ ├── tools.mk │ └── tools │ │ └── windows │ │ ├── libiconv2.dll │ │ ├── libintl3.dll │ │ ├── pkg-config.exe │ │ ├── regex2.dll │ │ └── sed.exe ├── vs-1.0 │ ├── gst-template │ │ ├── Scripts │ │ │ └── 1033 │ │ │ │ └── default.js │ │ └── gst-template.vcxproj │ ├── msvc │ │ ├── common.props │ │ ├── config.props │ │ ├── msvcrt.props │ │ ├── release.props │ │ ├── x86.props │ │ └── x86_64.props │ └── wizard │ │ ├── gst-sdk-template.ico │ │ ├── gst-sdk-template.vsdir │ │ └── gst-sdk-template.vsz ├── vs │ ├── gst-sdk-template │ │ ├── Scripts │ │ │ └── 1033 │ │ │ │ └── default.js │ │ └── gst-sdk-template.vcxproj │ ├── msvc │ │ ├── common.props │ │ ├── config.props │ │ ├── msvcrt.props │ │ ├── release.props │ │ ├── x86.props │ │ └── x86_64.props │ └── wizard │ │ ├── gst-sdk-template.ico │ │ ├── gst-sdk-template.vsdir │ │ └── gst-sdk-template.vsz ├── wix │ ├── Config.wxi │ ├── installer.wxs │ ├── properties.wxi │ ├── ui.wxs │ └── utils.wxs └── xcode │ └── templates │ └── ios │ ├── GStreamer Base.xctemplate │ ├── TemplateInfo.plist │ ├── fontconfig │ │ ├── fonts.conf │ │ └── fonts │ │ │ └── Ubuntu-R.ttf │ ├── gst_ios_init.h │ ├── gst_ios_init.m │ └── main.m │ ├── GStreamer Empty Application.xctemplate │ └── TemplateInfo.plist │ ├── GStreamer Master-Detail Application.xctemplate │ └── TemplateInfo.plist │ ├── GStreamer Page-Based Application.xctemplate │ └── TemplateInfo.plist │ ├── GStreamer Single View Application.xctemplate │ └── TemplateInfo.plist │ ├── GStreamer Tabbed Application.xctemplate │ └── TemplateInfo.plist │ └── GStreamer Utility Application.xctemplate │ └── TemplateInfo.plist ├── packages ├── base-crypto.package ├── base-system-1.0.package ├── custom.py ├── gstreamer-1.0-capture.package ├── gstreamer-1.0-codecs-gpl.package ├── gstreamer-1.0-codecs-restricted.package ├── gstreamer-1.0-codecs.package ├── gstreamer-1.0-core.package ├── gstreamer-1.0-devtools.package ├── gstreamer-1.0-dvd.package ├── gstreamer-1.0-editing.package ├── gstreamer-1.0-effects.package ├── gstreamer-1.0-encoding.package ├── gstreamer-1.0-libav.package ├── gstreamer-1.0-net-restricted.package ├── gstreamer-1.0-net.package ├── gstreamer-1.0-playback.package ├── gstreamer-1.0-system.package ├── gstreamer-1.0-visualizers.package ├── gstreamer-1.0-vs-templates.package ├── gstreamer-1.0 │ ├── background.png │ ├── banner.bmp │ ├── dialog.bmp │ ├── gstreamer-1.0.package │ ├── icon.ico │ ├── license.rtf │ ├── license.txt │ ├── license_unwrapped.txt │ └── post_install_ios ├── openwebrtc-base.package ├── openwebrtc │ └── openwebrtc.package └── vsintegration-1.0.package ├── recipes ├── a52dec.recipe ├── a52dec │ ├── 0002-Fix-link-cross-compiling-to-x86-in-darwin-platforms.patch │ ├── 0003-Disable-AC_C_ALWAYS_INLINE.patch │ └── 0004-configure-let-us-decide-if-we-really-want-PIC-or-not.patch ├── bionic-fixup.recipe ├── bionic-fixup │ └── error.h ├── build-tools │ ├── android-sdk.recipe │ ├── autoconf.recipe │ ├── automake.recipe │ ├── bison.recipe │ ├── cmake.recipe │ ├── flex.recipe │ ├── flex │ │ ├── flex-configure.ac-Use-gettext-0.19.patch │ │ └── flex-prevent-to-build-doc.patch │ ├── gas-preprocessor.recipe │ ├── gettext-m4.recipe │ ├── gettext-tools.recipe │ ├── glib-tools.recipe │ ├── gnome-common.recipe │ ├── gnu-sed.recipe │ ├── gobject-introspection-m4.recipe │ ├── gobject-introspection.recipe │ ├── gperf-0001-Don-t-override-environment-AR.patch │ ├── gperf.recipe │ ├── intltool-m4.recipe │ ├── intltool.recipe │ ├── libtool.recipe │ ├── libtool │ │ └── 0001-Add-support-for-weak_framework-linking-on-Darwin.patch │ ├── m4.recipe │ ├── meson.recipe │ ├── mingw-regex.recipe │ ├── mingw-regex │ │ └── 0001-Fix-compilation.patch │ ├── ninja.recipe │ ├── orc.recipe │ ├── pkg-config.recipe │ ├── vala-m4.recipe │ ├── xz.recipe │ └── yasm.recipe ├── bzip2.recipe ├── bzip2 │ └── 0001-Fix-Makefiles-and-add-support-for-Windows-and-OS-X.patch ├── ca-certificates.recipe ├── ca-certificates │ └── ca-certificates.crt ├── cairo.recipe ├── cairo │ ├── 0001-Disable-building-of-the-tests.patch │ ├── 0001-Fix-compilation-with-Android-s-bionic-libc.patch │ └── 0001-configure-Disable-LTO-as-it-breaks-at-least-on-Andro.patch ├── cdparanoia.recipe ├── cdparanoia │ └── 0001-configure.in-Always-use-AC_PROG_CC.patch ├── custom.py ├── docbook-xml.recipe ├── docbook-xsl.recipe ├── expat.recipe ├── faad2.recipe ├── faad2 │ ├── 0001-Fix-redefinition-of-off_t.patch │ └── 0002-Add-no-undefined-on-windows.patch ├── flac.recipe ├── fontconfig.recipe ├── fontconfig │ ├── 0001-Do-not-build-tests-on-windows.patch │ ├── 0001-Don-t-use-_mktemp_s-which-is-not-available-in-XP.patch │ └── 0003-configure-Allow-static-build.patch ├── freetype.recipe ├── frei0r-plugins │ └── 0001-Fix-autoreconf.patch ├── freior-plugins.recipe ├── fribidi.recipe ├── fribidi │ ├── 0001-fribidi.def-Include-all-required-symbols.patch │ └── 0002-fribidi-disable-docs.patch ├── gdk-pixbuf.recipe ├── gdk-pixbuf │ └── 0001-thumbnailer-Add-EXEEXT-to-the-the-gdk-pixbuf-print-m.patch ├── gettext.recipe ├── gettext │ ├── 0001-Fix-linker-error-redefinition-of-vasprintf.patch │ └── 0001-Undefine-__USE_MINGW_ANSI_STDIO-as-otherwise-stdio.h.patch ├── glib-networking-static.recipe ├── glib-networking.recipe ├── glib-networking │ ├── 0001-Add-support-for-static-modules.patch │ ├── 0002-Get-the-CA-certificate-path-from-the-environment-var.patch │ ├── 0003-gnutls-Use-db-relative-to-libglib-2.0-if-needed.patch │ └── 0004-gtlsbackend-gnutls-Get-anchor-file-relative-to-libgi.patch ├── glib.recipe ├── glib │ ├── 0001-Let-user-disable-Cocoa-and-Carbon-support-on-demand.patch │ ├── 0002-Optionally-revert-to-the-old-pre-2.28-URI-handler-co.patch │ ├── 0003-Add-support-for-loading-GIO-modules-from-the-distro-.patch │ ├── 0004-Allow-for-a-second-distro-GIO-module-path-as-used-on.patch │ ├── 0005-Blacklist-the-bamf-GIO-module.patch │ ├── 0006-giomodule-do-not-try-to-load-modules-from-gio-module.patch │ ├── 0008-gdbus-codgen-Use-a-proper-shebang-in-the-generator.patch │ ├── 0009-Unhide-_g_io_modules_ensure_extension_points_registe.patch │ ├── 0015-Implementation-of-Cocoa-event-loop-integration-in-GM.patch │ ├── 0016-gmessages-Fix-compilation-on-Android.patch │ ├── 0017-GSocket-Fix-race-conditions-on-Win32-if-multiple-thr.patch │ ├── 0018-Check-for-RTLD_LAZY-and-others-in-configure.patch │ ├── 0018-Don-t-use-RTLD_DEFAULT-on-Android-for-g_module_self.patch │ └── 0019-gmain-Fix-erroneous-if-condition-when-dtrace-is-disa.patch ├── gmp.recipe ├── gnome-js-common.recipe ├── gnustl.recipe ├── gnutls.recipe ├── gnutls │ ├── 0001-Undefine-__USE_MINGW_ANSI_STDIO-as-otherwise-stdio.h.patch │ └── 0003-Disable-ncrypt-support.patch ├── graphene.recipe ├── graphene │ └── 0001-simd4f-Fix-a-compilation-error.patch ├── gst-android-1.0.recipe ├── gst-editing-services-1.0.recipe ├── gst-libav-1.0.recipe ├── gst-plugins-bad-1.0.recipe ├── gst-plugins-base-1.0.recipe ├── gst-plugins-good-1.0.recipe ├── gst-plugins-ugly-1.0.recipe ├── gst-rtsp-server-1.0.recipe ├── gst-shell.recipe ├── gst-transcoder.recipe ├── gst-validate.recipe ├── gstreamer-1.0-osx-framework.recipe ├── gstreamer-1.0.recipe ├── gstreamer-ios-templates.recipe ├── gtk-doc-lite.recipe ├── gtk-osx-docbook.recipe ├── harfbuzz.recipe ├── icu.recipe ├── itstool.recipe ├── javascriptcoregtk.recipe ├── javascriptcoregtk │ └── execinfo.h ├── json-glib.recipe ├── json-glib │ └── 0001-Don-t-override-our-own-ACLOCAL_FLAGS-but-append-them.patch ├── lame.recipe ├── lame │ └── 0001-Make-lame-work-with-auto-1.12.patch ├── libass.recipe ├── libass │ └── 0001-directwrite-drop-SAL-annotations.patch ├── libcroco.recipe ├── libdca.recipe ├── libdca │ └── 0001-Disable-AC_C_ALWAYS_INLINE.patch ├── libdv.recipe ├── libdv │ ├── 0001-Check-properly-for-sched_setscheduler.patch │ ├── 0003-Don-t-build-test-programs.patch │ ├── 0004-Fix-compilation-on-Android.patch │ ├── 0005-Fix-compilation-on-Windows-some-more.patch │ ├── 0006-Add-the-pthread-libs-to-pkg-config.patch │ ├── 0007-Don-t-require-libsdl-to-be-installed-for-autoreconf.patch │ ├── 0012-Build-a-DLL-on-Windows.patch │ ├── 0013-Fix-endianess-detection-with-mingw-w64.patch │ └── 0014-libdv-fix-build-of-gasmoff-after-autoreconf.patch ├── libdvdnav.recipe ├── libdvdnav │ ├── 0001-Fix-linking-in-windows-compilation.patch │ └── 0002-Build-DLLs-on-Windows.patch ├── libdvdread.recipe ├── libdvdread │ ├── 0001-Fix-compilation-on-Windows-by-including-files-with-t.patch │ └── 0002-Build-DLLs-on-Windows.patch ├── libffi.recipe ├── libffi │ └── 0001-libffi-Don-t-be-smart-about-toolexeclibdir.patch ├── libiconv.recipe ├── libiconv │ ├── 0001-Use-correct-autotools-versions.patch │ ├── 0002-Add-support-for-Android.patch │ ├── 0003-stdint-fix-build-with-Android-s-Bionic-fox-x86.patch │ └── 0004-lib-Only-rename-locale_charset-for-libiconv-not-libc.patch ├── libjpeg-turbo.recipe ├── libjpeg-turbo │ └── 0001-Include-limits.h-for-SIZE_MAX.patch ├── libkate.recipe ├── libkate │ └── 0001-be-more-permissive-with-automake-errors-now-that-we-.patch ├── libmad │ ├── 0001-Delete-invalid-compile-option.patch │ ├── 0002-fix-autoreconf.patch │ ├── 0003-ARM-Fix-build-without-the-Thumb-mode.patch │ └── 0004-Remove-clang-unsupported-compiler-flags.patch ├── libmms.recipe ├── libmms │ ├── 0001-Use-native-iconv-in-windows.patch │ ├── 0002-uri-Add-implementation-of-strndup-for-platforms-that.patch │ └── 0005-Fix-build-on-OSX-leopard.patch ├── libmpeg2.recipe ├── libmpeg2 │ ├── 0001-Disable-AC_C_ALWAYS_INLINE.patch │ └── 0002-Import-revision-1206-from-upstream-to-fix-PIE-build.patch ├── libnice.recipe ├── libnice │ ├── 0001-TURN-allow-REALM-to-be-empty.patch │ ├── 0001-agent-Remove-unnecessary-NULL-check.patch │ ├── 0001-nicesrc-spin-the-agent-mainloop-in-a-separate-thread.patch │ ├── 0002-Do-not-update-a-remote-candidate-s-type.patch │ ├── 0002-TURN-handle-437-Allocation-Mismatch-responses.patch │ ├── 0003-Do-not-compare-scope-for-IPv6-address-when-scope-is-.patch │ └── 0004-Removing-no-op-assignment.patch ├── libogg.recipe ├── libogg │ └── 0001-Fix-iOS-build.patch ├── libpng │ ├── 0001-neon-fix-function-export-names-for-iOS-armv7.patch │ └── libpng.recipe ├── librsvg.recipe ├── librsvg │ ├── 0001-Use-ACLOCAL_FLAGS.patch │ └── option-enable-disable-gtk.patch ├── librtmp │ ├── 0001-Fix-support-for-cross-compilation.patch │ └── librtmp.recipe ├── libshout.recipe ├── libsoup.recipe ├── libsoup │ ├── 0001-Rip-out-sqlite-based-cookie-storage.patch │ └── 0002-Don-t-build-tests.patch ├── libsrtp.recipe ├── libsrtp │ └── 0001-Don-t-create-a-symlink-if-there-is-no-SHAREDLIBVERSI.patch ├── libtasn1.recipe ├── libtasn1 │ └── 0001-Rename-gnulib-symbols.patch ├── libtheora.recipe ├── libtheora │ ├── 0001-Add-option-to-disable-doc.patch │ ├── 0002-Update-makefiles.patch │ ├── 0003-Fix-linking-of-theora-encoder-library.patch │ ├── 0004-Use-our-automake-version-and-not-an-older-one.patch │ ├── 0005-Update-Makefile.in-too-to-avoid-needing-to-call-auto.patch │ ├── 0006-examples-Don-t-use-png_sizeof.patch │ └── 0007-Don-t-use-fforce-addr.patch ├── libunwind.recipe ├── libusrsctp.recipe ├── libusrsctp │ ├── ifaddrs.c │ └── ifaddrs.h ├── libvisual.recipe ├── libvisual │ ├── 0001-Check-properly-for-sched_setshceduler.patch │ ├── 0003-Add-long-long-check-for-win64.patch │ ├── 0005-Fix-compilation-in-win64.patch │ ├── 0006-Fix-build-in-PPC.patch │ ├── 0007-Fix-build-on-debian-squeeze.patch │ ├── 0008-Remove-malloc-realloc-configure-checks-they-re-broke.patch │ ├── 0009-Fix-build-for-Android-X86.patch │ ├── 0010-Only-define-inline-and-friends-if-they-re-not-define.patch │ ├── 0011-Fix-autoreconf-when-using-our-gettext-version.patch │ ├── 0012-configure-gettext-0.18-is-enough-no-0.18.2-needed.patch │ ├── 0013-Include-lv_cpu.h-for-visual_cpu_initialize.patch │ ├── 0014-Add-forward-declaration-of-visual_transform_init-as-.patch │ ├── 0015-Include-lv_cpu.h-in-another-place-too.patch │ └── 0016-configure.ac-Use-gettext-0.19.patch ├── libvorbis.recipe ├── libvorbis │ ├── 0001-Fix-linking-on-Android.patch │ ├── 0003-Link-the-other-libs-with-lm-too.patch │ ├── 0004-configure-check-for-endianness.patch │ ├── 0005-darwin-do-not-build-for-a-generic-arm-architecture.patch │ ├── 0006-Use-our-version-of-automake-instead-of-some-random-o.patch │ └── 0007-autogen.sh-Make-sure-libtoolize-runs-fully.patch ├── libvpx.recipe ├── libvpx │ ├── 0001-build-Fix-the-min-version-flag-for-iOS-simulator-bui.patch │ ├── 0002-Include-Android-cpu-features.c-instead-of-.h.patch │ ├── 0003-configure-Add-back-the-armv5te-android-gcc-target.patch │ ├── 0004-build-Remove-broken-custom-android-toolchain-usage.patch │ ├── 0005-configure-Add-Android-ARM64-support.patch │ └── 0006-Don-t-embed-bitcode-on-iOS-until-we-support-that-pro.patch ├── libxml2.recipe ├── libxml2 │ ├── 0001-Enable-windows-cross-compilation.patch │ ├── 0002-makefiles-disable-tests.patch │ └── 0003-configure-fix-python-dir-prefix.patch ├── mingw-runtime.recipe ├── mpg123.recipe ├── mpg123 │ └── 0001-Disable-tools-and-libout123-library.patch ├── nettle │ ├── 0001-ios-fix-build-using-.word-for-assembly-constants.patch │ └── nettle.recipe ├── opencore-amr.recipe ├── opencore-amr │ └── 0001-Fix-include-dir-in-pc-files.patch ├── openh264.recipe ├── openh264 │ ├── 0001-Add-version-suffix.patch │ └── 0002-Remove-fembed-bitcode-for-iOS-build.patch ├── openjpeg.recipe ├── openjpeg │ ├── 0001-Build-shared-and-static-library.patch │ └── 0002-Set-INSTALL_NAME_DIR.patch ├── openssl.recipe ├── openssl │ └── 0001-Make-it-possible-to-only-install-libs.patch ├── openwebrtc-girepository.recipe ├── openwebrtc-girepository │ └── disable-python-checks.patch ├── openwebrtc-gst-plugins.recipe ├── openwebrtc-osx-framework.recipe ├── openwebrtc.recipe ├── openwebrtc │ └── Makefile.bundled-shared ├── opus.recipe ├── orc.recipe ├── pango.recipe ├── pixman.recipe ├── pixman │ ├── 0001-Fix-build-on-Android.patch │ └── 0002-Enable-CPU-detection-on-Android.patch ├── sbc.recipe ├── sbc │ ├── 0001-sbc-Use-stdint.h.patch │ └── 0002-Don-t-use-NEON-with-aarch64-on-Clang.patch ├── seed.recipe ├── seed │ └── javascriptcore-osx-ios.pc.patch ├── soundtouch.recipe ├── soundtouch │ ├── 0001-Add-dummy-file-to-make-sure-config-m4-exists.patch │ ├── 0002-Use-STLPORT-on-Android.patch │ ├── 0003-Don-t-build-soundstretch.patch │ ├── 0004-Use-gnustl.patch │ ├── 0005-Fix-soundstretch-linking.patch │ ├── 0006-Fix-pkg-config-file.patch │ ├── 0007-Make-it-compile-on-IOS.patch │ ├── 0008-Fix-compilation-with-clang.patch │ └── 0010-Try-harder-to-generate-Win32-DLLs.patch ├── spandsp.recipe ├── spandsp │ ├── 0001-Don-t-do-a-whereis-which-dance-to-find-which.patch │ ├── 0001-Fix-build-for-windows-using-mingw.patch │ ├── 0001-spandsp-do-not-compile-has_X86FEATURE-symbols.patch │ ├── 0002-Define-LIBSPANDSP_EXPORTS-when-building-the-spandsp-.patch │ └── 0003-Use-BUILT_SOURCES-to-generate-extra-headers.patch ├── speex.recipe ├── taglib.recipe ├── taglib │ ├── 0001-Link-with-correct-STL-on-Android.patch │ └── 0002-Build-a-static-and-non-static-version.patch ├── tiff.recipe ├── tinyalsa.recipe ├── toolchain │ ├── all.recipe │ ├── binutils.recipe │ ├── cloog.recipe │ ├── gcc-core.recipe │ ├── gcc.recipe │ ├── gendef.recipe │ ├── gmp.recipe │ ├── mingw-w64-headers.recipe │ ├── mingw-w64.recipe │ ├── mpc.recipe │ ├── mpfr.recipe │ └── winpthreads.recipe ├── tremor.recipe ├── tremor │ ├── 0001-Prevent-symbol-conflicts.patch │ ├── 0002-Try-fixing-shared-build.patch │ ├── 0003-Map-remaining-symbol-too.patch │ ├── 0004-Fix-build-with-the-Android-NDK-for-x86.patch │ ├── 0005-configure-check-for-machine-endianness.patch │ ├── 0006-tremor-floor-mapping-residue-function-renaming.patch │ ├── 0007-tremor-more-function-renaming.patch │ └── 0008-fix-more-duplicated-symbols.patch ├── vo-aacenc.recipe ├── vsintegration-1.0.recipe ├── wavpack.recipe ├── webrtc-audio-processing.recipe ├── webrtc-audio-processing │ ├── 0000-Add-fix_interlocked_exchange_pointer_win.h.patch │ ├── 0000-Add-sal.h-as-it-s-missing-in-cerbero-mingw.patch │ ├── 0001-build-enforce-linking-with-no-undefined-add-explicit.patch │ ├── 0002-build-Make-sure-files-with-SSE2-code-are-compiled-wi.patch │ ├── 0003-Don-t-include-execinfo.h-for-windows.patch │ ├── 0004-Don-t-use-MSVC-specific-exception-handler-for-MINGW.patch │ ├── 0005-Add-missing-throw-in-destructor-override.patch │ ├── 0006-lrint-is-available-with-mingw.patch │ ├── 0007-Fix-case-sensitivity-issue-with-MinGW-cross-build.patch │ ├── 0008-Add-missing-windows-specific-headers.patch │ ├── 0009-Fix-build-on-win64.patch │ ├── 0010-Add-cerbero-gnustl-support-for-Android.patch │ ├── 0011-Disable-backtrace-on-android.patch │ ├── 0012-Don-t-blindly-link-to-pthread.patch │ ├── 0013-Add-required-define-for-Windows.patch │ ├── 0014-Properly-select-the-right-system-wrappers.patch │ ├── 0015-Fix-case-sensitivity-in-windows-include.patch │ ├── 0016-Define-MSVC-_WIN32-so-we-can-build-on-mingw.patch │ ├── 0017-Add-missing-windows-conditions-variable.patch │ ├── 0018-Protect-against-unsupported-CPU-types.patch │ ├── 0019-osx-Fix-type-OS_FLAGS-instead-of-OS_CFLAGS.patch │ ├── 0020-Sync-defines-and-libs-with-build.gn.patch │ ├── 0021-Use-no-undefined-to-support-both-clang-and-gcc.patch │ ├── 0022-Re-add-pthread-linking-on-linux.patch │ └── 0023-Add-ARM-64bit-support.patch ├── winpthreads-runtime.recipe ├── x264.recipe ├── zlib.recipe └── zlib │ └── 0001-win32-fix-dll-name.patch ├── setup.py ├── test ├── __init__.py ├── pkgconfig │ ├── glib-2.0.pc │ ├── gmodule-2.0.pc │ ├── gmodule-no-export-2.0.pc │ ├── gobject-2.0.pc │ ├── gstreamer-0.10.pc │ ├── gthread-2.0.pc │ └── libxml-2.0.pc ├── test_build_common.py ├── test_cerbero_build_build.py ├── test_cerbero_build_cookbook.py ├── test_cerbero_build_filesprovider.py ├── test_cerbero_build_recipe.py ├── test_cerbero_config.py ├── test_cerbero_ide_pkgconfig.py ├── test_cerbero_ide_xcode_xcconfig.py ├── test_cerbero_packages_disttarball.py ├── test_cerbero_packages_linux.py ├── test_cerbero_packages_osx_info_plist.py ├── test_cerbero_packages_package.py ├── test_cerbero_packages_packagemaker.py ├── test_cerbero_packages_packagesstore.py ├── test_cerbero_packages_pmdoc.py ├── test_cerbero_packages_wix.py ├── test_cerbero_tools_osxuniversalgenerator.py ├── test_common.py └── test_packages_common.py ├── tools ├── bootstrap-debian.sh ├── bootstrap-redhat.sh ├── build-toolchains.sh ├── cerbero.cbc.template ├── certdata2pem.py ├── chroot.sh └── show-coverage.py └── update-gst.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /MANIFEST.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/MANIFEST.in.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/README.md -------------------------------------------------------------------------------- /cerbero-uninstalled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero-uninstalled -------------------------------------------------------------------------------- /cerbero/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/__init__.py -------------------------------------------------------------------------------- /cerbero/bootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/bootstrap/__init__.py -------------------------------------------------------------------------------- /cerbero/bootstrap/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/bootstrap/android.py -------------------------------------------------------------------------------- /cerbero/bootstrap/bootstrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/bootstrap/bootstrapper.py -------------------------------------------------------------------------------- /cerbero/bootstrap/build_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/bootstrap/build_tools.py -------------------------------------------------------------------------------- /cerbero/bootstrap/ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/bootstrap/ios.py -------------------------------------------------------------------------------- /cerbero/bootstrap/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/bootstrap/linux.py -------------------------------------------------------------------------------- /cerbero/bootstrap/osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/bootstrap/osx.py -------------------------------------------------------------------------------- /cerbero/bootstrap/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/bootstrap/windows.py -------------------------------------------------------------------------------- /cerbero/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/build/__init__.py -------------------------------------------------------------------------------- /cerbero/build/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/build/build.py -------------------------------------------------------------------------------- /cerbero/build/cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/build/cookbook.py -------------------------------------------------------------------------------- /cerbero/build/filesprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/build/filesprovider.py -------------------------------------------------------------------------------- /cerbero/build/oven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/build/oven.py -------------------------------------------------------------------------------- /cerbero/build/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/build/recipe.py -------------------------------------------------------------------------------- /cerbero/build/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/build/source.py -------------------------------------------------------------------------------- /cerbero/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/__init__.py -------------------------------------------------------------------------------- /cerbero/commands/add_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/add_package.py -------------------------------------------------------------------------------- /cerbero/commands/add_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/add_recipe.py -------------------------------------------------------------------------------- /cerbero/commands/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/bootstrap.py -------------------------------------------------------------------------------- /cerbero/commands/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/build.py -------------------------------------------------------------------------------- /cerbero/commands/bundlesource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/bundlesource.py -------------------------------------------------------------------------------- /cerbero/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/check.py -------------------------------------------------------------------------------- /cerbero/commands/checkpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/checkpackage.py -------------------------------------------------------------------------------- /cerbero/commands/cleanone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/cleanone.py -------------------------------------------------------------------------------- /cerbero/commands/debugpackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/debugpackages.py -------------------------------------------------------------------------------- /cerbero/commands/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/deps.py -------------------------------------------------------------------------------- /cerbero/commands/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/fetch.py -------------------------------------------------------------------------------- /cerbero/commands/genlibfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/genlibfiles.py -------------------------------------------------------------------------------- /cerbero/commands/gensdkshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/gensdkshell.py -------------------------------------------------------------------------------- /cerbero/commands/genvsprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/genvsprops.py -------------------------------------------------------------------------------- /cerbero/commands/genxcconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/genxcconfig.py -------------------------------------------------------------------------------- /cerbero/commands/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/info.py -------------------------------------------------------------------------------- /cerbero/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/list.py -------------------------------------------------------------------------------- /cerbero/commands/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/package.py -------------------------------------------------------------------------------- /cerbero/commands/rdeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/rdeps.py -------------------------------------------------------------------------------- /cerbero/commands/runit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/runit.py -------------------------------------------------------------------------------- /cerbero/commands/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/shell.py -------------------------------------------------------------------------------- /cerbero/commands/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/tag.py -------------------------------------------------------------------------------- /cerbero/commands/wipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/commands/wipe.py -------------------------------------------------------------------------------- /cerbero/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/config.py -------------------------------------------------------------------------------- /cerbero/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/enums.py -------------------------------------------------------------------------------- /cerbero/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/errors.py -------------------------------------------------------------------------------- /cerbero/hacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/hacks.py -------------------------------------------------------------------------------- /cerbero/ide/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/__init__.py -------------------------------------------------------------------------------- /cerbero/ide/pkgconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/pkgconfig.py -------------------------------------------------------------------------------- /cerbero/ide/vs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/vs/__init__.py -------------------------------------------------------------------------------- /cerbero/ide/vs/genlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/vs/genlib.py -------------------------------------------------------------------------------- /cerbero/ide/vs/pkgconfig2vsprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/vs/pkgconfig2vsprops.py -------------------------------------------------------------------------------- /cerbero/ide/vs/props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/vs/props.py -------------------------------------------------------------------------------- /cerbero/ide/vs/vsprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/vs/vsprops.py -------------------------------------------------------------------------------- /cerbero/ide/xcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/xcode/__init__.py -------------------------------------------------------------------------------- /cerbero/ide/xcode/fwlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/xcode/fwlib.py -------------------------------------------------------------------------------- /cerbero/ide/xcode/xcconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/ide/xcode/xcconfig.py -------------------------------------------------------------------------------- /cerbero/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/main.py -------------------------------------------------------------------------------- /cerbero/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/__init__.py -------------------------------------------------------------------------------- /cerbero/packages/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/android.py -------------------------------------------------------------------------------- /cerbero/packages/debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/debian.py -------------------------------------------------------------------------------- /cerbero/packages/disttarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/disttarball.py -------------------------------------------------------------------------------- /cerbero/packages/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/linux.py -------------------------------------------------------------------------------- /cerbero/packages/osx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/osx/__init__.py -------------------------------------------------------------------------------- /cerbero/packages/osx/buildtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/osx/buildtools.py -------------------------------------------------------------------------------- /cerbero/packages/osx/bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/osx/bundles.py -------------------------------------------------------------------------------- /cerbero/packages/osx/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/osx/distribution.py -------------------------------------------------------------------------------- /cerbero/packages/osx/info_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/osx/info_plist.py -------------------------------------------------------------------------------- /cerbero/packages/osx/packager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/osx/packager.py -------------------------------------------------------------------------------- /cerbero/packages/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/package.py -------------------------------------------------------------------------------- /cerbero/packages/packager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/packager.py -------------------------------------------------------------------------------- /cerbero/packages/packagesstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/packagesstore.py -------------------------------------------------------------------------------- /cerbero/packages/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/rpm.py -------------------------------------------------------------------------------- /cerbero/packages/wix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/wix.py -------------------------------------------------------------------------------- /cerbero/packages/wix_packager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/packages/wix_packager.py -------------------------------------------------------------------------------- /cerbero/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/tools/__init__.py -------------------------------------------------------------------------------- /cerbero/tools/depstracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/tools/depstracker.py -------------------------------------------------------------------------------- /cerbero/tools/libtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/tools/libtool.py -------------------------------------------------------------------------------- /cerbero/tools/osxrelocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/tools/osxrelocator.py -------------------------------------------------------------------------------- /cerbero/tools/osxuniversalgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/tools/osxuniversalgenerator.py -------------------------------------------------------------------------------- /cerbero/tools/pkgconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/tools/pkgconfig.py -------------------------------------------------------------------------------- /cerbero/tools/strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/tools/strip.py -------------------------------------------------------------------------------- /cerbero/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/utils/__init__.py -------------------------------------------------------------------------------- /cerbero/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/utils/git.py -------------------------------------------------------------------------------- /cerbero/utils/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/utils/messages.py -------------------------------------------------------------------------------- /cerbero/utils/msbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/utils/msbuild.py -------------------------------------------------------------------------------- /cerbero/utils/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/utils/shell.py -------------------------------------------------------------------------------- /cerbero/utils/svn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/cerbero/utils/svn.py -------------------------------------------------------------------------------- /config/android.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/android.config -------------------------------------------------------------------------------- /config/build-tools.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/build-tools.cbc -------------------------------------------------------------------------------- /config/cross-android-arm64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-android-arm64.cbc -------------------------------------------------------------------------------- /config/cross-android-armv7.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-android-armv7.cbc -------------------------------------------------------------------------------- /config/cross-android-universal.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-android-universal.cbc -------------------------------------------------------------------------------- /config/cross-android-x86-64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-android-x86-64.cbc -------------------------------------------------------------------------------- /config/cross-android-x86.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-android-x86.cbc -------------------------------------------------------------------------------- /config/cross-android.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-android.cbc -------------------------------------------------------------------------------- /config/cross-ios-arm64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-ios-arm64.cbc -------------------------------------------------------------------------------- /config/cross-ios-arm7.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-ios-arm7.cbc -------------------------------------------------------------------------------- /config/cross-ios-arm7s.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-ios-arm7s.cbc -------------------------------------------------------------------------------- /config/cross-ios-universal.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-ios-universal.cbc -------------------------------------------------------------------------------- /config/cross-ios-x86-64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-ios-x86-64.cbc -------------------------------------------------------------------------------- /config/cross-ios-x86.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-ios-x86.cbc -------------------------------------------------------------------------------- /config/cross-lin-arm.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-lin-arm.cbc -------------------------------------------------------------------------------- /config/cross-lin-x86.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-lin-x86.cbc -------------------------------------------------------------------------------- /config/cross-win32.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-win32.cbc -------------------------------------------------------------------------------- /config/cross-win64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/cross-win64.cbc -------------------------------------------------------------------------------- /config/darwin.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/darwin.config -------------------------------------------------------------------------------- /config/ios.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/ios.config -------------------------------------------------------------------------------- /config/linux.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/linux.cbc -------------------------------------------------------------------------------- /config/linux.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/linux.config -------------------------------------------------------------------------------- /config/mingw-w32-lin.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/mingw-w32-lin.cbc -------------------------------------------------------------------------------- /config/mingw-w32-win.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/mingw-w32-win.cbc -------------------------------------------------------------------------------- /config/mingw-w64-lin.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/mingw-w64-lin.cbc -------------------------------------------------------------------------------- /config/mingw-w64-win.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/mingw-w64-win.cbc -------------------------------------------------------------------------------- /config/osx-universal.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/osx-universal.cbc -------------------------------------------------------------------------------- /config/osx-x86-64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/osx-x86-64.cbc -------------------------------------------------------------------------------- /config/win32.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/win32.cbc -------------------------------------------------------------------------------- /config/win64.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/win64.cbc -------------------------------------------------------------------------------- /config/windows.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/config/windows.config -------------------------------------------------------------------------------- /create_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/create_tarball.sh -------------------------------------------------------------------------------- /data/autotools/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/autotools/config.guess -------------------------------------------------------------------------------- /data/autotools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/autotools/config.sub -------------------------------------------------------------------------------- /data/ndk-build/GStreamer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/GStreamer.java -------------------------------------------------------------------------------- /data/ndk-build/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/fontconfig/fonts.conf -------------------------------------------------------------------------------- /data/ndk-build/fontconfig/fonts/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/fontconfig/fonts/Ubuntu-R.ttf -------------------------------------------------------------------------------- /data/ndk-build/gstreamer-1.0.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/gstreamer-1.0.mk -------------------------------------------------------------------------------- /data/ndk-build/gstreamer_android-1.0.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/gstreamer_android-1.0.c.in -------------------------------------------------------------------------------- /data/ndk-build/gstreamer_prebuilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/gstreamer_prebuilt.mk -------------------------------------------------------------------------------- /data/ndk-build/tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/tools.mk -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/tools/windows/libiconv2.dll -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/tools/windows/libintl3.dll -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/pkg-config.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/tools/windows/pkg-config.exe -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/tools/windows/regex2.dll -------------------------------------------------------------------------------- /data/ndk-build/tools/windows/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/ndk-build/tools/windows/sed.exe -------------------------------------------------------------------------------- /data/vs-1.0/gst-template/Scripts/1033/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/gst-template/Scripts/1033/default.js -------------------------------------------------------------------------------- /data/vs-1.0/gst-template/gst-template.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/gst-template/gst-template.vcxproj -------------------------------------------------------------------------------- /data/vs-1.0/msvc/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/msvc/common.props -------------------------------------------------------------------------------- /data/vs-1.0/msvc/config.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/msvc/config.props -------------------------------------------------------------------------------- /data/vs-1.0/msvc/msvcrt.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/msvc/msvcrt.props -------------------------------------------------------------------------------- /data/vs-1.0/msvc/release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/msvc/release.props -------------------------------------------------------------------------------- /data/vs-1.0/msvc/x86.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/msvc/x86.props -------------------------------------------------------------------------------- /data/vs-1.0/msvc/x86_64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/msvc/x86_64.props -------------------------------------------------------------------------------- /data/vs-1.0/wizard/gst-sdk-template.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/wizard/gst-sdk-template.ico -------------------------------------------------------------------------------- /data/vs-1.0/wizard/gst-sdk-template.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/wizard/gst-sdk-template.vsdir -------------------------------------------------------------------------------- /data/vs-1.0/wizard/gst-sdk-template.vsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs-1.0/wizard/gst-sdk-template.vsz -------------------------------------------------------------------------------- /data/vs/gst-sdk-template/Scripts/1033/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/gst-sdk-template/Scripts/1033/default.js -------------------------------------------------------------------------------- /data/vs/gst-sdk-template/gst-sdk-template.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/gst-sdk-template/gst-sdk-template.vcxproj -------------------------------------------------------------------------------- /data/vs/msvc/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/msvc/common.props -------------------------------------------------------------------------------- /data/vs/msvc/config.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/msvc/config.props -------------------------------------------------------------------------------- /data/vs/msvc/msvcrt.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/msvc/msvcrt.props -------------------------------------------------------------------------------- /data/vs/msvc/release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/msvc/release.props -------------------------------------------------------------------------------- /data/vs/msvc/x86.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/msvc/x86.props -------------------------------------------------------------------------------- /data/vs/msvc/x86_64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/msvc/x86_64.props -------------------------------------------------------------------------------- /data/vs/wizard/gst-sdk-template.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/wizard/gst-sdk-template.ico -------------------------------------------------------------------------------- /data/vs/wizard/gst-sdk-template.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/wizard/gst-sdk-template.vsdir -------------------------------------------------------------------------------- /data/vs/wizard/gst-sdk-template.vsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/vs/wizard/gst-sdk-template.vsz -------------------------------------------------------------------------------- /data/wix/Config.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/wix/Config.wxi -------------------------------------------------------------------------------- /data/wix/installer.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/wix/installer.wxs -------------------------------------------------------------------------------- /data/wix/properties.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/wix/properties.wxi -------------------------------------------------------------------------------- /data/wix/ui.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/wix/ui.wxs -------------------------------------------------------------------------------- /data/wix/utils.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/wix/utils.wxs -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/fontconfig/fonts.conf -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/fontconfig/fonts/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/fontconfig/fonts/Ubuntu-R.ttf -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/gst_ios_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/gst_ios_init.h -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/gst_ios_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/gst_ios_init.m -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Base.xctemplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Base.xctemplate/main.m -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Empty Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Empty Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Master-Detail Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Master-Detail Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Page-Based Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Page-Based Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Single View Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Single View Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Tabbed Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Tabbed Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /data/xcode/templates/ios/GStreamer Utility Application.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/data/xcode/templates/ios/GStreamer Utility Application.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /packages/base-crypto.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/base-crypto.package -------------------------------------------------------------------------------- /packages/base-system-1.0.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/base-system-1.0.package -------------------------------------------------------------------------------- /packages/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/custom.py -------------------------------------------------------------------------------- /packages/gstreamer-1.0-capture.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-capture.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-codecs-gpl.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-codecs-gpl.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-codecs-restricted.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-codecs-restricted.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-codecs.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-codecs.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-core.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-core.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-devtools.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-devtools.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-dvd.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-dvd.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-editing.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-editing.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-effects.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-effects.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-encoding.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-encoding.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-libav.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-libav.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-net-restricted.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-net-restricted.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-net.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-net.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-playback.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-playback.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-system.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-system.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-visualizers.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-visualizers.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0-vs-templates.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0-vs-templates.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/background.png -------------------------------------------------------------------------------- /packages/gstreamer-1.0/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/banner.bmp -------------------------------------------------------------------------------- /packages/gstreamer-1.0/dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/dialog.bmp -------------------------------------------------------------------------------- /packages/gstreamer-1.0/gstreamer-1.0.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/gstreamer-1.0.package -------------------------------------------------------------------------------- /packages/gstreamer-1.0/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/icon.ico -------------------------------------------------------------------------------- /packages/gstreamer-1.0/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/license.rtf -------------------------------------------------------------------------------- /packages/gstreamer-1.0/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/license.txt -------------------------------------------------------------------------------- /packages/gstreamer-1.0/license_unwrapped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/license_unwrapped.txt -------------------------------------------------------------------------------- /packages/gstreamer-1.0/post_install_ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/gstreamer-1.0/post_install_ios -------------------------------------------------------------------------------- /packages/openwebrtc-base.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/openwebrtc-base.package -------------------------------------------------------------------------------- /packages/openwebrtc/openwebrtc.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/openwebrtc/openwebrtc.package -------------------------------------------------------------------------------- /packages/vsintegration-1.0.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/packages/vsintegration-1.0.package -------------------------------------------------------------------------------- /recipes/a52dec.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/a52dec.recipe -------------------------------------------------------------------------------- /recipes/a52dec/0002-Fix-link-cross-compiling-to-x86-in-darwin-platforms.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/a52dec/0002-Fix-link-cross-compiling-to-x86-in-darwin-platforms.patch -------------------------------------------------------------------------------- /recipes/a52dec/0003-Disable-AC_C_ALWAYS_INLINE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/a52dec/0003-Disable-AC_C_ALWAYS_INLINE.patch -------------------------------------------------------------------------------- /recipes/a52dec/0004-configure-let-us-decide-if-we-really-want-PIC-or-not.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/a52dec/0004-configure-let-us-decide-if-we-really-want-PIC-or-not.patch -------------------------------------------------------------------------------- /recipes/bionic-fixup.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/bionic-fixup.recipe -------------------------------------------------------------------------------- /recipes/bionic-fixup/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/bionic-fixup/error.h -------------------------------------------------------------------------------- /recipes/build-tools/android-sdk.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/android-sdk.recipe -------------------------------------------------------------------------------- /recipes/build-tools/autoconf.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/autoconf.recipe -------------------------------------------------------------------------------- /recipes/build-tools/automake.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/automake.recipe -------------------------------------------------------------------------------- /recipes/build-tools/bison.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/bison.recipe -------------------------------------------------------------------------------- /recipes/build-tools/cmake.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/cmake.recipe -------------------------------------------------------------------------------- /recipes/build-tools/flex.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/flex.recipe -------------------------------------------------------------------------------- /recipes/build-tools/flex/flex-configure.ac-Use-gettext-0.19.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/flex/flex-configure.ac-Use-gettext-0.19.patch -------------------------------------------------------------------------------- /recipes/build-tools/flex/flex-prevent-to-build-doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/flex/flex-prevent-to-build-doc.patch -------------------------------------------------------------------------------- /recipes/build-tools/gas-preprocessor.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gas-preprocessor.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gettext-m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gettext-m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gettext-tools.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gettext-tools.recipe -------------------------------------------------------------------------------- /recipes/build-tools/glib-tools.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/glib-tools.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gnome-common.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gnome-common.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gnu-sed.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gnu-sed.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gobject-introspection-m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gobject-introspection-m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gobject-introspection.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gobject-introspection.recipe -------------------------------------------------------------------------------- /recipes/build-tools/gperf-0001-Don-t-override-environment-AR.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gperf-0001-Don-t-override-environment-AR.patch -------------------------------------------------------------------------------- /recipes/build-tools/gperf.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/gperf.recipe -------------------------------------------------------------------------------- /recipes/build-tools/intltool-m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/intltool-m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/intltool.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/intltool.recipe -------------------------------------------------------------------------------- /recipes/build-tools/libtool.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/libtool.recipe -------------------------------------------------------------------------------- /recipes/build-tools/libtool/0001-Add-support-for-weak_framework-linking-on-Darwin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/libtool/0001-Add-support-for-weak_framework-linking-on-Darwin.patch -------------------------------------------------------------------------------- /recipes/build-tools/m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/meson.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/meson.recipe -------------------------------------------------------------------------------- /recipes/build-tools/mingw-regex.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/mingw-regex.recipe -------------------------------------------------------------------------------- /recipes/build-tools/mingw-regex/0001-Fix-compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/mingw-regex/0001-Fix-compilation.patch -------------------------------------------------------------------------------- /recipes/build-tools/ninja.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/ninja.recipe -------------------------------------------------------------------------------- /recipes/build-tools/orc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/orc.recipe -------------------------------------------------------------------------------- /recipes/build-tools/pkg-config.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/pkg-config.recipe -------------------------------------------------------------------------------- /recipes/build-tools/vala-m4.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/vala-m4.recipe -------------------------------------------------------------------------------- /recipes/build-tools/xz.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/xz.recipe -------------------------------------------------------------------------------- /recipes/build-tools/yasm.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/build-tools/yasm.recipe -------------------------------------------------------------------------------- /recipes/bzip2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/bzip2.recipe -------------------------------------------------------------------------------- /recipes/bzip2/0001-Fix-Makefiles-and-add-support-for-Windows-and-OS-X.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/bzip2/0001-Fix-Makefiles-and-add-support-for-Windows-and-OS-X.patch -------------------------------------------------------------------------------- /recipes/ca-certificates.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/ca-certificates.recipe -------------------------------------------------------------------------------- /recipes/ca-certificates/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/ca-certificates/ca-certificates.crt -------------------------------------------------------------------------------- /recipes/cairo.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/cairo.recipe -------------------------------------------------------------------------------- /recipes/cairo/0001-Disable-building-of-the-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/cairo/0001-Disable-building-of-the-tests.patch -------------------------------------------------------------------------------- /recipes/cairo/0001-Fix-compilation-with-Android-s-bionic-libc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/cairo/0001-Fix-compilation-with-Android-s-bionic-libc.patch -------------------------------------------------------------------------------- /recipes/cairo/0001-configure-Disable-LTO-as-it-breaks-at-least-on-Andro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/cairo/0001-configure-Disable-LTO-as-it-breaks-at-least-on-Andro.patch -------------------------------------------------------------------------------- /recipes/cdparanoia.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/cdparanoia.recipe -------------------------------------------------------------------------------- /recipes/cdparanoia/0001-configure.in-Always-use-AC_PROG_CC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/cdparanoia/0001-configure.in-Always-use-AC_PROG_CC.patch -------------------------------------------------------------------------------- /recipes/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/custom.py -------------------------------------------------------------------------------- /recipes/docbook-xml.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/docbook-xml.recipe -------------------------------------------------------------------------------- /recipes/docbook-xsl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/docbook-xsl.recipe -------------------------------------------------------------------------------- /recipes/expat.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/expat.recipe -------------------------------------------------------------------------------- /recipes/faad2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/faad2.recipe -------------------------------------------------------------------------------- /recipes/faad2/0001-Fix-redefinition-of-off_t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/faad2/0001-Fix-redefinition-of-off_t.patch -------------------------------------------------------------------------------- /recipes/faad2/0002-Add-no-undefined-on-windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/faad2/0002-Add-no-undefined-on-windows.patch -------------------------------------------------------------------------------- /recipes/flac.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/flac.recipe -------------------------------------------------------------------------------- /recipes/fontconfig.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/fontconfig.recipe -------------------------------------------------------------------------------- /recipes/fontconfig/0001-Do-not-build-tests-on-windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/fontconfig/0001-Do-not-build-tests-on-windows.patch -------------------------------------------------------------------------------- /recipes/fontconfig/0001-Don-t-use-_mktemp_s-which-is-not-available-in-XP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/fontconfig/0001-Don-t-use-_mktemp_s-which-is-not-available-in-XP.patch -------------------------------------------------------------------------------- /recipes/fontconfig/0003-configure-Allow-static-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/fontconfig/0003-configure-Allow-static-build.patch -------------------------------------------------------------------------------- /recipes/freetype.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/freetype.recipe -------------------------------------------------------------------------------- /recipes/frei0r-plugins/0001-Fix-autoreconf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/frei0r-plugins/0001-Fix-autoreconf.patch -------------------------------------------------------------------------------- /recipes/freior-plugins.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/freior-plugins.recipe -------------------------------------------------------------------------------- /recipes/fribidi.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/fribidi.recipe -------------------------------------------------------------------------------- /recipes/fribidi/0001-fribidi.def-Include-all-required-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/fribidi/0001-fribidi.def-Include-all-required-symbols.patch -------------------------------------------------------------------------------- /recipes/fribidi/0002-fribidi-disable-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/fribidi/0002-fribidi-disable-docs.patch -------------------------------------------------------------------------------- /recipes/gdk-pixbuf.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gdk-pixbuf.recipe -------------------------------------------------------------------------------- /recipes/gdk-pixbuf/0001-thumbnailer-Add-EXEEXT-to-the-the-gdk-pixbuf-print-m.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gdk-pixbuf/0001-thumbnailer-Add-EXEEXT-to-the-the-gdk-pixbuf-print-m.patch -------------------------------------------------------------------------------- /recipes/gettext.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gettext.recipe -------------------------------------------------------------------------------- /recipes/gettext/0001-Fix-linker-error-redefinition-of-vasprintf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gettext/0001-Fix-linker-error-redefinition-of-vasprintf.patch -------------------------------------------------------------------------------- /recipes/gettext/0001-Undefine-__USE_MINGW_ANSI_STDIO-as-otherwise-stdio.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gettext/0001-Undefine-__USE_MINGW_ANSI_STDIO-as-otherwise-stdio.h.patch -------------------------------------------------------------------------------- /recipes/glib-networking-static.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib-networking-static.recipe -------------------------------------------------------------------------------- /recipes/glib-networking.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib-networking.recipe -------------------------------------------------------------------------------- /recipes/glib-networking/0001-Add-support-for-static-modules.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib-networking/0001-Add-support-for-static-modules.patch -------------------------------------------------------------------------------- /recipes/glib-networking/0002-Get-the-CA-certificate-path-from-the-environment-var.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib-networking/0002-Get-the-CA-certificate-path-from-the-environment-var.patch -------------------------------------------------------------------------------- /recipes/glib-networking/0003-gnutls-Use-db-relative-to-libglib-2.0-if-needed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib-networking/0003-gnutls-Use-db-relative-to-libglib-2.0-if-needed.patch -------------------------------------------------------------------------------- /recipes/glib-networking/0004-gtlsbackend-gnutls-Get-anchor-file-relative-to-libgi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib-networking/0004-gtlsbackend-gnutls-Get-anchor-file-relative-to-libgi.patch -------------------------------------------------------------------------------- /recipes/glib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib.recipe -------------------------------------------------------------------------------- /recipes/glib/0001-Let-user-disable-Cocoa-and-Carbon-support-on-demand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0001-Let-user-disable-Cocoa-and-Carbon-support-on-demand.patch -------------------------------------------------------------------------------- /recipes/glib/0002-Optionally-revert-to-the-old-pre-2.28-URI-handler-co.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0002-Optionally-revert-to-the-old-pre-2.28-URI-handler-co.patch -------------------------------------------------------------------------------- /recipes/glib/0003-Add-support-for-loading-GIO-modules-from-the-distro-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0003-Add-support-for-loading-GIO-modules-from-the-distro-.patch -------------------------------------------------------------------------------- /recipes/glib/0004-Allow-for-a-second-distro-GIO-module-path-as-used-on.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0004-Allow-for-a-second-distro-GIO-module-path-as-used-on.patch -------------------------------------------------------------------------------- /recipes/glib/0005-Blacklist-the-bamf-GIO-module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0005-Blacklist-the-bamf-GIO-module.patch -------------------------------------------------------------------------------- /recipes/glib/0006-giomodule-do-not-try-to-load-modules-from-gio-module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0006-giomodule-do-not-try-to-load-modules-from-gio-module.patch -------------------------------------------------------------------------------- /recipes/glib/0008-gdbus-codgen-Use-a-proper-shebang-in-the-generator.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0008-gdbus-codgen-Use-a-proper-shebang-in-the-generator.patch -------------------------------------------------------------------------------- /recipes/glib/0009-Unhide-_g_io_modules_ensure_extension_points_registe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0009-Unhide-_g_io_modules_ensure_extension_points_registe.patch -------------------------------------------------------------------------------- /recipes/glib/0015-Implementation-of-Cocoa-event-loop-integration-in-GM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0015-Implementation-of-Cocoa-event-loop-integration-in-GM.patch -------------------------------------------------------------------------------- /recipes/glib/0016-gmessages-Fix-compilation-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0016-gmessages-Fix-compilation-on-Android.patch -------------------------------------------------------------------------------- /recipes/glib/0017-GSocket-Fix-race-conditions-on-Win32-if-multiple-thr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0017-GSocket-Fix-race-conditions-on-Win32-if-multiple-thr.patch -------------------------------------------------------------------------------- /recipes/glib/0018-Check-for-RTLD_LAZY-and-others-in-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0018-Check-for-RTLD_LAZY-and-others-in-configure.patch -------------------------------------------------------------------------------- /recipes/glib/0018-Don-t-use-RTLD_DEFAULT-on-Android-for-g_module_self.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0018-Don-t-use-RTLD_DEFAULT-on-Android-for-g_module_self.patch -------------------------------------------------------------------------------- /recipes/glib/0019-gmain-Fix-erroneous-if-condition-when-dtrace-is-disa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/glib/0019-gmain-Fix-erroneous-if-condition-when-dtrace-is-disa.patch -------------------------------------------------------------------------------- /recipes/gmp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gmp.recipe -------------------------------------------------------------------------------- /recipes/gnome-js-common.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gnome-js-common.recipe -------------------------------------------------------------------------------- /recipes/gnustl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gnustl.recipe -------------------------------------------------------------------------------- /recipes/gnutls.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gnutls.recipe -------------------------------------------------------------------------------- /recipes/gnutls/0001-Undefine-__USE_MINGW_ANSI_STDIO-as-otherwise-stdio.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gnutls/0001-Undefine-__USE_MINGW_ANSI_STDIO-as-otherwise-stdio.h.patch -------------------------------------------------------------------------------- /recipes/gnutls/0003-Disable-ncrypt-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gnutls/0003-Disable-ncrypt-support.patch -------------------------------------------------------------------------------- /recipes/graphene.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/graphene.recipe -------------------------------------------------------------------------------- /recipes/graphene/0001-simd4f-Fix-a-compilation-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/graphene/0001-simd4f-Fix-a-compilation-error.patch -------------------------------------------------------------------------------- /recipes/gst-android-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-android-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-editing-services-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-editing-services-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-libav-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-libav-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-bad-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-plugins-bad-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-base-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-plugins-base-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-good-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-plugins-good-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-plugins-ugly-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-plugins-ugly-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-rtsp-server-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-rtsp-server-1.0.recipe -------------------------------------------------------------------------------- /recipes/gst-shell.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-shell.recipe -------------------------------------------------------------------------------- /recipes/gst-transcoder.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-transcoder.recipe -------------------------------------------------------------------------------- /recipes/gst-validate.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gst-validate.recipe -------------------------------------------------------------------------------- /recipes/gstreamer-1.0-osx-framework.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gstreamer-1.0-osx-framework.recipe -------------------------------------------------------------------------------- /recipes/gstreamer-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gstreamer-1.0.recipe -------------------------------------------------------------------------------- /recipes/gstreamer-ios-templates.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gstreamer-ios-templates.recipe -------------------------------------------------------------------------------- /recipes/gtk-doc-lite.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gtk-doc-lite.recipe -------------------------------------------------------------------------------- /recipes/gtk-osx-docbook.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/gtk-osx-docbook.recipe -------------------------------------------------------------------------------- /recipes/harfbuzz.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/harfbuzz.recipe -------------------------------------------------------------------------------- /recipes/icu.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/icu.recipe -------------------------------------------------------------------------------- /recipes/itstool.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/itstool.recipe -------------------------------------------------------------------------------- /recipes/javascriptcoregtk.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/javascriptcoregtk.recipe -------------------------------------------------------------------------------- /recipes/javascriptcoregtk/execinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/javascriptcoregtk/execinfo.h -------------------------------------------------------------------------------- /recipes/json-glib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/json-glib.recipe -------------------------------------------------------------------------------- /recipes/json-glib/0001-Don-t-override-our-own-ACLOCAL_FLAGS-but-append-them.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/json-glib/0001-Don-t-override-our-own-ACLOCAL_FLAGS-but-append-them.patch -------------------------------------------------------------------------------- /recipes/lame.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/lame.recipe -------------------------------------------------------------------------------- /recipes/lame/0001-Make-lame-work-with-auto-1.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/lame/0001-Make-lame-work-with-auto-1.12.patch -------------------------------------------------------------------------------- /recipes/libass.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libass.recipe -------------------------------------------------------------------------------- /recipes/libass/0001-directwrite-drop-SAL-annotations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libass/0001-directwrite-drop-SAL-annotations.patch -------------------------------------------------------------------------------- /recipes/libcroco.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libcroco.recipe -------------------------------------------------------------------------------- /recipes/libdca.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdca.recipe -------------------------------------------------------------------------------- /recipes/libdca/0001-Disable-AC_C_ALWAYS_INLINE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdca/0001-Disable-AC_C_ALWAYS_INLINE.patch -------------------------------------------------------------------------------- /recipes/libdv.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv.recipe -------------------------------------------------------------------------------- /recipes/libdv/0001-Check-properly-for-sched_setscheduler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0001-Check-properly-for-sched_setscheduler.patch -------------------------------------------------------------------------------- /recipes/libdv/0003-Don-t-build-test-programs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0003-Don-t-build-test-programs.patch -------------------------------------------------------------------------------- /recipes/libdv/0004-Fix-compilation-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0004-Fix-compilation-on-Android.patch -------------------------------------------------------------------------------- /recipes/libdv/0005-Fix-compilation-on-Windows-some-more.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0005-Fix-compilation-on-Windows-some-more.patch -------------------------------------------------------------------------------- /recipes/libdv/0006-Add-the-pthread-libs-to-pkg-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0006-Add-the-pthread-libs-to-pkg-config.patch -------------------------------------------------------------------------------- /recipes/libdv/0007-Don-t-require-libsdl-to-be-installed-for-autoreconf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0007-Don-t-require-libsdl-to-be-installed-for-autoreconf.patch -------------------------------------------------------------------------------- /recipes/libdv/0012-Build-a-DLL-on-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0012-Build-a-DLL-on-Windows.patch -------------------------------------------------------------------------------- /recipes/libdv/0013-Fix-endianess-detection-with-mingw-w64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0013-Fix-endianess-detection-with-mingw-w64.patch -------------------------------------------------------------------------------- /recipes/libdv/0014-libdv-fix-build-of-gasmoff-after-autoreconf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdv/0014-libdv-fix-build-of-gasmoff-after-autoreconf.patch -------------------------------------------------------------------------------- /recipes/libdvdnav.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdvdnav.recipe -------------------------------------------------------------------------------- /recipes/libdvdnav/0001-Fix-linking-in-windows-compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdvdnav/0001-Fix-linking-in-windows-compilation.patch -------------------------------------------------------------------------------- /recipes/libdvdnav/0002-Build-DLLs-on-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdvdnav/0002-Build-DLLs-on-Windows.patch -------------------------------------------------------------------------------- /recipes/libdvdread.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdvdread.recipe -------------------------------------------------------------------------------- /recipes/libdvdread/0001-Fix-compilation-on-Windows-by-including-files-with-t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdvdread/0001-Fix-compilation-on-Windows-by-including-files-with-t.patch -------------------------------------------------------------------------------- /recipes/libdvdread/0002-Build-DLLs-on-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libdvdread/0002-Build-DLLs-on-Windows.patch -------------------------------------------------------------------------------- /recipes/libffi.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libffi.recipe -------------------------------------------------------------------------------- /recipes/libffi/0001-libffi-Don-t-be-smart-about-toolexeclibdir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libffi/0001-libffi-Don-t-be-smart-about-toolexeclibdir.patch -------------------------------------------------------------------------------- /recipes/libiconv.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libiconv.recipe -------------------------------------------------------------------------------- /recipes/libiconv/0001-Use-correct-autotools-versions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libiconv/0001-Use-correct-autotools-versions.patch -------------------------------------------------------------------------------- /recipes/libiconv/0002-Add-support-for-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libiconv/0002-Add-support-for-Android.patch -------------------------------------------------------------------------------- /recipes/libiconv/0003-stdint-fix-build-with-Android-s-Bionic-fox-x86.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libiconv/0003-stdint-fix-build-with-Android-s-Bionic-fox-x86.patch -------------------------------------------------------------------------------- /recipes/libiconv/0004-lib-Only-rename-locale_charset-for-libiconv-not-libc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libiconv/0004-lib-Only-rename-locale_charset-for-libiconv-not-libc.patch -------------------------------------------------------------------------------- /recipes/libjpeg-turbo.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libjpeg-turbo.recipe -------------------------------------------------------------------------------- /recipes/libjpeg-turbo/0001-Include-limits.h-for-SIZE_MAX.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libjpeg-turbo/0001-Include-limits.h-for-SIZE_MAX.patch -------------------------------------------------------------------------------- /recipes/libkate.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libkate.recipe -------------------------------------------------------------------------------- /recipes/libkate/0001-be-more-permissive-with-automake-errors-now-that-we-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libkate/0001-be-more-permissive-with-automake-errors-now-that-we-.patch -------------------------------------------------------------------------------- /recipes/libmad/0001-Delete-invalid-compile-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmad/0001-Delete-invalid-compile-option.patch -------------------------------------------------------------------------------- /recipes/libmad/0002-fix-autoreconf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmad/0002-fix-autoreconf.patch -------------------------------------------------------------------------------- /recipes/libmad/0003-ARM-Fix-build-without-the-Thumb-mode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmad/0003-ARM-Fix-build-without-the-Thumb-mode.patch -------------------------------------------------------------------------------- /recipes/libmad/0004-Remove-clang-unsupported-compiler-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmad/0004-Remove-clang-unsupported-compiler-flags.patch -------------------------------------------------------------------------------- /recipes/libmms.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmms.recipe -------------------------------------------------------------------------------- /recipes/libmms/0001-Use-native-iconv-in-windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmms/0001-Use-native-iconv-in-windows.patch -------------------------------------------------------------------------------- /recipes/libmms/0002-uri-Add-implementation-of-strndup-for-platforms-that.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmms/0002-uri-Add-implementation-of-strndup-for-platforms-that.patch -------------------------------------------------------------------------------- /recipes/libmms/0005-Fix-build-on-OSX-leopard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmms/0005-Fix-build-on-OSX-leopard.patch -------------------------------------------------------------------------------- /recipes/libmpeg2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmpeg2.recipe -------------------------------------------------------------------------------- /recipes/libmpeg2/0001-Disable-AC_C_ALWAYS_INLINE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmpeg2/0001-Disable-AC_C_ALWAYS_INLINE.patch -------------------------------------------------------------------------------- /recipes/libmpeg2/0002-Import-revision-1206-from-upstream-to-fix-PIE-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libmpeg2/0002-Import-revision-1206-from-upstream-to-fix-PIE-build.patch -------------------------------------------------------------------------------- /recipes/libnice.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libnice.recipe -------------------------------------------------------------------------------- /recipes/libnice/0001-TURN-allow-REALM-to-be-empty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libnice/0001-TURN-allow-REALM-to-be-empty.patch -------------------------------------------------------------------------------- /recipes/libnice/0001-agent-Remove-unnecessary-NULL-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libnice/0001-agent-Remove-unnecessary-NULL-check.patch -------------------------------------------------------------------------------- /recipes/libnice/0001-nicesrc-spin-the-agent-mainloop-in-a-separate-thread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libnice/0001-nicesrc-spin-the-agent-mainloop-in-a-separate-thread.patch -------------------------------------------------------------------------------- /recipes/libnice/0002-Do-not-update-a-remote-candidate-s-type.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libnice/0002-Do-not-update-a-remote-candidate-s-type.patch -------------------------------------------------------------------------------- /recipes/libnice/0002-TURN-handle-437-Allocation-Mismatch-responses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libnice/0002-TURN-handle-437-Allocation-Mismatch-responses.patch -------------------------------------------------------------------------------- /recipes/libnice/0003-Do-not-compare-scope-for-IPv6-address-when-scope-is-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libnice/0003-Do-not-compare-scope-for-IPv6-address-when-scope-is-.patch -------------------------------------------------------------------------------- /recipes/libnice/0004-Removing-no-op-assignment.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libnice/0004-Removing-no-op-assignment.patch -------------------------------------------------------------------------------- /recipes/libogg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libogg.recipe -------------------------------------------------------------------------------- /recipes/libogg/0001-Fix-iOS-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libogg/0001-Fix-iOS-build.patch -------------------------------------------------------------------------------- /recipes/libpng/0001-neon-fix-function-export-names-for-iOS-armv7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libpng/0001-neon-fix-function-export-names-for-iOS-armv7.patch -------------------------------------------------------------------------------- /recipes/libpng/libpng.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libpng/libpng.recipe -------------------------------------------------------------------------------- /recipes/librsvg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/librsvg.recipe -------------------------------------------------------------------------------- /recipes/librsvg/0001-Use-ACLOCAL_FLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/librsvg/0001-Use-ACLOCAL_FLAGS.patch -------------------------------------------------------------------------------- /recipes/librsvg/option-enable-disable-gtk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/librsvg/option-enable-disable-gtk.patch -------------------------------------------------------------------------------- /recipes/librtmp/0001-Fix-support-for-cross-compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/librtmp/0001-Fix-support-for-cross-compilation.patch -------------------------------------------------------------------------------- /recipes/librtmp/librtmp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/librtmp/librtmp.recipe -------------------------------------------------------------------------------- /recipes/libshout.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libshout.recipe -------------------------------------------------------------------------------- /recipes/libsoup.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libsoup.recipe -------------------------------------------------------------------------------- /recipes/libsoup/0001-Rip-out-sqlite-based-cookie-storage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libsoup/0001-Rip-out-sqlite-based-cookie-storage.patch -------------------------------------------------------------------------------- /recipes/libsoup/0002-Don-t-build-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libsoup/0002-Don-t-build-tests.patch -------------------------------------------------------------------------------- /recipes/libsrtp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libsrtp.recipe -------------------------------------------------------------------------------- /recipes/libsrtp/0001-Don-t-create-a-symlink-if-there-is-no-SHAREDLIBVERSI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libsrtp/0001-Don-t-create-a-symlink-if-there-is-no-SHAREDLIBVERSI.patch -------------------------------------------------------------------------------- /recipes/libtasn1.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtasn1.recipe -------------------------------------------------------------------------------- /recipes/libtasn1/0001-Rename-gnulib-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtasn1/0001-Rename-gnulib-symbols.patch -------------------------------------------------------------------------------- /recipes/libtheora.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtheora.recipe -------------------------------------------------------------------------------- /recipes/libtheora/0001-Add-option-to-disable-doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtheora/0001-Add-option-to-disable-doc.patch -------------------------------------------------------------------------------- /recipes/libtheora/0002-Update-makefiles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtheora/0002-Update-makefiles.patch -------------------------------------------------------------------------------- /recipes/libtheora/0003-Fix-linking-of-theora-encoder-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtheora/0003-Fix-linking-of-theora-encoder-library.patch -------------------------------------------------------------------------------- /recipes/libtheora/0004-Use-our-automake-version-and-not-an-older-one.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtheora/0004-Use-our-automake-version-and-not-an-older-one.patch -------------------------------------------------------------------------------- /recipes/libtheora/0005-Update-Makefile.in-too-to-avoid-needing-to-call-auto.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtheora/0005-Update-Makefile.in-too-to-avoid-needing-to-call-auto.patch -------------------------------------------------------------------------------- /recipes/libtheora/0006-examples-Don-t-use-png_sizeof.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtheora/0006-examples-Don-t-use-png_sizeof.patch -------------------------------------------------------------------------------- /recipes/libtheora/0007-Don-t-use-fforce-addr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libtheora/0007-Don-t-use-fforce-addr.patch -------------------------------------------------------------------------------- /recipes/libunwind.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libunwind.recipe -------------------------------------------------------------------------------- /recipes/libusrsctp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libusrsctp.recipe -------------------------------------------------------------------------------- /recipes/libusrsctp/ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libusrsctp/ifaddrs.c -------------------------------------------------------------------------------- /recipes/libusrsctp/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libusrsctp/ifaddrs.h -------------------------------------------------------------------------------- /recipes/libvisual.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual.recipe -------------------------------------------------------------------------------- /recipes/libvisual/0001-Check-properly-for-sched_setshceduler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0001-Check-properly-for-sched_setshceduler.patch -------------------------------------------------------------------------------- /recipes/libvisual/0003-Add-long-long-check-for-win64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0003-Add-long-long-check-for-win64.patch -------------------------------------------------------------------------------- /recipes/libvisual/0005-Fix-compilation-in-win64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0005-Fix-compilation-in-win64.patch -------------------------------------------------------------------------------- /recipes/libvisual/0006-Fix-build-in-PPC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0006-Fix-build-in-PPC.patch -------------------------------------------------------------------------------- /recipes/libvisual/0007-Fix-build-on-debian-squeeze.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0007-Fix-build-on-debian-squeeze.patch -------------------------------------------------------------------------------- /recipes/libvisual/0008-Remove-malloc-realloc-configure-checks-they-re-broke.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0008-Remove-malloc-realloc-configure-checks-they-re-broke.patch -------------------------------------------------------------------------------- /recipes/libvisual/0009-Fix-build-for-Android-X86.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0009-Fix-build-for-Android-X86.patch -------------------------------------------------------------------------------- /recipes/libvisual/0010-Only-define-inline-and-friends-if-they-re-not-define.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0010-Only-define-inline-and-friends-if-they-re-not-define.patch -------------------------------------------------------------------------------- /recipes/libvisual/0011-Fix-autoreconf-when-using-our-gettext-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0011-Fix-autoreconf-when-using-our-gettext-version.patch -------------------------------------------------------------------------------- /recipes/libvisual/0012-configure-gettext-0.18-is-enough-no-0.18.2-needed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0012-configure-gettext-0.18-is-enough-no-0.18.2-needed.patch -------------------------------------------------------------------------------- /recipes/libvisual/0013-Include-lv_cpu.h-for-visual_cpu_initialize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0013-Include-lv_cpu.h-for-visual_cpu_initialize.patch -------------------------------------------------------------------------------- /recipes/libvisual/0014-Add-forward-declaration-of-visual_transform_init-as-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0014-Add-forward-declaration-of-visual_transform_init-as-.patch -------------------------------------------------------------------------------- /recipes/libvisual/0015-Include-lv_cpu.h-in-another-place-too.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0015-Include-lv_cpu.h-in-another-place-too.patch -------------------------------------------------------------------------------- /recipes/libvisual/0016-configure.ac-Use-gettext-0.19.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvisual/0016-configure.ac-Use-gettext-0.19.patch -------------------------------------------------------------------------------- /recipes/libvorbis.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvorbis.recipe -------------------------------------------------------------------------------- /recipes/libvorbis/0001-Fix-linking-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvorbis/0001-Fix-linking-on-Android.patch -------------------------------------------------------------------------------- /recipes/libvorbis/0003-Link-the-other-libs-with-lm-too.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvorbis/0003-Link-the-other-libs-with-lm-too.patch -------------------------------------------------------------------------------- /recipes/libvorbis/0004-configure-check-for-endianness.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvorbis/0004-configure-check-for-endianness.patch -------------------------------------------------------------------------------- /recipes/libvorbis/0005-darwin-do-not-build-for-a-generic-arm-architecture.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvorbis/0005-darwin-do-not-build-for-a-generic-arm-architecture.patch -------------------------------------------------------------------------------- /recipes/libvorbis/0006-Use-our-version-of-automake-instead-of-some-random-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvorbis/0006-Use-our-version-of-automake-instead-of-some-random-o.patch -------------------------------------------------------------------------------- /recipes/libvorbis/0007-autogen.sh-Make-sure-libtoolize-runs-fully.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvorbis/0007-autogen.sh-Make-sure-libtoolize-runs-fully.patch -------------------------------------------------------------------------------- /recipes/libvpx.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvpx.recipe -------------------------------------------------------------------------------- /recipes/libvpx/0001-build-Fix-the-min-version-flag-for-iOS-simulator-bui.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvpx/0001-build-Fix-the-min-version-flag-for-iOS-simulator-bui.patch -------------------------------------------------------------------------------- /recipes/libvpx/0002-Include-Android-cpu-features.c-instead-of-.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvpx/0002-Include-Android-cpu-features.c-instead-of-.h.patch -------------------------------------------------------------------------------- /recipes/libvpx/0003-configure-Add-back-the-armv5te-android-gcc-target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvpx/0003-configure-Add-back-the-armv5te-android-gcc-target.patch -------------------------------------------------------------------------------- /recipes/libvpx/0004-build-Remove-broken-custom-android-toolchain-usage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvpx/0004-build-Remove-broken-custom-android-toolchain-usage.patch -------------------------------------------------------------------------------- /recipes/libvpx/0005-configure-Add-Android-ARM64-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvpx/0005-configure-Add-Android-ARM64-support.patch -------------------------------------------------------------------------------- /recipes/libvpx/0006-Don-t-embed-bitcode-on-iOS-until-we-support-that-pro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libvpx/0006-Don-t-embed-bitcode-on-iOS-until-we-support-that-pro.patch -------------------------------------------------------------------------------- /recipes/libxml2.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libxml2.recipe -------------------------------------------------------------------------------- /recipes/libxml2/0001-Enable-windows-cross-compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libxml2/0001-Enable-windows-cross-compilation.patch -------------------------------------------------------------------------------- /recipes/libxml2/0002-makefiles-disable-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libxml2/0002-makefiles-disable-tests.patch -------------------------------------------------------------------------------- /recipes/libxml2/0003-configure-fix-python-dir-prefix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/libxml2/0003-configure-fix-python-dir-prefix.patch -------------------------------------------------------------------------------- /recipes/mingw-runtime.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/mingw-runtime.recipe -------------------------------------------------------------------------------- /recipes/mpg123.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/mpg123.recipe -------------------------------------------------------------------------------- /recipes/mpg123/0001-Disable-tools-and-libout123-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/mpg123/0001-Disable-tools-and-libout123-library.patch -------------------------------------------------------------------------------- /recipes/nettle/0001-ios-fix-build-using-.word-for-assembly-constants.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/nettle/0001-ios-fix-build-using-.word-for-assembly-constants.patch -------------------------------------------------------------------------------- /recipes/nettle/nettle.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/nettle/nettle.recipe -------------------------------------------------------------------------------- /recipes/opencore-amr.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/opencore-amr.recipe -------------------------------------------------------------------------------- /recipes/opencore-amr/0001-Fix-include-dir-in-pc-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/opencore-amr/0001-Fix-include-dir-in-pc-files.patch -------------------------------------------------------------------------------- /recipes/openh264.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openh264.recipe -------------------------------------------------------------------------------- /recipes/openh264/0001-Add-version-suffix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openh264/0001-Add-version-suffix.patch -------------------------------------------------------------------------------- /recipes/openh264/0002-Remove-fembed-bitcode-for-iOS-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openh264/0002-Remove-fembed-bitcode-for-iOS-build.patch -------------------------------------------------------------------------------- /recipes/openjpeg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openjpeg.recipe -------------------------------------------------------------------------------- /recipes/openjpeg/0001-Build-shared-and-static-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openjpeg/0001-Build-shared-and-static-library.patch -------------------------------------------------------------------------------- /recipes/openjpeg/0002-Set-INSTALL_NAME_DIR.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openjpeg/0002-Set-INSTALL_NAME_DIR.patch -------------------------------------------------------------------------------- /recipes/openssl.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openssl.recipe -------------------------------------------------------------------------------- /recipes/openssl/0001-Make-it-possible-to-only-install-libs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openssl/0001-Make-it-possible-to-only-install-libs.patch -------------------------------------------------------------------------------- /recipes/openwebrtc-girepository.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openwebrtc-girepository.recipe -------------------------------------------------------------------------------- /recipes/openwebrtc-girepository/disable-python-checks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openwebrtc-girepository/disable-python-checks.patch -------------------------------------------------------------------------------- /recipes/openwebrtc-gst-plugins.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openwebrtc-gst-plugins.recipe -------------------------------------------------------------------------------- /recipes/openwebrtc-osx-framework.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openwebrtc-osx-framework.recipe -------------------------------------------------------------------------------- /recipes/openwebrtc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openwebrtc.recipe -------------------------------------------------------------------------------- /recipes/openwebrtc/Makefile.bundled-shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/openwebrtc/Makefile.bundled-shared -------------------------------------------------------------------------------- /recipes/opus.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/opus.recipe -------------------------------------------------------------------------------- /recipes/orc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/orc.recipe -------------------------------------------------------------------------------- /recipes/pango.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/pango.recipe -------------------------------------------------------------------------------- /recipes/pixman.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/pixman.recipe -------------------------------------------------------------------------------- /recipes/pixman/0001-Fix-build-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/pixman/0001-Fix-build-on-Android.patch -------------------------------------------------------------------------------- /recipes/pixman/0002-Enable-CPU-detection-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/pixman/0002-Enable-CPU-detection-on-Android.patch -------------------------------------------------------------------------------- /recipes/sbc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/sbc.recipe -------------------------------------------------------------------------------- /recipes/sbc/0001-sbc-Use-stdint.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/sbc/0001-sbc-Use-stdint.h.patch -------------------------------------------------------------------------------- /recipes/sbc/0002-Don-t-use-NEON-with-aarch64-on-Clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/sbc/0002-Don-t-use-NEON-with-aarch64-on-Clang.patch -------------------------------------------------------------------------------- /recipes/seed.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/seed.recipe -------------------------------------------------------------------------------- /recipes/seed/javascriptcore-osx-ios.pc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/seed/javascriptcore-osx-ios.pc.patch -------------------------------------------------------------------------------- /recipes/soundtouch.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch.recipe -------------------------------------------------------------------------------- /recipes/soundtouch/0001-Add-dummy-file-to-make-sure-config-m4-exists.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0001-Add-dummy-file-to-make-sure-config-m4-exists.patch -------------------------------------------------------------------------------- /recipes/soundtouch/0002-Use-STLPORT-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0002-Use-STLPORT-on-Android.patch -------------------------------------------------------------------------------- /recipes/soundtouch/0003-Don-t-build-soundstretch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0003-Don-t-build-soundstretch.patch -------------------------------------------------------------------------------- /recipes/soundtouch/0004-Use-gnustl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0004-Use-gnustl.patch -------------------------------------------------------------------------------- /recipes/soundtouch/0005-Fix-soundstretch-linking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0005-Fix-soundstretch-linking.patch -------------------------------------------------------------------------------- /recipes/soundtouch/0006-Fix-pkg-config-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0006-Fix-pkg-config-file.patch -------------------------------------------------------------------------------- /recipes/soundtouch/0007-Make-it-compile-on-IOS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0007-Make-it-compile-on-IOS.patch -------------------------------------------------------------------------------- /recipes/soundtouch/0008-Fix-compilation-with-clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0008-Fix-compilation-with-clang.patch -------------------------------------------------------------------------------- /recipes/soundtouch/0010-Try-harder-to-generate-Win32-DLLs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/soundtouch/0010-Try-harder-to-generate-Win32-DLLs.patch -------------------------------------------------------------------------------- /recipes/spandsp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/spandsp.recipe -------------------------------------------------------------------------------- /recipes/spandsp/0001-Don-t-do-a-whereis-which-dance-to-find-which.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/spandsp/0001-Don-t-do-a-whereis-which-dance-to-find-which.patch -------------------------------------------------------------------------------- /recipes/spandsp/0001-Fix-build-for-windows-using-mingw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/spandsp/0001-Fix-build-for-windows-using-mingw.patch -------------------------------------------------------------------------------- /recipes/spandsp/0001-spandsp-do-not-compile-has_X86FEATURE-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/spandsp/0001-spandsp-do-not-compile-has_X86FEATURE-symbols.patch -------------------------------------------------------------------------------- /recipes/spandsp/0002-Define-LIBSPANDSP_EXPORTS-when-building-the-spandsp-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/spandsp/0002-Define-LIBSPANDSP_EXPORTS-when-building-the-spandsp-.patch -------------------------------------------------------------------------------- /recipes/spandsp/0003-Use-BUILT_SOURCES-to-generate-extra-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/spandsp/0003-Use-BUILT_SOURCES-to-generate-extra-headers.patch -------------------------------------------------------------------------------- /recipes/speex.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/speex.recipe -------------------------------------------------------------------------------- /recipes/taglib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/taglib.recipe -------------------------------------------------------------------------------- /recipes/taglib/0001-Link-with-correct-STL-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/taglib/0001-Link-with-correct-STL-on-Android.patch -------------------------------------------------------------------------------- /recipes/taglib/0002-Build-a-static-and-non-static-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/taglib/0002-Build-a-static-and-non-static-version.patch -------------------------------------------------------------------------------- /recipes/tiff.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tiff.recipe -------------------------------------------------------------------------------- /recipes/tinyalsa.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tinyalsa.recipe -------------------------------------------------------------------------------- /recipes/toolchain/all.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/all.recipe -------------------------------------------------------------------------------- /recipes/toolchain/binutils.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/binutils.recipe -------------------------------------------------------------------------------- /recipes/toolchain/cloog.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/cloog.recipe -------------------------------------------------------------------------------- /recipes/toolchain/gcc-core.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/gcc-core.recipe -------------------------------------------------------------------------------- /recipes/toolchain/gcc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/gcc.recipe -------------------------------------------------------------------------------- /recipes/toolchain/gendef.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/gendef.recipe -------------------------------------------------------------------------------- /recipes/toolchain/gmp.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/gmp.recipe -------------------------------------------------------------------------------- /recipes/toolchain/mingw-w64-headers.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/mingw-w64-headers.recipe -------------------------------------------------------------------------------- /recipes/toolchain/mingw-w64.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/mingw-w64.recipe -------------------------------------------------------------------------------- /recipes/toolchain/mpc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/mpc.recipe -------------------------------------------------------------------------------- /recipes/toolchain/mpfr.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/mpfr.recipe -------------------------------------------------------------------------------- /recipes/toolchain/winpthreads.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/toolchain/winpthreads.recipe -------------------------------------------------------------------------------- /recipes/tremor.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor.recipe -------------------------------------------------------------------------------- /recipes/tremor/0001-Prevent-symbol-conflicts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor/0001-Prevent-symbol-conflicts.patch -------------------------------------------------------------------------------- /recipes/tremor/0002-Try-fixing-shared-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor/0002-Try-fixing-shared-build.patch -------------------------------------------------------------------------------- /recipes/tremor/0003-Map-remaining-symbol-too.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor/0003-Map-remaining-symbol-too.patch -------------------------------------------------------------------------------- /recipes/tremor/0004-Fix-build-with-the-Android-NDK-for-x86.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor/0004-Fix-build-with-the-Android-NDK-for-x86.patch -------------------------------------------------------------------------------- /recipes/tremor/0005-configure-check-for-machine-endianness.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor/0005-configure-check-for-machine-endianness.patch -------------------------------------------------------------------------------- /recipes/tremor/0006-tremor-floor-mapping-residue-function-renaming.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor/0006-tremor-floor-mapping-residue-function-renaming.patch -------------------------------------------------------------------------------- /recipes/tremor/0007-tremor-more-function-renaming.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor/0007-tremor-more-function-renaming.patch -------------------------------------------------------------------------------- /recipes/tremor/0008-fix-more-duplicated-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/tremor/0008-fix-more-duplicated-symbols.patch -------------------------------------------------------------------------------- /recipes/vo-aacenc.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/vo-aacenc.recipe -------------------------------------------------------------------------------- /recipes/vsintegration-1.0.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/vsintegration-1.0.recipe -------------------------------------------------------------------------------- /recipes/wavpack.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/wavpack.recipe -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing.recipe -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0000-Add-fix_interlocked_exchange_pointer_win.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0000-Add-fix_interlocked_exchange_pointer_win.h.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0000-Add-sal.h-as-it-s-missing-in-cerbero-mingw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0000-Add-sal.h-as-it-s-missing-in-cerbero-mingw.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0001-build-enforce-linking-with-no-undefined-add-explicit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0001-build-enforce-linking-with-no-undefined-add-explicit.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0002-build-Make-sure-files-with-SSE2-code-are-compiled-wi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0002-build-Make-sure-files-with-SSE2-code-are-compiled-wi.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0003-Don-t-include-execinfo.h-for-windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0003-Don-t-include-execinfo.h-for-windows.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0004-Don-t-use-MSVC-specific-exception-handler-for-MINGW.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0004-Don-t-use-MSVC-specific-exception-handler-for-MINGW.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0005-Add-missing-throw-in-destructor-override.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0005-Add-missing-throw-in-destructor-override.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0006-lrint-is-available-with-mingw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0006-lrint-is-available-with-mingw.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0007-Fix-case-sensitivity-issue-with-MinGW-cross-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0007-Fix-case-sensitivity-issue-with-MinGW-cross-build.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0008-Add-missing-windows-specific-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0008-Add-missing-windows-specific-headers.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0009-Fix-build-on-win64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0009-Fix-build-on-win64.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0010-Add-cerbero-gnustl-support-for-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0010-Add-cerbero-gnustl-support-for-Android.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0011-Disable-backtrace-on-android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0011-Disable-backtrace-on-android.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0012-Don-t-blindly-link-to-pthread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0012-Don-t-blindly-link-to-pthread.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0013-Add-required-define-for-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0013-Add-required-define-for-Windows.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0014-Properly-select-the-right-system-wrappers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0014-Properly-select-the-right-system-wrappers.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0015-Fix-case-sensitivity-in-windows-include.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0015-Fix-case-sensitivity-in-windows-include.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0016-Define-MSVC-_WIN32-so-we-can-build-on-mingw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0016-Define-MSVC-_WIN32-so-we-can-build-on-mingw.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0017-Add-missing-windows-conditions-variable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0017-Add-missing-windows-conditions-variable.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0018-Protect-against-unsupported-CPU-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0018-Protect-against-unsupported-CPU-types.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0019-osx-Fix-type-OS_FLAGS-instead-of-OS_CFLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0019-osx-Fix-type-OS_FLAGS-instead-of-OS_CFLAGS.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0020-Sync-defines-and-libs-with-build.gn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0020-Sync-defines-and-libs-with-build.gn.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0021-Use-no-undefined-to-support-both-clang-and-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0021-Use-no-undefined-to-support-both-clang-and-gcc.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0022-Re-add-pthread-linking-on-linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0022-Re-add-pthread-linking-on-linux.patch -------------------------------------------------------------------------------- /recipes/webrtc-audio-processing/0023-Add-ARM-64bit-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/webrtc-audio-processing/0023-Add-ARM-64bit-support.patch -------------------------------------------------------------------------------- /recipes/winpthreads-runtime.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/winpthreads-runtime.recipe -------------------------------------------------------------------------------- /recipes/x264.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/x264.recipe -------------------------------------------------------------------------------- /recipes/zlib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/zlib.recipe -------------------------------------------------------------------------------- /recipes/zlib/0001-win32-fix-dll-name.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/recipes/zlib/0001-win32-fix-dll-name.patch -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/pkgconfig/glib-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/pkgconfig/glib-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/gmodule-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/pkgconfig/gmodule-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/gmodule-no-export-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/pkgconfig/gmodule-no-export-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/gobject-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/pkgconfig/gobject-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/gstreamer-0.10.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/pkgconfig/gstreamer-0.10.pc -------------------------------------------------------------------------------- /test/pkgconfig/gthread-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/pkgconfig/gthread-2.0.pc -------------------------------------------------------------------------------- /test/pkgconfig/libxml-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/pkgconfig/libxml-2.0.pc -------------------------------------------------------------------------------- /test/test_build_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_build_common.py -------------------------------------------------------------------------------- /test/test_cerbero_build_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_build_build.py -------------------------------------------------------------------------------- /test/test_cerbero_build_cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_build_cookbook.py -------------------------------------------------------------------------------- /test/test_cerbero_build_filesprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_build_filesprovider.py -------------------------------------------------------------------------------- /test/test_cerbero_build_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_build_recipe.py -------------------------------------------------------------------------------- /test/test_cerbero_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_config.py -------------------------------------------------------------------------------- /test/test_cerbero_ide_pkgconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_ide_pkgconfig.py -------------------------------------------------------------------------------- /test/test_cerbero_ide_xcode_xcconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_ide_xcode_xcconfig.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_disttarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_packages_disttarball.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_packages_linux.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_osx_info_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_packages_osx_info_plist.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_packages_package.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_packagemaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_packages_packagemaker.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_packagesstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_packages_packagesstore.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_pmdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_packages_pmdoc.py -------------------------------------------------------------------------------- /test/test_cerbero_packages_wix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_packages_wix.py -------------------------------------------------------------------------------- /test/test_cerbero_tools_osxuniversalgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_cerbero_tools_osxuniversalgenerator.py -------------------------------------------------------------------------------- /test/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_common.py -------------------------------------------------------------------------------- /test/test_packages_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/test/test_packages_common.py -------------------------------------------------------------------------------- /tools/bootstrap-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/tools/bootstrap-debian.sh -------------------------------------------------------------------------------- /tools/bootstrap-redhat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/tools/bootstrap-redhat.sh -------------------------------------------------------------------------------- /tools/build-toolchains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/tools/build-toolchains.sh -------------------------------------------------------------------------------- /tools/cerbero.cbc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/tools/cerbero.cbc.template -------------------------------------------------------------------------------- /tools/certdata2pem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/tools/certdata2pem.py -------------------------------------------------------------------------------- /tools/chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/tools/chroot.sh -------------------------------------------------------------------------------- /tools/show-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/tools/show-coverage.py -------------------------------------------------------------------------------- /update-gst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricssonResearch/cerbero/HEAD/update-gst.sh --------------------------------------------------------------------------------