aboutsummaryrefslogtreecommitdiff
path: root/sysutils/dd_rescue/files
diff options
context:
space:
mode:
authorMANTANI Nobutaka <nobutaka@FreeBSD.org>2013-01-26 18:03:42 +0000
committerMANTANI Nobutaka <nobutaka@FreeBSD.org>2013-01-26 18:03:42 +0000
commit4d93d9cc3646125ff6efa17a24c5996b780a1457 (patch)
tree6647604307b44b1b8acbc692c4254ec0e750497d /sysutils/dd_rescue/files
parent7d5462671a72567e3c78aab884d8c7a8c8680252 (diff)
downloadports-4d93d9cc3646125ff6efa17a24c5996b780a1457.tar.gz
ports-4d93d9cc3646125ff6efa17a24c5996b780a1457.zip
Notes
Diffstat (limited to 'sysutils/dd_rescue/files')
-rw-r--r--sysutils/dd_rescue/files/patch-Makefile20
-rw-r--r--sysutils/dd_rescue/files/patch-dd_rescue.c16
-rw-r--r--sysutils/dd_rescue/files/patch-frandom.c11
3 files changed, 17 insertions, 30 deletions
diff --git a/sysutils/dd_rescue/files/patch-Makefile b/sysutils/dd_rescue/files/patch-Makefile
index 49ea54b0836c..4cca0e9eb74a 100644
--- a/sysutils/dd_rescue/files/patch-Makefile
+++ b/sysutils/dd_rescue/files/patch-Makefile
@@ -1,16 +1,17 @@
---- Makefile.orig 2012-01-22 22:48:54.000000000 +0900
-+++ Makefile 2012-02-12 23:57:39.000000000 +0900
-@@ -6,9 +6,6 @@
+--- Makefile.orig 2013-01-25 15:02:54.000000000 +0900
++++ Makefile 2013-01-27 02:37:02.000000000 +0900
+@@ -6,10 +6,6 @@
DESTDIR =
-CC = gcc
-RPM_OPT_FLAGS = -Os -Wall -g
-CFLAGS = $(RPM_OPT_FLAGS) $(EXTRA_CFLAGS)
+-CFLAGS_OPT = $(CFLAGS) -O3
INSTALL = install
INSTALLFLAGS = -s
prefix = $(DESTDIR)/usr
-@@ -25,12 +22,6 @@
+@@ -26,12 +22,6 @@
DEFINES = -DVERSION=\"$(VERSION)\" -D__COMPILER__="\"$(COMPILER)\""
OUT = -o $@
@@ -22,13 +23,4 @@
-
default: $(TARGETS)
- libfalloc: dd_rescue.c
-@@ -43,7 +34,7 @@
- $(CC) $(CFLAGS) -DHAVE_FALLOCATE=1 $(DEFINES) $< -o dd_rescue
-
- dd_rescue: dd_rescue.c
-- $(CC) $(CFLAGS) $(DEFINES) $< $(OUT)
-+ $(CC) $(CFLAGS) $(DEFINES) $(LIBS) $< $(OUT)
-
- strip: dd_rescue
- strip -S $<
+ frandom.o: frandom.c
diff --git a/sysutils/dd_rescue/files/patch-dd_rescue.c b/sysutils/dd_rescue/files/patch-dd_rescue.c
deleted file mode 100644
index 3d619647b7a4..000000000000
--- a/sysutils/dd_rescue/files/patch-dd_rescue.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- dd_rescue.c.orig 2012-05-20 05:46:14.000000000 +0900
-+++ dd_rescue.c 2012-06-02 22:24:44.000000000 +0900
-@@ -1194,11 +1194,11 @@
- ipos = 0;
-
- #ifdef O_DIRECT
-- if (posix_memalign(&mp, pagesize, softbs)) {
-+ buf = malloc(softbs);
-+ if (!buf) {
- fplog(stderr, "dd_rescue: (fatal): allocation of aligned buffer failed!\n");
- cleanup(); exit(18);
- }
-- buf = mp;
- #else
- buf = malloc(softbs);
- if (!buf) {
diff --git a/sysutils/dd_rescue/files/patch-frandom.c b/sysutils/dd_rescue/files/patch-frandom.c
new file mode 100644
index 000000000000..b03b6382253b
--- /dev/null
+++ b/sysutils/dd_rescue/files/patch-frandom.c
@@ -0,0 +1,11 @@
+--- frandom.c.orig 2013-01-27 02:43:19.000000000 +0900
++++ frandom.c 2013-01-27 02:43:29.000000000 +0900
+@@ -16,7 +16,7 @@
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <string.h>
+-#include <asm/errno.h>
++#include <sys/errno.h>
+ #include <unistd.h>
+ #include <time.h>
+