WIN32 fix
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 3 Sep 2002 12:22:21 +0000 (12:22 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 3 Sep 2002 12:22:21 +0000 (12:22 +0000)
index/dir.c
win/makefile

index 420c4f3..3019221 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: dir.c,v 1.24 2002-09-03 11:44:54 adam Exp $
+/* $Id: dir.c,v 1.25 2002-09-03 12:22:21 adam Exp $
    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
    Index Data Aps
 
@@ -38,9 +38,11 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 int zebra_file_stat (const char *file_name, struct stat *buf,
                      int follow_links)
 {
-    if (follow_links)
-        return stat(file_name, buf);
-    return lstat(file_name, buf);
+#ifndef WIN32
+    if (!follow_links)
+        return lstat(file_name, buf);
+#endif
+    return stat(file_name, buf);
 }
 
 struct dir_entry *dir_open (const char *rep, const char *base,
index d787164..8150743 100644 (file)
@@ -1,11 +1,11 @@
 # Zebra makefile for MS NMAKE
-# $Id: makefile,v 1.16 2002-08-30 11:28:31 adam Exp $
+# $Id: makefile,v 1.17 2002-09-03 12:22:21 adam Exp $
  
 ###########################################################
 ############### Parameters 
 ###########################################################
 
-DEBUG=1   # 0 for release, 1 for debug
+DEBUG=0   # 0 for release, 1 for debug
 
 # EXPAT is optional. It's required for grs.xml-filters.
 HAVE_EXPAT=1