no sym links on win32, no lstat in msvcrt
authorHans Breuer <hans@breuer.org>
Sun, 10 Feb 2002 16:42:36 +0000 (16:42 +0000)
committerHans Breuer <hans@src.gnome.org>
Sun, 10 Feb 2002 16:42:36 +0000 (16:42 +0000)
2002-02-10  Hans Breuer  <hans@breuer.org>

* glib/gfileutils.c : no sym links on win32, no lstat in msvcrt

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

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gfileutils.c
tests/makefile.msc.in

index 3ebbf3e..c3317b2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-02-10  Hans Breuer  <hans@breuer.org>
+
+       * glib/gfileutils.c : no sym links on win32, no lstat in msvcrt
+
+       * tests/makefile.msc.in : added uri-test
+
 2002-02-09  Darin Adler  <darin@bentspoon.com>
 
        * glib/gmarkup.c: (xml_isspace): New.
index 3ebbf3e..c3317b2 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-10  Hans Breuer  <hans@breuer.org>
+
+       * glib/gfileutils.c : no sym links on win32, no lstat in msvcrt
+
+       * tests/makefile.msc.in : added uri-test
+
 2002-02-09  Darin Adler  <darin@bentspoon.com>
 
        * glib/gmarkup.c: (xml_isspace): New.
index 3ebbf3e..c3317b2 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-10  Hans Breuer  <hans@breuer.org>
+
+       * glib/gfileutils.c : no sym links on win32, no lstat in msvcrt
+
+       * tests/makefile.msc.in : added uri-test
+
 2002-02-09  Darin Adler  <darin@bentspoon.com>
 
        * glib/gmarkup.c: (xml_isspace): New.
index 3ebbf3e..c3317b2 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-10  Hans Breuer  <hans@breuer.org>
+
+       * glib/gfileutils.c : no sym links on win32, no lstat in msvcrt
+
+       * tests/makefile.msc.in : added uri-test
+
 2002-02-09  Darin Adler  <darin@bentspoon.com>
 
        * glib/gmarkup.c: (xml_isspace): New.
index 3ebbf3e..c3317b2 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-10  Hans Breuer  <hans@breuer.org>
+
+       * glib/gfileutils.c : no sym links on win32, no lstat in msvcrt
+
+       * tests/makefile.msc.in : added uri-test
+
 2002-02-09  Darin Adler  <darin@bentspoon.com>
 
        * glib/gmarkup.c: (xml_isspace): New.
index 3ebbf3e..c3317b2 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-10  Hans Breuer  <hans@breuer.org>
+
+       * glib/gfileutils.c : no sym links on win32, no lstat in msvcrt
+
+       * tests/makefile.msc.in : added uri-test
+
 2002-02-09  Darin Adler  <darin@bentspoon.com>
 
        * glib/gmarkup.c: (xml_isspace): New.
index 3ebbf3e..c3317b2 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-10  Hans Breuer  <hans@breuer.org>
+
+       * glib/gfileutils.c : no sym links on win32, no lstat in msvcrt
+
+       * tests/makefile.msc.in : added uri-test
+
 2002-02-09  Darin Adler  <darin@bentspoon.com>
 
        * glib/gmarkup.c: (xml_isspace): New.
index 3ebbf3e..c3317b2 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-10  Hans Breuer  <hans@breuer.org>
+
+       * glib/gfileutils.c : no sym links on win32, no lstat in msvcrt
+
+       * tests/makefile.msc.in : added uri-test
+
 2002-02-09  Darin Adler  <darin@bentspoon.com>
 
        * glib/gmarkup.c: (xml_isspace): New.
index 9a51f2c..37b06f5 100644 (file)
@@ -98,10 +98,14 @@ g_file_test (const gchar *filename,
 
   if (test & G_FILE_TEST_IS_SYMLINK)
     {
+#ifdef G_OS_WIN32
+      /* no sym links on win32, no lstat in msvcrt */
+#else
       struct stat s;
 
       if ((lstat (filename, &s) == 0) && S_ISLNK (s.st_mode))
         return TRUE;
+#endif
     }
   
   if (test & (G_FILE_TEST_IS_REGULAR | G_FILE_TEST_IS_DIR))
index eaed071..3dcda2d 100644 (file)
@@ -45,7 +45,8 @@ TESTS = \
        tree-test.exe   \
        type-test.exe   \
        unicode-caseconv.exe \
-       unicode-encoding.exe
+       unicode-encoding.exe \
+       uri-test.exe
 
 DLLS = \
        libmoduletestplugin_a.dll \