diff options
author | Roland Mainz <roland.mainz@nrubsig.org> | 2005-04-24 01:10:12 +0000 |
---|---|---|
committer | Roland Mainz <roland.mainz@nrubsig.org> | 2005-04-24 01:10:12 +0000 |
commit | a369d390a87ab0189c465be6cfd914e4b9329691 (patch) | |
tree | 198ccfd7522d6ade85720689cd5d42ab5a62b64c /dix/xpstubs.c | |
parent | 13fcfee37305f46e95ff81d7d5eec4d88a63a63b (diff) |
xc/config/cf/X11.tmplXORG-6_8_99_4
xc/programs/Xserver/Xext/Imakefile
xc/programs/Xserver/dix/Imakefile
xc/programs/Xserver/dix/main.c
xc/programs/Xserver/dix/xpstubs.c
xc/programs/Xserver/mi/miinitext.c
//bugs.freedesktop.org/show_bug.cgi?id=2792) attachment #2526
(https://bugs.freedesktop.org/attachment.cgi?id=2526) bug 2792 part II:
Make Xprint headers in dix/, mi/, os/ and Xext/ conditional on whether
the Xprint extension is build or not. Patch by Egbert Eich
<eich@freedesktop.org> and Roland Mainz <roland.mainz@nrubsig.org>.
Diffstat (limited to 'dix/xpstubs.c')
-rw-r--r-- | dix/xpstubs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dix/xpstubs.c b/dix/xpstubs.c index d04be0969..f7f37b64a 100644 --- a/dix/xpstubs.c +++ b/dix/xpstubs.c @@ -29,7 +29,9 @@ from The Open Group. #include "misc.h" #include "font.h" +#ifdef XPRINT #include "DiPrint.h" +#endif Bool XpClientIsBitmapClient( @@ -45,6 +47,7 @@ XpClientIsPrintClient( { return FALSE; } +#ifdef XPRINT int PrinterOptions( int argc, @@ -66,5 +69,5 @@ void PrinterUseMsg(void) void PrinterInitGlobals(void) { } - +#endif /* XPRINT */ |