diff options
author | pb <pb@FreeBSD.org> | 2005-03-14 13:52:41 +0000 |
---|---|---|
committer | pb <pb@FreeBSD.org> | 2005-03-14 13:52:41 +0000 |
commit | 161a73b1869ed299bb2fcc9df36d5b1aca6e6a27 (patch) | |
tree | 3f0c938e7751cfe3e668c11b4828d3df9aaa9d18 /multimedia/dvdauthor/files | |
parent | 4183e38415541fd028561b2d36decb2ccf6bb9d6 (diff) | |
download | FreeBSD-ports-161a73b1869ed299bb2fcc9df36d5b1aca6e6a27.zip FreeBSD-ports-161a73b1869ed299bb2fcc9df36d5b1aca6e6a27.tar.gz |
Update to 0.6.11.
PR: ports/77539
Submitted by: Phil Oleson <oz at nixil dot net>
Diffstat (limited to 'multimedia/dvdauthor/files')
-rw-r--r-- | multimedia/dvdauthor/files/patch-Makefile.in | 10 | ||||
-rw-r--r-- | multimedia/dvdauthor/files/patch-dvdvob.c | 11 | ||||
-rw-r--r-- | multimedia/dvdauthor/files/patch-readxml.c | 21 | ||||
-rw-r--r-- | multimedia/dvdauthor/files/patch-subgen-image.c | 11 |
4 files changed, 0 insertions, 53 deletions
diff --git a/multimedia/dvdauthor/files/patch-Makefile.in b/multimedia/dvdauthor/files/patch-Makefile.in deleted file mode 100644 index 63813b6..0000000 --- a/multimedia/dvdauthor/files/patch-Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- Makefile.in.orig Thu Jan 15 20:42:47 2004 -+++ Makefile.in Tue Jan 20 17:24:46 2004 -@@ -13,6 +13,7 @@ - FLEX=flex - - CPPFLAGS = -DSYSCONFDIR="\"$(sysconfdir)\"" -+LDFLAGS += -L@libdir@ - LIBS = @LIBS@ @LIBICONV@ - XML_LIBS = @XML_LIBS@ - MAGICK_LIBS = @MAGICK_LIBS@ diff --git a/multimedia/dvdauthor/files/patch-dvdvob.c b/multimedia/dvdauthor/files/patch-dvdvob.c deleted file mode 100644 index 0d867f2..0000000 --- a/multimedia/dvdauthor/files/patch-dvdvob.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/dvdvob.c.orig Sun Mar 14 22:13:26 2004 -+++ src/dvdvob.c Wed Aug 11 19:52:52 2004 -@@ -1148,7 +1148,7 @@ - printpts(pts1); - fprintf(stderr,"\n"); - ach->audpts[ach->numaudpts-1].pts[1]=pts0; -- noshow: -+ noshow:; - } - ach->audpts[ach->numaudpts].pts[0]=pts0; - ach->audpts[ach->numaudpts].pts[1]=pts1; diff --git a/multimedia/dvdauthor/files/patch-readxml.c b/multimedia/dvdauthor/files/patch-readxml.c deleted file mode 100644 index 9c02201..0000000 --- a/multimedia/dvdauthor/files/patch-readxml.c +++ /dev/null @@ -1,21 +0,0 @@ ---- src/readxml.c.orig Fri Mar 12 23:57:39 2004 -+++ src/readxml.c Sun Dec 5 20:19:28 2004 -@@ -221,13 +221,13 @@ - char *utf8tolocal(const char *in) - { - iconv_t c=get_conv(); -- int inlen=strlen(in); -- int outlen=inlen*5; -+ size_t inlen=strlen(in); -+ size_t outlen=inlen*5; - char *r=malloc(outlen+1); - char *out=r; -- int v; -+ size_t v; - -- v=iconv(c,ICONV_CAST &in,&inlen,&out,&outlen); -+ v=iconv(c,&in,&inlen,&out,&outlen); - if(v==-1) { - fprintf(stderr,"ERR: Cannot convert UTF8 string '%s': %s\n",in,strerror(errno)); - exit(1); - diff --git a/multimedia/dvdauthor/files/patch-subgen-image.c b/multimedia/dvdauthor/files/patch-subgen-image.c deleted file mode 100644 index 743989f..0000000 --- a/multimedia/dvdauthor/files/patch-subgen-image.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/subgen-image.c.orig Sun Dec 19 22:38:27 2004 -+++ src/subgen-image.c Sun Dec 19 22:38:44 2004 -@@ -177,7 +177,7 @@ - p.r=pdata[x*4]; - p.g=pdata[x*4+1]; - p.b=pdata[x*4+2]; -- p.t=255-pdata[x*4+3]; -+ p.t=pdata[x*4+3]; - putpixel(s,y*s->width+x,&p); - } - } |