]> git.sur5r.net Git - openldap/commitdiff
NT port
authorGary Williams <gwilliams@openldap.org>
Thu, 1 Apr 1999 15:51:11 +0000 (15:51 +0000)
committerGary Williams <gwilliams@openldap.org>
Thu, 1 Apr 1999 15:51:11 +0000 (15:51 +0000)
libraries/liblutil/liblutil.dsp
libraries/liblutil/lockf.c
libraries/liblutil/sha1.c

index e104adebd9308f1bd2bc6acf69cad668f5d3b9f3..54bc0416a7fb5a94de1340f8ffcbfbe90b078d77 100644 (file)
@@ -60,7 +60,7 @@ LIB32=link.exe -lib
 # PROP Intermediate_Dir "Debug\liblutil"
 # PROP Target_Dir ""
 # ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /Z7 /Od /I "..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD CPP /nologo /MTd /W3 /GX /Z7 /Od /I "..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
 BSC32=bscmake.exe
 # ADD BASE BSC32 /nologo
 # ADD BSC32 /nologo
@@ -120,10 +120,6 @@ SOURCE=.\md5.c
 # End Source File
 # Begin Source File
 
-SOURCE=.\memcmp.c
-# End Source File
-# Begin Source File
-
 SOURCE=.\passwd.c
 # End Source File
 # Begin Source File
@@ -132,15 +128,7 @@ SOURCE=..\..\include\portable.h
 # End Source File
 # Begin Source File
 
-SOURCE=.\setproctitle.c
-# End Source File
-# Begin Source File
-
 SOURCE=.\sha1.c
 # End Source File
-# Begin Source File
-
-SOURCE=.\tempnam.c
-# End Source File
 # End Target
 # End Project
index 3daf88c695152a994c42babdd099286ea78177dc..f37d71a34e388a1ee3c9d07f28dce1c2c7b2b2cf 100644 (file)
 #      define LOCK_API "flock"
 #endif
 
+#if !defined(USE_LOCKF) && !defined(USE_FCNTL) && !defined(USE_FLOCK)
+int lutil_lockf ( int fd ) {
+    fd = fd;
+    return 0;
+}
+
+int lutil_unlockf ( int fd ) {
+    fd = fd;
+    return 0;
+}
+#endif
+
 #ifdef USE_LOCKF
 int lutil_lockf ( int fd ) {
        /* use F_LOCK instead of F_TLOCK, ie: block */
index 98360788bf5d0bdabe50365d159be17df39c6061..a0df8ac95b2a0aca78d819f3c783a312883f5c2e 100644 (file)
@@ -138,7 +138,7 @@ void
 lutil_SHA1Update(
     lutil_SHA1_CTX     *context,
     const unsigned char        *data,
-    u_int              len
+    uint32             len
 )
 {
     u_int i, j;