svn commit: r333267 - head/multimedia/vlc

Juergen Lock nox at FreeBSD.org
Fri Nov 8 22:52:58 UTC 2013


Author: nox
Date: Fri Nov  8 22:52:58 2013
New Revision: 333267
URL: http://svnweb.freebsd.org/changeset/ports/333267

Log:
  Fix build on 9.2+/i386 by adding -fomit-frame-pointer to the clang
  case (which is default on amd64 anyway.)
  
  Submitted by:	beefy1 via pkg-fallout, dim
  Tested by:	callumgibson at optusnet.com.au

Modified:
  head/multimedia/vlc/Makefile

Modified: head/multimedia/vlc/Makefile
==============================================================================
--- head/multimedia/vlc/Makefile	Fri Nov  8 22:13:04 2013	(r333266)
+++ head/multimedia/vlc/Makefile	Fri Nov  8 22:52:58 2013	(r333267)
@@ -379,6 +379,7 @@ CONFIGURE_ARGS+=--enable-altivec # VLC's
 CC=	clang
 CXX=	clang++
 CPP=	clang-cpp
+CFLAGS+=	-fomit-frame-pointer
 .else
 .if ${ARCH} == "i386"
 USE_GCC?=	yes # sse/3dnow detection on i386 needs newer GCC


More information about the svn-ports-all mailing list