summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-09-07 00:45:29 +0200
committerRobin Gareus <robin@gareus.org>2017-09-07 00:45:29 +0200
commit8b5553c9773302a297d349a9dc981dd90b73a6be (patch)
tree0e37085b8131e18d419f7d7edb893a260b9aa8a4 /tools
parent5d0b00589c7c61b1eae2f4670b50fa8defea1a70 (diff)
Deploy dynamically loaded NSS libs with OSX bundles
Diffstat (limited to 'tools')
-rwxr-xr-xtools/osx_packaging/osx_build6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 2f14b07bee..2b417b86af 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -421,6 +421,12 @@ for file in $BUILD_ROOT/session_utils/${lower_case_appname}${major_version}-*; d
HAVE_SESSION_UTILS=true
done
+# dynamically loaded NSS/SSL libs
+nsslibs="libsoftokn3.dylib libnsspem.dylib libnssckbi.dylib libfreebl3.dylib libnssdbm3.dylib libplds4.dylib"
+for nsslib in $nsslibs; do
+ cp $GTKSTACK_ROOT/lib/$nsslib $Frameworks/ || true
+done
+
# TODO check if this is still needed, even when building on 10.5
if file $BUILD_ROOT/gtk2_ardour/ardour-$release_version | grep -q ppc; then
STDCPP='|libstdc\+\+'