diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-01-15 21:03:27 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-01-15 21:03:27 -0800 |
commit | 1c504dff8a84804888f18ee9b184f0c4584185d7 (patch) | |
tree | 01e8c611946f47d1ec5440b68d206be83847e21c /configure.ac | |
parent | 717a961528ec69a6e630d536e15568670e0b398a (diff) |
XQuartz: Fix builddir != srcdir issues and undef _XSERVER64 where appropriate on fat binary compilation
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 55b5ec75d..2cf1643c8 100644 --- a/configure.ac +++ b/configure.ac @@ -45,7 +45,9 @@ dnl drivers. AC_CONFIG_HEADERS(include/xorg-server.h) dnl dix-config.h covers most of the DIX (i.e. everything but the DDX, not just dnl dix/). -AC_CONFIG_HEADERS(include/dix-config.h) +AC_CONFIG_HEADERS(include/dix-config.h, [mv include/dix-config.h include/dix-config.h.tmp + sed 's|/undef|#undef|' < include/dix-config.h.tmp > include/dix-config.h + rm include/dix-config.h.tmp]) dnl xorg-config.h covers the Xorg DDX. AC_CONFIG_HEADERS(include/xorg-config.h) dnl xkb-config.h covers XKB for the Xorg and Xnest DDXs. |