diff options
author | dbn <dbn@FreeBSD.org> | 2013-10-07 01:43:55 +0800 |
---|---|---|
committer | dbn <dbn@FreeBSD.org> | 2013-10-07 01:43:55 +0800 |
commit | 65b6b674a8cb4820b00eeee74c36d56b5fcf92e3 (patch) | |
tree | 6db7f1a4ada8653e30e906e79ed90a07ab519b95 /x11-toolkits | |
parent | 15362fe3f0d7c46dcc3727cb1a520be6ff012f55 (diff) | |
download | freebsd-ports-gnome-65b6b674a8cb4820b00eeee74c36d56b5fcf92e3.tar.gz freebsd-ports-gnome-65b6b674a8cb4820b00eeee74c36d56b5fcf92e3.tar.zst freebsd-ports-gnome-65b6b674a8cb4820b00eeee74c36d56b5fcf92e3.zip |
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.
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/py-kivy/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
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 |