1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

darwin ldd support patch by Steven M. Schultz <sms@2BSD.COM>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9981 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-04-24 18:55:43 +00:00
parent 0f7903dfce
commit 3b929613b5

6
configure vendored
View File

@ -35,7 +35,7 @@ cc_check() {
TMP="$?"
echo >> "$TMPLOG"
echo "ldd $TMPO" >> "$TMPLOG"
( ldd "$TMPO" ) >> "$TMPLOG" 2>&1
( $_ldd "$TMPO" ) >> "$TMPLOG" 2>&1
echo >> "$TMPLOG"
return "$TMP"
}
@ -458,6 +458,10 @@ if freebsd ; then
_inc_extra="$_inc_extra -I/usr/local/include"
fi
_ldd=ldd
if darwin; then
_ldd="otool -L"
fi
# Checking CC version...
if test "$_skip_cc_check" != yes ; then