From: RĂ©mi Denis-Courmont Date: Sat, 10 Apr 2010 13:38:52 +0000 (+0300) Subject: Mozilla: do not hard-code autoconf file descriptors X-Git-Tag: 1.1.0-pre1~63 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=9eb581755a1502c5d8fde90355c134fea9668f5d;p=vlc Mozilla: do not hard-code autoconf file descriptors --- diff --git a/configure.ac b/configure.ac index 9ccbeb20c0..51b6ca26a8 100644 --- a/configure.ac +++ b/configure.ac @@ -4557,11 +4557,11 @@ then for i in "${with_mozilla_pkg}" libxul {seamonkey,iceape,xulrunner,firefox,iceweasel,mozilla}-plugin; do if test -n "$i" then - echo "Trying to find $i package" >&5 - if $PKG_CONFIG --exists --print-errors "$i" 2>&5 + echo "Trying to find $i package" >&AS_MESSAGE_LOG_FD + if $PKG_CONFIG --exists --print-errors "$i" 2>&AS_MESSAGE_LOG_FD then - echo "Using $i pkg-config package." >&5 - echo "Using $i package." >&6 + echo "Using $i pkg-config package." >&AS_MESSAGE_LOG_FD + echo "Using $i package." >&AS_MESSAGE_FD found=1 MOZILLA_CFLAGS=$(eval $PKG_CONFIG --cflags "$i" ) MOZILLA_LIBS=$(eval $PKG_CONFIG --libs "$i" )