view src/msvc-libgpg_error-1.patch @ 5531:eae508c12529

Add build rule for build-octave (bug #49503). * src/build-octave.mk: Add new build rule for build-octave which can be used for cross-building binary packages that depend on Octave as a build tool. * dist-files.mk: Add new file to list. * index.html: Add new package to list. * src/of-communications.mk, src/of-image.mk, src/of-mapping.mk, src/of-optiminterp.mk, src/of-sparsersb.mk, src/of-statistics.mk, src/of-windows.mk: Add optional dependency on build-octave. * configure.ac: Add new configure switch "--disable-system-octave" that is needed to build the build-octave package. * Makefile.in: Add variable "USE_SYSTEM_OCTAVE". Exclude build-octave from the default build tools and build it only if a package explicitly depends on it. Display warning about missing native Octave version only if necessary.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 08 Sep 2020 23:04:38 +0200
parents 1f1e0dc9a135
children
line wrap: on
line source

diff -ur libgpg-error-1.11-orig/src/Makefile.in libgpg-error-1.11/src/Makefile.in
--- libgpg-error-1.11-orig/src/Makefile.in	2013-02-25 04:27:23 -0500
+++ libgpg-error-1.11/src/Makefile.in	2013-06-23 17:11:24 -0400
@@ -999,7 +999,7 @@
 gpg-error.def: Makefile gpg-error.def.in
 	cat $(srcdir)/gpg-error.def.in >_$@.h
 	$(CPP) $(DEFAULT_INCLUDES) $(INCLUDES) $(extra_cppflags) _$@.h | \
-	  grep -v '^#' >$@
+	  grep -v '^#' | sed -e '/^$$/d' -e 's/^ *\([^ ]*\).*/\1/' >$@
 	-rm _$@.h
 
 # It is correct to use $(CC_FOR_BUILD) here.  We want to run the
diff -ur libgpg-error-1.11-orig/src/gpg-error.c libgpg-error-1.11/src/gpg-error.c
--- libgpg-error-1.11-orig/src/gpg-error.c	2010-12-23 11:56:07 -0500
+++ libgpg-error-1.11/src/gpg-error.c	2013-06-23 17:11:56 -0400
@@ -51,6 +51,11 @@
 
 #include <gpg-error.h>
 
+#ifdef _MSC_VER
+# define strcasecmp stricmp
+# define strncasecmp strnicmp
+#endif
+
 
 #if HAVE_W32_SYSTEM
 /* The implementation follows below.  */
diff -ur libgpg-error-1.11-orig/src/init.c libgpg-error-1.11/src/init.c
--- libgpg-error-1.11-orig/src/init.c	2010-12-23 11:56:07 -0500
+++ libgpg-error-1.11/src/init.c	2013-06-23 17:11:32 -0400
@@ -42,6 +42,10 @@
 # endif
 #endif
 
+#ifdef _MSC_VER
+# define snprintf _snprintf
+#endif
+
 
 /* Locale directory support.  */
 
diff -ur libgpg-error-1.11-orig/src/strerror.c libgpg-error-1.11/src/strerror.c
--- libgpg-error-1.11-orig/src/strerror.c	2010-12-23 11:56:07 -0500
+++ libgpg-error-1.11/src/strerror.c	2013-06-23 17:11:42 -0400
@@ -32,6 +32,10 @@
 #include "gettext.h"
 #include "err-codes.h"
 
+#ifdef _MSC_VER
+# define snprintf _snprintf
+#endif
+
 /* Return a pointer to a string containing a description of the error
    code in the error value ERR.  This function is not thread-safe.  */
 const char *