diffstat/diffstat.diff
Martin Pluskal c2bf3b760d - Update to version 1.77:
+ align license text with xterm, i.e., "MIT-X11"
  + add decompression for zstd files
  + improve configure script checks, reducing compiler warnings
  + update config.guess, config.sub

OBS-URL: https://build.opensuse.org/package/show/devel:tools/diffstat?expand=0&rev=42
2024-12-08 20:51:53 +00:00

39 lines
892 B
Diff

Index: config_h.in
===================================================================
--- config_h.in.orig
+++ config_h.in
@@ -5,4 +5,11 @@
* config.h -- Kevin Buettner.
*/
-@DEFS@
+#define HAVE_GETOPT_H 0
+#define HAVE_MALLOC_H 0
+#define HAVE_POPEN 0
+#define HAVE_STDLIB_H 0
+#define HAVE_STRING_H 0
+#define HAVE_UNISTD_H 0
+#define STDC_HEADERS 0
+#define HAVE_MKDTEMP 1
Index: makefile.in
===================================================================
--- makefile.in.orig
+++ makefile.in
@@ -16,6 +16,7 @@ datarootdir = @datarootdir@
bindir = @bindir@
mandir = @mandir@
+DEFS = @DEFS@
CC = @CC@
LINK = $(CC)
INSTALL = @INSTALL@
@@ -28,7 +29,7 @@ CTAGS = @CTAGS@
ETAGS = @ETAGS@
CFLAGS = @CFLAGS@ @EXTRA_CFLAGS@
-CPPFLAGS = -I. -I$(srcdir) -DHAVE_CONFIG_H @CPPFLAGS@
+CPPFLAGS = -I. -I$(srcdir) $(DEFS) @CPPFLAGS@
LIBS = @LIBS@
LDFLAGS = @LDFLAGS@