bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Windows Build Broken: /ccvs/lib/ vasnprintf.c


From: Conrad T. Pino
Subject: RE: Windows Build Broken: /ccvs/lib/ vasnprintf.c
Date: Tue, 5 Oct 2004 17:25:10 -0700

Hi Derek,

The patch at the end of this message will fix the Windows Build.

I need an appropriate value for EOVERFLOW #define constant.

Conrad


Index: windows-NT/config.h.in.in
===================================================================
RCS file: /cvs/ccvs/windows-NT/config.h.in.in,v
retrieving revision 1.6
diff -u -p -r1.6 config.h.in.in
--- windows-NT/config.h.in.in   5 Oct 2004 19:13:45 -0000       1.6
+++ windows-NT/config.h.in.in   6 Oct 2004 00:20:12 -0000
@@ -62,6 +62,9 @@
 /* Define to enable encryption support. */
 #undef ENCRYPTION
 
+/* Define as good substitute value for EOVERFLOW. */
+#define EOVERFLOW 1
+
 /* Define if this executable will be running on case insensitive file systems.
    In the client case, this means that it will request that the server pretend
    to be case insensitive if it isn't already. */
@@ -227,6 +230,12 @@
 /* Define to 1 if you have the `ftruncate' function. */
 #undef HAVE_FTRUNCATE
 
+/* Define to 1 if you have the `getcwd' function. */
+#define HAVE_GETCWD 1
+
+/* Define if getcwd (NULL, 0) allocates memory for result. */
+#define HAVE_GETCWD_NULL 1
+
 /* Define to 1 if you have the `getdelim' function. */
 #undef HAVE_GETDELIM


Index: cvsnt.dsp
===================================================================
RCS file: /cvs/ccvs/cvsnt.dsp,v
retrieving revision 1.18
diff -u -p -r1.18 cvsnt.dsp
--- cvsnt.dsp   5 Oct 2004 17:29:02 -0000       1.18
+++ cvsnt.dsp   6 Oct 2004 00:20:10 -0000
@@ -532,6 +532,10 @@ SOURCE=".\src\rsh-client.h"
 # End Source File
 # Begin Source File
 
+SOURCE=".\lib\save-cwd.h"
+# End Source File
+# Begin Source File
+
 SOURCE=.\lib\savecwd.h
 # End Source File
 # Begin Source File
@@ -588,6 +592,10 @@ SOURCE=.\lib\xalloc.h
 # End Source File
 # Begin Source File
 
+SOURCE=.\lib\xgetcwd.h
+# End Source File
+# Begin Source File
+
 SOURCE=.\lib\xsize.h
 # End Source File
 # Begin Source File


Index: lib/libcvs.dsp
===================================================================
RCS file: /cvs/ccvs/lib/libcvs.dsp,v
retrieving revision 1.9
diff -u -p -r1.9 libcvs.dsp
--- lib/libcvs.dsp      5 Oct 2004 17:23:28 -0000       1.9
+++ lib/libcvs.dsp      6 Oct 2004 00:20:10 -0000
@@ -165,7 +165,7 @@ SOURCE=.\regex.c
 # End Source File
 # Begin Source File
 
-SOURCE=.\savecwd.c
+SOURCE=".\save-cwd.c"
 # End Source File
 # Begin Source File
 
@@ -193,7 +193,7 @@ SOURCE=.\vasnprintf.c
 # End Source File
 # Begin Source File
 
-SOURCE=.\xgetwd.c
+SOURCE=.\xgetcwd.c
 # End Source File
 # Begin Source File
 
@@ -347,7 +347,7 @@ SOURCE=.\regex.h
 # End Source File
 # Begin Source File
 
-SOURCE=.\savecwd.h
+SOURCE=".\save-cwd.h"
 # End Source File
 # Begin Source File
 
@@ -383,6 +383,10 @@ SOURCE=.\xalloc.h
 # End Source File
 # Begin Source File
 
+SOURCE=.\xgetcwd.h
+# End Source File
+# Begin Source File
+
 SOURCE=.\xsize.h
 # End Source File
 # Begin Source File





reply via email to

[Prev in Thread] Current Thread [Next in Thread]