summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-12 01:16:58 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-12 01:16:58 +0000
commitd470bd619b32e844d2358ab0973bcf3d0a3a4375 (patch)
tree1c832c1349cd4d7c33571b2e7813b2df583b44d2
parenta878f1f74d234726ad6c3d8849106be2266f5807 (diff)
downloadVirtualBox-svn-master.tar.gz
/configure: Default to building liblzma on darwin.HEADmaster
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@99764 cfe28804-0f27-0410-a406-dd0f0b0b656f
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index 4b69712cd6e..c46c83d8f50 100755
--- a/configure
+++ b/configure
@@ -117,7 +117,11 @@ BUILD_LIBCURL=
BUILD_LIBSSL=
BUILD_LIBVPX=
BUILD_LIBTPMS=
-BUILD_LIBLZMA=
+if [ "$OS" = "darwin" ]; then # Do not use the /opt/local version of this! We end up using the wrong iconv.h then.
+ BUILD_LIBLZMA=1
+else
+ BUILD_LIBLZMA=
+fi
PASSIVE_MESA=0
CC="gcc"
CC32=""