From a2db5acb28c0635849a76467faac1e94f6c55659 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Tue, 30 Oct 2007 17:18:59 +0000 Subject: [PATCH] At least one file is C++, so we have to link against the C++ runtime. Should fix the build on Darwin. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22774 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/unzip/Jamfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/unzip/Jamfile b/src/tools/unzip/Jamfile index 66ebda38a0..6ca3b0a422 100644 --- a/src/tools/unzip/Jamfile +++ b/src/tools/unzip/Jamfile @@ -31,6 +31,6 @@ BuildPlatformMain unzip : unzip.c unreduce.c unshrink.c - : libunzip.a $(HOST_LIBBE) + : libunzip.a $(HOST_LIBBE) $(HOST_LIBSUPC++) ;