mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
wxWidgets: Fix build on case-sensitive macOS
On macOS, wxWidget’s tooltip.mm tries to include a system header with an improper capitalization (Appkit instead of AppKit), which causes the build to fail if the system headers are located on a case-sensitive filesystem.
This commit is contained in:
parent
ad956559d5
commit
671fdb8acf
@ -24,7 +24,7 @@
|
|||||||
#include "wx/osx/uma.h"
|
#include "wx/osx/uma.h"
|
||||||
|
|
||||||
#if wxOSX_USE_COCOA_OR_CARBON
|
#if wxOSX_USE_COCOA_OR_CARBON
|
||||||
#include <Appkit/Appkit.h>
|
#include <AppKit/AppKit.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// FYI a link to help with implementing: http://www.cocoadev.com/index.pl?LittleYellowBox
|
// FYI a link to help with implementing: http://www.cocoadev.com/index.pl?LittleYellowBox
|
||||||
|
Loading…
Reference in New Issue
Block a user