From 65b6b674a8cb4820b00eeee74c36d56b5fcf92e3 Mon Sep 17 00:00:00 2001 From: dbn Date: Sun, 6 Oct 2013 17:43:55 +0000 Subject: 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. --- x11-toolkits/py-kivy/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'x11-toolkits') diff --git a/x11-toolkits/py-kivy/Makefile b/x11-toolkits/py-kivy/Makefile index d3020c54b4d8..3040972c7bf5 100644 --- a/x11-toolkits/py-kivy/Makefile +++ b/x11-toolkits/py-kivy/Makefile @@ -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 -- cgit