* mingw32ce has no locale stuff

* libmman does not exist anymore


SVN revision: 36127
This commit is contained in:
Vincent Torri 2008-09-20 10:02:09 +00:00
parent 0b93ba01a6
commit b5ac42942c
4 changed files with 5 additions and 6 deletions

View File

@ -6,6 +6,6 @@ includedir=@includedir@
Name: evil
Description: Library that ports on Windows some specific Unix functions.
Version: @VERSION@
Libs: -L${libdir} -levil -lmman -ldl
Libs: -L${libdir} -levil -ldl
Libs.private:
Cflags: -I${includedir}

View File

@ -66,7 +66,6 @@ extern "C" {
#include <limits.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <locale.h>
#ifdef PATH_MAX

View File

@ -6,7 +6,7 @@
#include "Evil.h"
#ifndef __CEGCC__
#if ! (defined(__CEGCC__) || defined(__MINGW32CE__))
static char *
replace(char *prev, char *value)
@ -47,4 +47,4 @@ nl_langinfo(nl_item index)
return nothing;
}
#endif /* ! __CEGCC__ */
#endif /* __CEGCC__ || __MINGW32CE__ */

View File

@ -2,7 +2,7 @@
#define __EVIL_LANGINFO_H__
#ifndef __CEGCC__
#if ! (defined(__CEGCC__) || defined(__MINGW32CE__))
#include <locale.h>
@ -33,7 +33,7 @@ enum {
EAPI char *nl_langinfo(nl_item index);
#endif /* ! __CEGCC__ */
#endif /* __CEGCC__ || __MINGW32CE__ */
#endif /*__EVIL_LANGINFO_H__ */