mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-10 21:03:51 +01:00
2007-03-17 Hans Breuer <hans@breuer.org> * glib/makefile.msc.in glib/pcre/makefile.msc glib/update-pcre/update.sh : define PCRE_STATIC to reflect the inclusion of pcre as LIB, not stand-alone DLL. Also set NEWLINE=-1 to match any newline by default, use of ../../build/win32/make.msc * glib/gregex.h : minimal includes of <glib/*.H> instead of <glib.h> * glib/gnulib/makefile.msc : make use of ../../build/win32/make.msc * tests/regex-test.c(verbose): don't pass a string containing '%' as first parameter to g_print () (test_match) : for the unexpected case output pattern and string escaped * tests/child-test.c tests/slice-color.c : fix c99ism * tests/slice-test.c : fix c99ism and gccism * tests/mapping-test.c tests/base-64-tests.c : don't #include <unistd.h> unconditionally * tests/option-test.c : use G_GINT64_CONSTANT() instead of direct LL * tests/makefile.msc.in : more tests build svn path=/trunk/; revision=5423
50 lines
899 B
Plaintext
50 lines
899 B
Plaintext
TOP = ..\..\..
|
|
!INCLUDE ..\..\build\win32\make.msc
|
|
|
|
INCLUDES = \
|
|
-I ..\.. \
|
|
-I ..
|
|
|
|
DEFINES = \
|
|
-DPCRE_STATIC \
|
|
-DHAVE_CONFIG_H \
|
|
-DHAVE_LONG_LONG_FORMAT \
|
|
-DSUPPORT_UCP \
|
|
-DSUPPORT_UTF8 \
|
|
-DNEWLINE=-1 \
|
|
-DMATCH_LIMIT=10000000 \
|
|
-DMATCH_LIMIT_RECURSION=10000000 \
|
|
-DMAX_NAME_SIZE=32 \
|
|
-DMAX_NAME_COUNT=10000 \
|
|
-DMAX_DUPLENGTH=30000 \
|
|
-DLINK_SIZE=2 \
|
|
-DEBCDIC=0 \
|
|
-DPOSIX_MALLOC_THRESHOLD=10
|
|
|
|
OBJECTS = \
|
|
pcre_chartables.obj \
|
|
pcre_compile.obj \
|
|
pcre_config.obj \
|
|
pcre_dfa_exec.obj \
|
|
pcre_exec.obj \
|
|
pcre_fullinfo.obj \
|
|
pcre_get.obj \
|
|
pcre_globals.obj \
|
|
pcre_info.obj \
|
|
pcre_maketables.obj \
|
|
pcre_newline.obj \
|
|
pcre_ord2utf8.obj \
|
|
pcre_refcount.obj \
|
|
pcre_study.obj \
|
|
pcre_tables.obj \
|
|
pcre_try_flipped.obj \
|
|
pcre_ucp_searchfuncs.obj \
|
|
pcre_valid_utf8.obj \
|
|
pcre_version.obj \
|
|
pcre_xclass.obj \
|
|
|
|
all : pcre.lib
|
|
|
|
pcre.lib : $(OBJECTS)
|
|
lib -out:pcre.lib $(OBJECTS)
|