diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2005-10-13 12:38:35 +0000 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2005-10-13 12:38:35 +0000 |
commit | 0ce0bb9b887e1df10bff88ca22e2df2433c6c74a (patch) | |
tree | ac775477b5347e1c87ac175a1320b34972379f62 /sysutils/dvdimagecmp/files/patch-dvdimagecmp.c | |
parent | Use MAKE_ARGS (diff) |
New port
Dvdimagecmp is a small program to compare an image to a
burned disc. It is not limited to dvds, and supports offsets.
WWW: http://www.ibiblio.org/pub/linux/apps/video/dvdimagecmp-0.3.lsm
PR: 87303
Submitted by: Tim Welch <twelch@thepentagon.org>
Notes
Notes:
svn path=/head/; revision=145259
Diffstat (limited to 'sysutils/dvdimagecmp/files/patch-dvdimagecmp.c')
-rw-r--r-- | sysutils/dvdimagecmp/files/patch-dvdimagecmp.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sysutils/dvdimagecmp/files/patch-dvdimagecmp.c b/sysutils/dvdimagecmp/files/patch-dvdimagecmp.c new file mode 100644 index 000000000000..18a9198bf22a --- /dev/null +++ b/sysutils/dvdimagecmp/files/patch-dvdimagecmp.c @@ -0,0 +1,15 @@ +--- dvdimagecmp.c.orig Tue Jan 4 11:54:52 2005 ++++ dvdimagecmp.c Thu Oct 13 09:29:12 2005 +@@ -27,9 +27,11 @@ + #define _FILE_OFFSET_BITS 64 + + #include <stdlib.h> ++#include <string.h> ++#include <sys/types.h> + #include <errno.h> + #include <stdio.h> +-#include <getopt.h> ++#include <unistd.h> + #include <errno.h> + #include <ctype.h> + #include <time.h> |