Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Oct 2013 17:43:55 +0000 (UTC)
From:      David Naylor <dbn@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329608 - head/x11-toolkits/py-kivy
Message-ID:  <201310061743.r96Hht8F097373@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbn
Date: Sun Oct  6 17:43:55 2013
New Revision: 329608
URL: http://svnweb.freebsd.org/changeset/ports/329608

Log:
  Mark x11-toolkits/py-kivy as broken under i386 without -DWITH_NEW_XORG.
  
  For some unknown reason builds fail with:
  
    Undefined symbol "glBlendEquationSeparate"
  
  When compiling under i386 for the old libGL.  This error does not make
  sense given that the symbol is present in libGL and that compilation works
  under amd64.  The only solution found is to update to a newer libGL however
  there does not appear to be any change to the symbol signature to suggest
  why such an update works.

Modified:
  head/x11-toolkits/py-kivy/Makefile

Modified: head/x11-toolkits/py-kivy/Makefile
==============================================================================
--- head/x11-toolkits/py-kivy/Makefile	Sun Oct  6 17:35:29 2013	(r329607)
+++ head/x11-toolkits/py-kivy/Makefile	Sun Oct  6 17:43:55 2013	(r329608)
@@ -45,6 +45,9 @@ ARCH!=		uname -p
 .endif
 .if ${ARCH} == i386
 OPTIONS_GROUP_VIDEO+=	PYGLET
+.if !defined(WITH_NEW_XORG)
+BROKEN=		Does not compile with old libGL on i386: Undefined symbol glBlendEquationSeparate
+.endif
 .endif
 
 CAMERA_DESC=	Camera support



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