Remove unnecessary inclusion of config_lib.h

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12963 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2018-06-22 08:35:05 +00:00
parent 448e4a00c2
commit aafcaaef7d
2 changed files with 4 additions and 11 deletions

View File

@ -14,14 +14,12 @@
* http://www.fltk.org/str.php * http://www.fltk.org/str.php
*/ */
#include "../config_lib.h"
/* /*
* Unicode to UTF-8 conversion functions. * Unicode to UTF-8 conversion functions.
*
* This file is compiled and linked only for X11 w/o Xft.
*/ */
#if defined(FL_CFG_WIN_X11)
#include "../Xutf8.h" #include "../Xutf8.h"
/*** NOTE : all functions are LIMITED to 24 bits Unicode values !!! ***/ /*** NOTE : all functions are LIMITED to 24 bits Unicode values !!! ***/
@ -224,8 +222,6 @@ XFastConvertUtf8ToUcs(const unsigned char *buf,
return -1; return -1;
} }
#endif /* FL_CFG_WIN_X11 */
/* /*
* End of "$Id$". * End of "$Id$".
*/ */

View File

@ -14,12 +14,11 @@
* http://www.fltk.org/str.php * http://www.fltk.org/str.php
*/ */
#include "../config_lib.h"
/* /*
* X11 UTF-8 text drawing functions. * X11 UTF-8 text drawing functions.
*
* This file is compiled and linked only for X11 w/o Xft.
*/ */
#if defined(FL_CFG_WIN_X11)
#include "../Xutf8.h" #include "../Xutf8.h"
#include <X11/Xlib.h> #include <X11/Xlib.h>
@ -1024,8 +1023,6 @@ XFreeUtf8FontStruct(Display *dpy,
free(font_set); free(font_set);
} }
#endif /* FL_CFG_WIN_X11 */
/* /*
* End of "$Id$". * End of "$Id$".
*/ */