From eb46cb588573d063d01f2c031e9a367a90bc05b6 Mon Sep 17 00:00:00 2001 From: Suzuki Kojiro Date: Tue, 8 May 2018 08:30:48 +0900 Subject: [duktape] Fix static linking (#3450) --- ports/duktape/portfile.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/duktape/portfile.cmake b/ports/duktape/portfile.cmake index e3e84c0de..f4aa4f805 100644 --- a/ports/duktape/portfile.cmake +++ b/ports/duktape/portfile.cmake @@ -23,9 +23,9 @@ vcpkg_install_cmake() set(DUK_CONFIG_H_PATH "${CURRENT_PACKAGES_DIR}/include/duk_config.h") file(READ ${DUK_CONFIG_H_PATH} CONTENT) if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic) - string(REPLACE "// #undef DUK_F_DLL_BUILD" "#undef DUK_F_DLL_BUILD\n#define DUK_F_DLL_BUILD 1" CONTENT "${CONTENT}") + string(REPLACE "// #undef DUK_F_DLL_BUILD" "#undef DUK_F_DLL_BUILD\n#define DUK_F_DLL_BUILD" CONTENT "${CONTENT}") else() - string(REPLACE "// #undef DUK_F_DLL_BUILD" "#undef DUK_F_DLL_BUILD\n#define DUK_F_DLL_BUILD 0" CONTENT "${CONTENT}") + string(REPLACE "// #undef DUK_F_DLL_BUILD" "#undef DUK_F_DLL_BUILD" CONTENT "${CONTENT}") endif() file(WRITE ${DUK_CONFIG_H_PATH} "${CONTENT}") -- cgit v1.2.3