diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-02-26 04:33:15 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-02-26 04:33:15 +0000 |
commit | 0288184639d05d2eeb5858610edfeccfcbedda4c (patch) | |
tree | e8c525b0a71ac9bd5710789f14f59d4e08d3ceb0 /misc | |
parent | 8847a88b8df71e6a4b5e8ebfaff1d2d7b82156ce (diff) | |
download | pkgsrc-0288184639d05d2eeb5858610edfeccfcbedda4c.tar.gz |
Remove not needed patches and regen.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/udfclient/patches/patch-aa | 12 | ||||
-rw-r--r-- | misc/udfclient/patches/patch-ab | 26 |
2 files changed, 0 insertions, 38 deletions
diff --git a/misc/udfclient/patches/patch-aa b/misc/udfclient/patches/patch-aa deleted file mode 100644 index 91c6d023e6b..00000000000 --- a/misc/udfclient/patches/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2003/10/27 03:59:07 reinoud Exp $ - ---- makefile.orig 2003-10-27 04:51:27.000000000 +0100 -+++ makefile -@@ -13,6 +13,7 @@ LD= gcc - LDFLAGS= - CFLAGS+= -O3 -Wall \ - -Wuninitialized -DNDEBUG \ -+ -fno-strict-aliasing \ - -Werror ${COPTS} - #POSTOBJ= -lm -lz - XFLAGS= -I. -I/usr/X11R6/include -L/usr/X11R6/lib diff --git a/misc/udfclient/patches/patch-ab b/misc/udfclient/patches/patch-ab deleted file mode 100644 index 49ee6bcaa90..00000000000 --- a/misc/udfclient/patches/patch-ab +++ /dev/null @@ -1,26 +0,0 @@ -$NetBSD: patch-ab,v 1.3 2003/10/27 04:21:36 reinoud Exp $ - ---- scsilib.h.orig 2003-10-27 04:01:06.000000000 +0100 -+++ scsilib.h -@@ -45,7 +45,7 @@ - - - #define SCSI_CMD_LEN 12 --typedef uint8_t scsicmd[SCSI_CMD_LEN]; -+typedef unsigned char scsicmd[SCSI_CMD_LEN]; - - - #include "scsilib_machdep.h" -$NetBSD: patch-ab,v 1.3 2003/10/27 04:21:36 reinoud Exp $ - ---- scsi_subr.c.orig 2003-10-27 04:02:39.000000000 +0100 -+++ scsi_subr.c -@@ -251,7 +251,7 @@ scsi_mode_select(fd, byte2, buf, len) - - bzero(cmd, SCSI_CMD_LEN); - cmd[ 0] = 0x15; /* MODE SELECT */ -- cmd[ 1] = SMS_PF | byte2; /* SCSI-2 page format select */ -+ cmd[ 1] = 0x10 | byte2; /* SCSI-2 page format select */ - cmd[ 4] = len; /* length of page settings */ - cmd[ 5] = 0; /* control */ - |