-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release: Patch Qt for macOS so it can build against futimens Increase the deployment_target value in qtbase.conf
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# | ||
# qmake configuration for Clang on OS X | ||
# | ||
|
||
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.13 | ||
|
||
QMAKE_APPLE_DEVICE_ARCHS = x86_64 | ||
|
||
# Opt-in xcb QPA support with XQuartz: | ||
# | ||
# configure \ | ||
# -pkg-config \ | ||
# -fontconfig -system-freetype \ | ||
# -system-xcb -no-opengl | ||
# | ||
# Ensure that pkg-config is properly configured, or that | ||
# PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig:/opt/X11/share/pkgconfig | ||
# is set in your build environment. | ||
# | ||
# If you don't want to use pkg-config, you can add: | ||
# -L/opt/X11/lib -I/opt/X11/include | ||
# to the configure options. | ||
# | ||
# Due to irreconcilable differences between Cocoa | ||
# and X11, OpenGL is currently not supported. | ||
|
||
QMAKE_LIBS_X11 = -lX11 -lXext -lm | ||
QMAKE_LIBDIR_X11 = /opt/X11/lib | ||
QMAKE_INCDIR_X11 = /opt/X11/include | ||
|
||
include(../common/macx.conf) | ||
include(../common/gcc-base-mac.conf) | ||
include(../common/clang.conf) | ||
include(../common/clang-mac.conf) | ||
|
||
load(qt_config) |