mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
* Update Qt5 to 5.7.1 * Move Qt4 binaries to lib/qt4/bin * Move Qt5 libraries to lib/qt5/lib By moving the libraries we should finally be able to get rid of the inplace upgrade bug (see ports bugs 194088, 195105 and 198720): when Qt5's libraries were lying in /usr/local/lib, which would often get added by pkgconfig to the linker paths via dependencies, the already installed libraries were linked against, instead of the ones that were being built. This forced us to make sure, that -L${WRKSRC}/lib was always coming before -L/usr/local/lib in the linker flags. With this change this should no longer be the case. * Rename some ports to match the rest (foo-qtX -> qtX-foo) * Depend on new port misc/qtchooser [see UPDATING & CHANGES] There are several new Qt5 ports which all have been created by Marie Loise Nolden <nolden@kde.org>. Thanks again. PR: 216797 Exp-Run by: antoine Reviewed by: rakuco, mat, groot_kde.org Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D9213
18 lines
644 B
Text
18 lines
644 B
Text
--- ../mkspecs/common/clang-unix.conf.orig 2013-12-05 22:57:53.135156000 +0000
|
|
+++ ../mkspecs/common/clang-unix.conf 2013-12-05 23:09:36.960149415 +0000
|
|
@@ -0,0 +1,15 @@
|
|
+#
|
|
+# Qmake configuration for the Clang compiler on *nix-systems
|
|
+#
|
|
+# Before making changes to this file, please read the comment in
|
|
+# gcc-base.conf, to make sure the change goes in the right place.
|
|
+#
|
|
+# To verify that your change has the desired effect on the final configuration
|
|
+# you can use the manual test in tests/manual/mkspecs.
|
|
+#
|
|
+
|
|
+include(gcc-base-unix.conf)
|
|
+include(clang.conf)
|
|
+
|
|
+QMAKE_LFLAGS_RELEASE += -Wl,-O1
|
|
+QMAKE_LFLAGS_NOUNDEF += -Wl,--no-undefined
|