summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew Parsons <dparsons@debian.org>2008-05-18 01:34:40 +1000
committerDrew Parsons <dparsons@debian.org>2008-05-18 02:17:34 +1000
commitc7164e9c393a7e333063ac5af89b130e179c072e (patch)
tree4d91c8d0bbbc5140dc2403a1cd95a48bfc1caf3f
parent46f6e0d89e2f695e8980b76c7120358e07fe4f74 (diff)
Create dummy modinit.h for Xext.
modinit.h had been part of hw/xfree86/dixmods/extmod, enabling initialisation of extension modules. Xprint does not implement extension modules, so the header file is provided as a dummy file instead, now that the xprint ddx is separated from the xfree86 ddx..
-rw-r--r--Xext/Makefile.am2
-rw-r--r--Xext/modinit.h8
2 files changed, 8 insertions, 2 deletions
diff --git a/Xext/Makefile.am b/Xext/Makefile.am
index b03fedaa3..2d5f2e9c9 100644
--- a/Xext/Makefile.am
+++ b/Xext/Makefile.am
@@ -10,8 +10,6 @@ else
noinst_LTLIBRARIES = libXext.la
endif
-INCLUDES = -I$(top_srcdir)/hw/xfree86/dixmods/extmod
-
AM_CFLAGS = $(DIX_CFLAGS)
if XORG
diff --git a/Xext/modinit.h b/Xext/modinit.h
new file mode 100644
index 000000000..87c9d28cd
--- /dev/null
+++ b/Xext/modinit.h
@@ -0,0 +1,8 @@
+/* Initialisation of Extension Modules is enabled via modinit.
+
+ This was implemented in the Xorg xserver (xfree86 ddx),
+ see hw/xfree86/dixmods/extmod, but is not implemented for Xprt (xprint ddx)
+
+ This header file, referenced in the Xext extension files, is therefore given
+ as a dummy header file for xprint.
+*/