search for: have_pkg_config

Displaying 3 results from an estimated 3 matches for "have_pkg_config".

2008 May 03
2
Cross compiling Linux -> windows has broken
...sion 14830) +++ configure.ac (working copy) @@ -203,13 +203,7 @@ AC_CHECK_LIB(pthread, pthread_create, pthread_lib="-lpthread", :) HAVE_OGG=no -dnl first check through pkg-config -dnl check for pkg-config itself so we don't try the m4 macro without pkg-config -AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes) -if test "x$HAVE_PKG_CONFIG" = "xyes" -then - PKG_CHECK_MODULES(OGG, ogg >= 1.0, HAVE_OGG=yes, HAVE_OGG=no) -fi +PKG_CHECK_MODULES(OGG, ogg >= 1.0, HAVE_OGG=yes, HAVE_OGG=no) if test "x$HAVE_OGG" = "xno" then dnl fall back to the...
2006 Jun 02
0
Re: Update libtheora-1.0alpha6
...patch-configure Wed Dec 31 19:00:00 1969 @@ -1,20 +0,0 @@ -$OpenBSD: patch-configure,v 1.2 2005/12/30 05:35:56 jakemsr Exp $ ---- configure.orig Wed Dec 15 12:06:19 2004 -+++ configure Thu Dec 29 20:56:15 2005 -@@ -19863,6 +19863,7 @@ fi - - HAVE_VORBIS=no - -+if false ; then - - if test "x$HAVE_PKG_CONFIG" = "xyes" - then -@@ -20632,7 +20633,7 @@ echo "$as_me: WARNING: OSS audio support - fi - - done -- -+fi - - if test x$HAVE_SDL = xyes -a x$HAVE_OSS = xyes; then - BUILDABLE_EXAMPLES="$BUILDABLE_EXAMPLES player_example" diff -pruN --exclude=CVS ../libtheora.orig/pa...
2015 Oct 08
2
[PATCH 0/1] opusenc support for WavPack input
This patch to opus-tools adds optional support to WavPack lossless format as input to opusenc. Like support to FLAC, it depends on an external library, libwavpack, and may be disabled on configure. Lucas Clemente Vella (1): Reading input from WavPack files. Makefile.am | 7 +- configure.ac | 37 ++++++++ src/audio-in.c | 71 ++++++++------- src/opusenc.c | 19 +++- src/opusenc.h