[MPlayer-cvslog] CVS: main configure,1.1147,1.1148
Diego Biurrun CVS
syncmail at mplayerhq.hu
Mon Mar 20 11:57:32 CET 2006
CVS change done by Diego Biurrun CVS
Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv29498
Modified Files:
configure
Log Message:
Simplify pkg-config invocation.
patch by Emanuele Giaquinta, emanuele . . . giaquinta . @ . gmail . . . com
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.1147
retrieving revision 1.1148
diff -u -r1.1147 -r1.1148
--- configure 17 Mar 2006 23:47:10 -0000 1.1147
+++ configure 20 Mar 2006 10:57:30 -0000 1.1148
@@ -4748,7 +4748,7 @@
echocheck "Polyp"
if test "$_polyp" = auto ; then
_polyp=no
- if ( pkg-config --exists 'polyplib >= 0.6 polyplib-error >= 0.6 polyplib-mainloop >= 0.6' ) >> "$TMPLOG" 2>&1 ; then
+ if pkg-config --exists 'polyplib >= 0.6 polyplib-error >= 0.6 polyplib-mainloop >= 0.6' ; then
cat > $TMPC << EOF
#include <polyp/polyplib.h>
@@ -5173,7 +5173,7 @@
echocheck "libcdio"
if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
- if ( pkg-config --modversion libcdio) > /dev/null 2>&1 ; then
+ if pkg-config --exists libcdio ; then
cat > $TMPC << EOF
#include <stdio.h>
#include <cdio/version.h>
@@ -5288,7 +5288,7 @@
_fontconfig=yes
if cc_check -lfontconfig ; then
_ld_fontconfig="-lfontconfig"
- elif cc_check `pkg-config --cflags --libs fontconfig` ; then
+ elif cc_check `pkg-config --silence-errors --cflags --libs fontconfig` ; then
_inc_fontconfig=`pkg-config --cflags fontconfig`
_ld_fontconfig=`pkg-config --libs fontconfig`
else
@@ -6107,7 +6107,7 @@
return 0;
}
EOF
- if (pkg-config --exists libavcodec >> "$TMPLOG" 2>&1) ; then
+ if pkg-config --exists libavcodec ; then
_inc_libavcodec=`pkg-config --cflags libavcodec`
_ld_libavcodec=`pkg-config --libs libavcodec`
cc_check $_inc_libavcodec $_ld_libavcodec && _libavcodec_so=yes
@@ -6129,7 +6129,7 @@
#include <ffmpeg/avformat.h>
int main(void) { av_alloc_format_context(); return 0; }
EOF
- if (pkg-config --exists libavformat >> "$TMPLOG" 2>&1 ) ; then
+ if pkg-config --exists libavformat ; then
_inc_libavformat=`pkg-config --cflags libavformat`
_ld_libavformat=`pkg-config --libs libavformat`
cc_check $_inc_libavformat $_ld_libavformat && _libavformat_so=yes
More information about the MPlayer-cvslog
mailing list