diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2015-03-29 23:18:49 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-03-31 09:02:28 -0700 |
commit | d3b9c47c849d039493c5e0ca5c3af8affe738746 (patch) | |
tree | ac70ec564963d956ef7de0213a27519f940ff86b | |
parent | 7088816fee0ca7d609c7bca41ef8c3fc938556f5 (diff) |
Fix XQuartz build
Fix XQuartz build since commit e036cbfc "Make PseudoramiXExtensionInit()
prototype more generally available"
Add #include "nonsdk_extinit.h" to xprScreen.c
Add #include "nonsdk_extinit.h" to miinitext.c under INXQUARTZ to provide
declarations used under INXQUARTZ
Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Tested-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | hw/xquartz/xpr/xprScreen.c | 2 | ||||
-rw-r--r-- | mi/miinitext.c | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/hw/xquartz/xpr/xprScreen.c b/hw/xquartz/xpr/xprScreen.c index d0a525ff4..30f2218b6 100644 --- a/hw/xquartz/xpr/xprScreen.c +++ b/hw/xquartz/xpr/xprScreen.c @@ -54,6 +54,8 @@ #include "damage.h" #endif +#include "nonsdk_extinit.h" + #if MAC_OS_X_VERSION_MIN_REQUIRED < 1090 // From NSApplication.h extern const double NSAppKitVersionNumber; diff --git a/mi/miinitext.c b/mi/miinitext.c index 5872bf534..086d2c3fb 100644 --- a/mi/miinitext.c +++ b/mi/miinitext.c @@ -108,6 +108,9 @@ SOFTWARE. #include "misc.h" #include "extension.h" #include "extinit.h" +#ifdef INXQUARTZ +#include "nonsdk_extinit.h" +#endif #include "micmap.h" #include "globals.h" |