svn commit: r396261 - head/multimedia/mpeg4ip

Alexey Dokuchaev danfe at FreeBSD.org
Mon Sep 7 11:34:32 UTC 2015


Author: danfe
Date: Mon Sep  7 11:34:31 2015
New Revision: 396261
URL: https://svnweb.freebsd.org/changeset/ports/396261

Log:
  Fix small typo that prevented successful builds on big-endian systems.

Modified:
  head/multimedia/mpeg4ip/Makefile

Modified: head/multimedia/mpeg4ip/Makefile
==============================================================================
--- head/multimedia/mpeg4ip/Makefile	Mon Sep  7 11:16:17 2015	(r396260)
+++ head/multimedia/mpeg4ip/Makefile	Mon Sep  7 11:34:31 2015	(r396261)
@@ -89,10 +89,6 @@ PLIST_SUB+=	XVID=""
 PLIST_SUB+=	XVID="@comment "
 .endif
 
-.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
-BROKEN=		Does not compile on ia64, powerpc, or sparc64
-.endif
-
 #post-patch:
 pre-configure:
 	@${TOUCH} -f ${WRKSRC}/bootstrapped
@@ -133,6 +129,8 @@ pre-configure:
 		${WRKSRC}/doc/mp4v2/Makefile.in
 	@${REINPLACE_CMD} -e 's|$${enable_ffmpeg}/lib/libavcodec.a|-lavcodec0 -lavutil0 -lswscale0|g' \
 		${WRKSRC}/configure
+	@${REINPLACE_CMD} -e 's|pSameples|pSamples|' \
+		${WRKSRC}/server/mp4live/audio_l16.cpp
 
 # replace bundled mp4v2 with placeholder
 post-configure:


More information about the svn-ports-head mailing list