diffstat/diffstat.diff
Petr Gajdos 334c930b13 Accepting request 1145993 from home:amanzini:branches:devel:tools
- update to 1.66:
  + improve handling of git diff's
  + update install-sh
  + improve configure script checks, reducing compiler warnings

OBS-URL: https://build.opensuse.org/request/show/1145993
OBS-URL: https://build.opensuse.org/package/show/devel:tools/diffstat?expand=0&rev=40
2024-02-12 08:34:49 +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@