diff options
author | Mikhail Gusarov <dottedmag@dottedmag.net> | 2010-05-10 22:52:40 +0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-05-14 20:02:20 -0700 |
commit | 3db0064e4b6108716767b136ba5867c4cdf57f99 (patch) | |
tree | 3ff38ae4ca931efe481b0d182e5ebd581009c6e0 /src/encparse.c | |
parent | 8029fc07fc28e427979c81dd50087083e441d65d (diff) |
unifdef FONTENC_NO_LIBFONT
This symbol was unconditionally defined in Makefile
Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
Reviewed-by: Jamey Sharp <jamey@minilop.net>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/encparse.c')
-rw-r--r-- | src/encparse.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/encparse.c b/src/encparse.c index c738878..27215df 100644 --- a/src/encparse.c +++ b/src/encparse.c @@ -34,13 +34,6 @@ THE SOFTWARE. #include <strings.h> #endif -#ifndef FONTENC_NO_LIBFONT - -#include <X11/fonts/fntfilio.h> -#include <X11/fonts/fntfilst.h> - -#else - #include <stdlib.h> #define xalloc(n) malloc(n) #define xrealloc(p, n) realloc(p, n) @@ -55,8 +48,6 @@ typedef gzFile FontFilePtr; #define MAXFONTFILENAMELEN 1024 #define MAXFONTNAMELEN 1024 -#endif - #include <X11/fonts/fontenc.h> #include "fontencI.h" |