head 1.4; access; symbols pkgsrc-2018Q1:1.3.0.2 pkgsrc-2018Q1-base:1.3 pkgsrc-2017Q4:1.2.0.20 pkgsrc-2017Q4-base:1.2 pkgsrc-2017Q3:1.2.0.18 pkgsrc-2017Q3-base:1.2 pkgsrc-2017Q2:1.2.0.14 pkgsrc-2017Q2-base:1.2 pkgsrc-2017Q1:1.2.0.12 pkgsrc-2017Q1-base:1.2 pkgsrc-2016Q4:1.2.0.10 pkgsrc-2016Q4-base:1.2 pkgsrc-2016Q3:1.2.0.8 pkgsrc-2016Q3-base:1.2 pkgsrc-2016Q2:1.2.0.6 pkgsrc-2016Q2-base:1.2 pkgsrc-2016Q1:1.2.0.4 pkgsrc-2016Q1-base:1.2 pkgsrc-2015Q4:1.2.0.2 pkgsrc-2015Q4-base:1.2; locks; strict; comment @# @; 1.4 date 2018.06.05.06.06.55; author dbj; state dead; branches; next 1.3; commitid gzXnyAJ14Bfsv3FA; 1.3 date 2018.01.31.19.35.23; author adam; state Exp; branches; next 1.2; commitid rQcNBQH695HUZ3pA; 1.2 date 2015.10.29.14.48.04; author adam; state Exp; branches; next 1.1; commitid TtJ4qFecA1MuV0Hy; 1.1 date 2015.10.28.15.52.11; author adam; state Exp; branches; next ; commitid hc0vJURbbjznjTGy; desc @@ 1.4 log @qt5-qtbase: fix shared library plugin naming on darwin @ text @$NetBSD: patch-mkspecs_features_create__cmake.prf,v 1.3 2018/01/31 19:35:23 adam Exp $ Fix for shared libraries naming on Darwin. --- mkspecs/features/create_cmake.prf.orig 2015-10-13 04:35:32.000000000 +0000 +++ mkspecs/features/create_cmake.prf @@@@ -213,8 +213,8 @@@@ mac { CMAKE_LIB_FILE_LOCATION_RELEASE = Qt$${CMAKE_MODULE_NAME}$${QT_LIBINFIX}.framework/Qt$${CMAKE_MODULE_NAME}$${QT_LIBINFIX} CMAKE_BUILD_IS_FRAMEWORK = "true" } else { - CMAKE_LIB_FILE_LOCATION_DEBUG = lib$${CMAKE_QT_STEM}_debug.$$eval(QT.$${MODULE}.VERSION).dylib - CMAKE_LIB_FILE_LOCATION_RELEASE = lib$${CMAKE_QT_STEM}.$$eval(QT.$${MODULE}.VERSION).dylib + CMAKE_LIB_FILE_LOCATION_DEBUG = lib$${CMAKE_QT_STEM}_debug.$${QT_MAJOR_VERSION}.dylib + CMAKE_LIB_FILE_LOCATION_RELEASE = lib$${CMAKE_QT_STEM}.$${QT_MAJOR_VERSION}.dylib } } } else:win32 { @ 1.3 log @qt5-qtbase: fix plug-in extension on Darwin @ text @d1 1 a1 1 $NetBSD: patch-mkspecs_features_create__cmake.prf,v 1.2 2015/10/29 14:48:04 adam Exp $ @ 1.2 log @Fix cmakes on Darwin, part 2 @ text @d1 1 a1 1 $NetBSD: patch-mkspecs_features_create__cmake.prf,v 1.1 2015/10/28 15:52:11 adam Exp $ a6 9 @@@@ -147,7 +147,7 @@@@ contains(CONFIG, plugin) { } } else { mac { - isEmpty(CMAKE_STATIC_TYPE): CMAKE_PlUGIN_EXT = .dylib + isEmpty(CMAKE_STATIC_TYPE): CMAKE_PlUGIN_EXT = .so else: CMAKE_PlUGIN_EXT = .a CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT} @ 1.1 log @Fix for X11 installation. Fix for cmake files on Darwin. @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 --- mkspecs/features/create_cmake.prf.orig 2015-10-28 08:15:14.000000000 +0000 d7 9 d22 2 a23 2 + CMAKE_LIB_FILE_LOCATION_DEBUG = lib$${CMAKE_QT_STEM}_debug.$$QT_MAJOR_VERSION.dylib + CMAKE_LIB_FILE_LOCATION_RELEASE = lib$${CMAKE_QT_STEM}.$$QT_MAJOR_VERSION.dylib @