From 202cd63e7ed507b33e348d1c7688a8038f9901d9 Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Thu, 26 Sep 2019 14:43:05 -0600 Subject: [PATCH 1/3] Updates for iOS13 --- PulseCQTNC.xcodeproj/project.pbxproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PulseCQTNC.xcodeproj/project.pbxproj b/PulseCQTNC.xcodeproj/project.pbxproj index e68eb2f..0400c03 100644 --- a/PulseCQTNC.xcodeproj/project.pbxproj +++ b/PulseCQTNC.xcodeproj/project.pbxproj @@ -1362,7 +1362,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PulseCQTNC/Pods-PulseCQTNC-resources.sh\"\n"; + shellScript = "/bin/sh \"${PODS_ROOT}/Target Support Files/Pods-PulseCQTNC/Pods-PulseCQTNC-resources.sh\"\n"; showEnvVarsInLog = 0; }; 7A2C0700BD2CFCC7DB5354A5 /* [CP] Check Pods Manifest.lock */ = { @@ -1692,7 +1692,7 @@ "${PODS_ROOT}/**", ); INFOPLIST_FILE = PulseCQTNC/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1735,7 +1735,7 @@ "${PODS_ROOT}/**", ); INFOPLIST_FILE = PulseCQTNC/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", From 41ec578451f07828f6da3f939c76976c361995c6 Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Thu, 26 Sep 2019 14:43:30 -0600 Subject: [PATCH 2/3] Use libao from homebrew --- PulseCQTNC/APRSManager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PulseCQTNC/APRSManager.m b/PulseCQTNC/APRSManager.m index 1ccf46d..61a1610 100644 --- a/PulseCQTNC/APRSManager.m +++ b/PulseCQTNC/APRSManager.m @@ -7,7 +7,7 @@ // #import "APRSManager.h" -#include +#include "ao.h" #include #include #include From c3732d6c3a74fb0fb14bf7b9cc250898f9b64409 Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Thu, 26 Sep 2019 14:47:55 -0600 Subject: [PATCH 3/3] Install libao with homebrew --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a0cd781..7461cdd 100644 --- a/README.md +++ b/README.md @@ -74,8 +74,11 @@ This app will be updated with better message handling. ## Dependencies -Please install **libao** with Mac Ports: -sudo port install libao +Please install **libao** with [homebrew](https://brew.sh/): + +```console +$ brew install libao +``` ## Authors