diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-04-11 10:21:40 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-06-16 15:15:25 -0400 |
commit | 2996458c2fc88671ba8626de984b2f082042dc62 (patch) | |
tree | 0e189576a4ce308025023f325ddbc9c865e9d28a | |
parent | be8297b5edd06e8cbf41b06da4588d5f548e627b (diff) |
config: remove AH_TOP autoheader statement
The generated config.h does not need to include xorg-server.h
for the content it provides.
Add #include <xorg-server.h> in .[hc] files as needed.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | src/xf86Aiptek.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7c090f8..6395548 100644 --- a/configure.ac +++ b/configure.ac @@ -45,7 +45,6 @@ AC_DISABLE_STATIC AC_PROG_LIBTOOL AC_PROG_CC -AH_TOP([#include "xorg-server.h"]) AC_ARG_WITH(xorg-module-dir, AC_HELP_STRING([--with-xorg-module-dir=DIR], diff --git a/src/xf86Aiptek.h b/src/xf86Aiptek.h index 2842775..810185b 100644 --- a/src/xf86Aiptek.h +++ b/src/xf86Aiptek.h @@ -56,6 +56,7 @@ # endif #endif +#include <xorg-server.h> #include <xorgVersion.h> #ifndef XFree86LOADER |