Skip to content

Commit

Permalink
Fixed|qmake|Mac OS X: Removed an unsupported option when using an old…
Browse files Browse the repository at this point in the history
… compiler
  • Loading branch information
skyjake committed Feb 2, 2013
1 parent 0a23625 commit db42876
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions doomsday/config_macx.pri
Expand Up @@ -94,8 +94,8 @@ isEmpty(qtbase):!isEmpty(QMAKE_MAC_SDK) {

# What's our arch?
archs = "Architectures:"
ppc: archs += ppc32
x86: archs += intel32
ppc: archs += ppc32
x86: archs += intel32
x86_64: archs += intel64
echo($$archs)

Expand Down
12 changes: 7 additions & 5 deletions doomsday/plugins/config_plugin.pri
Expand Up @@ -9,11 +9,13 @@ win32 {
TARGET_EXT = .dll
}

*-g++* | *-gcc* | *-clang* {
# In the game plugins there is a large number of thinkfunc_t related
# casting from various types of functions. This should be removed
# when the issue has been resolved:
QMAKE_CFLAGS_WARN_ON += -Wno-incompatible-pointer-types
!deng_macx4u_32bit : !deng_macx6_32bit_64bit {
*-g++* | *-gcc* | *-clang* {
# In the game plugins there is a large number of thinkfunc_t related
# casting from various types of functions. This should be removed
# when the issue has been resolved:
QMAKE_CFLAGS_WARN_ON += -Wno-incompatible-pointer-types
}
}

INCLUDEPATH += $$DENG_API_DIR
Expand Down

0 comments on commit db42876

Please sign in to comment.