removed -GD to compile with msvc9 (vs2008) with less complains
authorHans Breuer <hans@breuer.org>
Sun, 9 Dec 2007 14:38:26 +0000 (14:38 +0000)
committerHans Breuer <hans@src.gnome.org>
Sun, 9 Dec 2007 14:38:26 +0000 (14:38 +0000)
2007-12-09  Hans Breuer  <hans@breuer.org>

* **/makefile.msc glib/makefile.msc.in : removed -GD to compile
with msvc9 (vs2008) with less complains

* glibconfig.h.win32.in : #define G_HAVE_ISO_VARARGS 1 for
msv8 (vs2005) and above

* glib/gfileutils.c : s/stricmp/_stricmp/
* msvc_recommended_pragmas.h : work around Microsoft's premature
attempt to deprecate the C-Library

* tests/makefile.msc.in : added checksum-test

svn path=/trunk/; revision=6076

ChangeLog
gio/makefile.msc
glib/gfileutils.c
glib/gnulib/makefile.msc
glib/pcre/makefile.msc
glibconfig.h.win32.in
msvc_recommended_pragmas.h
tests/makefile.msc.in

index 6f2364b..361f855 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2007-12-09  Hans Breuer  <hans@breuer.org>
+
+       * **/makefile.msc glib/makefile.msc.in : removed -GD to compile
+       with msvc9 (vs2008) with less complains
+       
+       * glibconfig.h.win32.in : #define G_HAVE_ISO_VARARGS 1 for
+       msv8 (vs2005) and above
+       
+       * glib/gfileutils.c : s/stricmp/_stricmp/
+       * msvc_recommended_pragmas.h : work around Microsoft's premature 
+       attempt to deprecate the C-Library
+
+       * tests/makefile.msc.in : added checksum-test
+
 2007-12-08  Christian Persch  <chpe@gnome.org>
 
        * gio/glocalfileinfo.c: (get_thumbnail_attributes): Add forgotten
index 5e3efd0..d4e7b8d 100644 (file)
@@ -254,4 +254,4 @@ libgio-$(PKG_VER).dll : $(OBJECTS) $(PACKAGE).def
        user32.lib advapi32.lib shell32.lib wsock32.lib $(LDFLAGS) /def:$(PACKAGE).def
 
 .c.obj :
-       $(CC) $(CFLAGS) -GD -c $(PKG_CFLAGS) $<
+       $(CC) $(CFLAGS) -c $(PKG_CFLAGS) $<
index 8921188..c11420d 100644 (file)
@@ -221,10 +221,10 @@ g_file_test (const gchar *filename,
       if (lastdot == NULL)
        return FALSE;
 
-      if (stricmp (lastdot, ".exe") == 0 ||
-         stricmp (lastdot, ".cmd") == 0 ||
-         stricmp (lastdot, ".bat") == 0 ||
-         stricmp (lastdot, ".com") == 0)
+      if (_stricmp (lastdot, ".exe") == 0 ||
+         _stricmp (lastdot, ".cmd") == 0 ||
+         _stricmp (lastdot, ".bat") == 0 ||
+         _stricmp (lastdot, ".com") == 0)
        return TRUE;
 
       /* Check if it is one of the types listed in %PATHEXT% */
index a8fc743..da2b4cf 100644 (file)
@@ -1,7 +1,7 @@
 TOP = ..\..\..
 !INCLUDE ..\..\build\win32\make.msc
 
-INCLUDES = -I ..\.. 
+INCLUDES = -I ..\.. -I ..
 DEFINES = -DHAVE_CONFIG_H -DHAVE_LONG_LONG_FORMAT
 
 OBJECTS = \
index a9306ad..8939a72 100644 (file)
@@ -18,11 +18,11 @@ DEFINES = \
        -DMAX_NAME_COUNT=10000 \
        -DMAX_DUPLENGTH=30000 \
        -DLINK_SIZE=2 \
-       -DEBCDIC=0 \
+       -UEBCDIC \
        -DPOSIX_MALLOC_THRESHOLD=10
 
 OBJECTS = \
-       \.obj \
+       pcre_chartables.obj \
        pcre_compile.obj \
        pcre_config.obj \
        pcre_dfa_exec.obj \
@@ -31,7 +31,6 @@ OBJECTS = \
        pcre_get.obj \
        pcre_globals.obj \
        pcre_info.obj \
-       pcre_internal.obj \
        pcre_maketables.obj \
        pcre_newline.obj \
        pcre_ord2utf8.obj \
@@ -43,9 +42,6 @@ OBJECTS = \
        pcre_valid_utf8.obj \
        pcre_version.obj \
        pcre_xclass.obj \
-       ucp.obj \
-       ucpinternal.obj \
-       ucptable.h.obj \
 
 all : pcre.lib
 
index 7d6c345..b7e8b4c 100644 (file)
@@ -134,6 +134,11 @@ typedef gint64 goffset;
 #endif
 
 #define G_HAVE_GNUC_VARARGS 1
+#else /* _MSC_VER */
+/* varargs macros available since msvc8 (vs2005) */
+#  if _MSC_VER >= 1400
+#    define G_HAVE_ISO_VARARGS 1
+#   endif
 #endif /* not _MSC_VER */
 #define G_HAVE_GROWING_STACK 0
 
index ee34eef..cb9370c 100644 (file)
@@ -26,3 +26,6 @@
 
 #pragma warning(disable:4244)  /* No possible loss of data warnings */
 #pragma warning(disable:4305)   /* No truncation from int to char warnings */
+
+/* work around Microsoft's premature attempt to deprecate the C-Library */
+#pragma warning(disable:4996)   /* This function or variable may be unsafe. */
index c1f426f..d04ad74 100644 (file)
@@ -25,6 +25,7 @@ TESTS = \
        bit-test.exe \
        bookmarkfile-test.exe \
        child-test.exe \
+       checksum-test.exe \
        completion-test.exe \
        convert-test.exe \
        date-test.exe   \