diffstat/diffstat-1.54.diff
Petr Gajdos 669369e960 - updated to 1.54
+ correct counts used for new files when -S/-D options are used.
  + minor typography improvement to manpage (patch by Solaris Designer)
  + remove the temporary directory on error, introduced in 1.48+ (patch
    by Solaris Designer).

OBS-URL: https://build.opensuse.org/package/show/devel:tools/diffstat?expand=0&rev=11
2010-10-12 07:11:26 +00:00

38 lines
868 B
Diff

Index: config_h.in
===================================================================
--- config_h.in.orig
+++ config_h.in
@@ -5,4 +5,10 @@
* 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
Index: makefile.in
===================================================================
--- makefile.in.orig
+++ makefile.in
@@ -15,6 +15,7 @@ exec_prefix = @exec_prefix@
bindir = @bindir@
mandir = @mandir@
+DEFS = @DEFS@
CC = @CC@
LINK = $(CC)
INSTALL = @INSTALL@
@@ -26,7 +27,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@