*plugin/pcre: fixed to compile with MSC9

git-svn-id: svn://ultimatepp.org/upp/trunk@3909 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-09-25 11:28:03 +00:00
parent 42ef8134d2
commit 080f6c0b41
3 changed files with 14 additions and 1 deletions

View file

@ -3,6 +3,9 @@ description "Non-GUI code. Streams, NTL containers, concrete types, Value, XML,
acceptflags
USEMALLOC;
uses
plugin\pcre;
uses(WIN32) plugin\z;
library(MSC !MSC8ARM) "kernel32 user32";

View file

@ -1,4 +1,5 @@
#ifndef _Core_icpp_init_stub
#define _Core_icpp_init_stub
#include "plugin\z/init"
#include "plugin\pcre/init"
#endif

View file

@ -1,7 +1,16 @@
#define SUPPORT_UTF8
#include <Core/Core.h>
using namespace Upp;
#define SUPPORT_UTF8
#define SUPPORT_UCP
#define HAVE_CONFIG_H
#define HAVE_STDINT_H 0
#define HAVE_INTTYPES_H 0
#define int64_t int64
#ifdef COMPILER_GCC
#define PCRE_STATIC
#endif