- fix potential 64-bit issue due to missing header

This commit is contained in:
jasper 2009-06-18 07:50:18 +00:00
parent ff881c22a1
commit 1102f2c48f
2 changed files with 16 additions and 1 deletions

View File

@ -1,10 +1,11 @@
# $OpenBSD: Makefile,v 1.17 2009/04/29 21:22:14 kili Exp $
# $OpenBSD: Makefile,v 1.18 2009/06/18 07:50:18 jasper Exp $
# $FreeBSD: ports/multimedia/libquicktime/Makefile,v 1.19 2004/03/16 04:23:53 edwin Exp $
SHARED_ONLY= Yes
COMMENT= library for reading and writing quicktime files
DISTNAME= libquicktime-1.1.1
PKGNAME= ${DISTNAME}p0
CATEGORIES= multimedia
SHARED_LIBS= quicktime 4.0

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-src_timecode_c,v 1.1 2009/06/18 07:50:18 jasper Exp $
Fix potential 64-bit issue due to missing header.
--- src/timecode.c.orig Thu Jun 18 09:40:52 2009
+++ src/timecode.c Thu Jun 18 09:41:13 2009
@@ -23,6 +23,7 @@
*******************************************************************************/
#include <stdlib.h>
+#include <string.h>
#include "lqt_private.h"