diff options
author | Adam Jackson <ajax@redhat.com> | 2009-01-20 22:57:35 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-01-20 22:57:35 -0500 |
commit | e1927f80deabe0268dc18b4a9f3ceda1325171f5 (patch) | |
tree | 4a15c9ca8d141b2c4474d155485c1463ca579429 /src/stubs | |
parent | 732191d5d6ad58caab25e24df16fb89efaea2e9a (diff) |
Remove printer font support.
Xprint is just insidious, isn't it.
Diffstat (limited to 'src/stubs')
-rw-r--r-- | src/stubs/Makefile.am | 3 | ||||
-rw-r--r-- | src/stubs/xpstubs.c | 21 |
2 files changed, 1 insertions, 23 deletions
diff --git a/src/stubs/Makefile.am b/src/stubs/Makefile.am index cb3bb35..4d60c2a 100644 --- a/src/stubs/Makefile.am +++ b/src/stubs/Makefile.am @@ -22,5 +22,4 @@ libstubs_la_SOURCES = \ servclient.c \ setfntauth.c \ stfntcfnt.c \ - stubs.h \ - xpstubs.c + stubs.h diff --git a/src/stubs/xpstubs.c b/src/stubs/xpstubs.c deleted file mode 100644 index 939b34f..0000000 --- a/src/stubs/xpstubs.c +++ /dev/null @@ -1,21 +0,0 @@ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif -#include "stubs.h" - -#ifdef __SUNPRO_C -#pragma weak XpClientIsBitmapClient -#pragma weak XpClientIsPrintClient -#endif - -weak Bool -XpClientIsBitmapClient(ClientPtr client) -{ - return True; -} - -weak Bool -XpClientIsPrintClient(ClientPtr client, FontPathElementPtr fpe) -{ - return False; -} |