mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
CONFIGURE: Add support for building under MacPorts
This commit is contained in:
parent
7b9346d42b
commit
8d22979667
20
configure
vendored
20
configure
vendored
@ -1819,6 +1819,26 @@ case $_host_os in
|
||||
DEFINES="$DEFINES -DMACOSX"
|
||||
LIBS="$LIBS -framework AudioUnit -framework AudioToolbox -framework Carbon -framework CoreMIDI"
|
||||
add_line_to_config_mk 'MACOSX = 1'
|
||||
|
||||
# Now we may have MacPorts or Fink installed
|
||||
# Which put libraries and headers in non-standard places
|
||||
# Checking them here
|
||||
|
||||
# MacPorts
|
||||
# There is no way to get the prefix, so implementing a hack here
|
||||
macport_version=`port version 2>/dev/null`
|
||||
if test "$?" -eq 0; then
|
||||
macport_version="`echo "${macport_version}" } sed -ne 's/Version: \([0-9]\.[0-9]\.[0-9]\)/\1/gp'`"
|
||||
echo_n "You seem to be running MacPorts version ${macport_version}..."
|
||||
|
||||
$macport_prefix=`which port`
|
||||
$macport_prefix=`dirname ${macport_prefix}`
|
||||
|
||||
echo "adding ${macport_prefix} to paths"
|
||||
|
||||
LDFLAGS="-L${macport_prefix}/lib $LDFLAGS"
|
||||
CXXFLAGS="-I${macport_prefix}/lib $CXXFLAGS"
|
||||
fi
|
||||
;;
|
||||
dreamcast)
|
||||
DEFINES="$DEFINES -D__DC__"
|
||||
|
Loading…
x
Reference in New Issue
Block a user