Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 08 Apr 2007 16:40:42 +0100
From:      Bruce M Simpson <bms@incunabulum.net>
To:        multimedia@FreeBSD.org
Subject:   multimedia/transcode configure breaks
Message-ID:  <46190CFA.40508@incunabulum.net>

next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------020104050408020107010803
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

ffmpeg vs libavcodec -- seems these things have changed and the port 
didn't catch up with them, they are in transcode ChangeLog. Here is a 
patch which appears to fix the issue.

In particular the avcodec test was broken because it seems to want an 
FFMPEG_VERSION symbol no longer defined in the headers... which can be 
changed to LIBAVCODEC_IDENT (I did this manually).

How tedious!


--------------020104050408020107010803
Content-Type: text/plain;
 name="1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="1"

--- Makefile.orig	Sun Apr  8 16:29:51 2007
+++ Makefile	Sun Apr  8 16:32:49 2007
@@ -35,7 +35,8 @@
 CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" \
 		SDL_CONFIG="${SDL_CONFIG}"
 CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
-CONFIGURE_ARGS+=	--with-ffmpeg_libs-prefix=${LOCALBASE} \
+CONFIGURE_ARGS+=	--with-libavcodec-includes=${LOCALBASE}/include/ffmpeg \
+			--with-libavcodec-libs=${LOCALBASE}/lib \
 			--with-libdvdread-prefix=${LOCALBASE} \
 			--with-libiconv-prefix=${LOCALBASE} \
 			--enable-oss

--------------020104050408020107010803--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?46190CFA.40508>