From 6e9b37491acf3763a19d075011c693be31f4e524 Mon Sep 17 00:00:00 2001 From: philburk Date: Mon, 4 Jan 2016 17:22:00 +0000 Subject: [PATCH] Add support for 10.11 SDK so PortAudio can compile on Mac. Also allow deprecated APIs until we can remove them. Note that this commit only includes the source files that were changed. The next commit will include the files that are generated by autoreconf. So look at this commit to see what really changed. --- README.configure.txt | 14 ++++++++++++-- configure.in | 13 +++++++++++-- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/README.configure.txt b/README.configure.txt index b964cd5..6417d65 100644 --- a/README.configure.txt +++ b/README.configure.txt @@ -1,16 +1,26 @@ PortAudio uses "autoconf" tools to generate Makefiles for Linux and Mac platforms. The source for these are configure.in and Makefile.in If you modify either of these files then please run this command before -testing and checking in your changes. +testing and checking in your changes. I run this command on Linux. autoreconf -if +If you do not have autoreconf then do: + sudo apt-get install autoconf + +If you get error like "possibly undefined macro: AC_LIBTOOL_WIN32_DLL" +then you try installing some more packages and then try again. + + sudo apt-get install build-essential + sudo apt-get install pkg-config + sudo apt-get install libtool + autoreconf -if + Then test a build by doing: ./configure make clean make - sudo make install then check in the related files that are modified. These might include files like: diff --git a/configure.in b/configure.in index 3f3b31e..13816fb 100644 --- a/configure.in +++ b/configure.in @@ -204,7 +204,7 @@ case "${host_os}" in AC_DEFINE(PA_USE_COREAUDIO,1) - CFLAGS="$CFLAGS -I\$(top_srcdir)/src/os/unix -Werror" + CFLAGS="$CFLAGS -I\$(top_srcdir)/src/os/unix -Wno-deprecated -Werror" LIBS="-framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon" if test "x$enable_mac_universal" = "xyes" ; then @@ -249,8 +249,17 @@ case "${host_os}" in elif xcodebuild -version -sdk macosx10.9 Path >/dev/null 2>&1 ; then mac_version_min="-mmacosx-version-min=10.4" mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.9 Path`" + elif xcodebuild -version -sdk macosx10.10 Path >/dev/null 2>&1 ; then + mac_version_min="-mmacosx-version-min=10.4" + mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.10 Path`" + elif xcodebuild -version -sdk macosx10.11 Path >/dev/null 2>&1 ; then + mac_version_min="-mmacosx-version-min=10.4" + mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.11 Path`" + elif xcodebuild -version -sdk macosx10.12 Path >/dev/null 2>&1 ; then + mac_version_min="-mmacosx-version-min=10.4" + mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.12 Path`" else - AC_MSG_ERROR([Couldn't find 10.5, 10.6, 10.7, 10.8 or 10.9 SDK]) + AC_MSG_ERROR([Could not find 10.5 to 10.12 SDK.]) fi esac -- 2.43.0