diff options
author | Richard Henderson <rth@twiddle.net> | 2013-02-04 16:21:07 -0800 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-02-06 08:29:21 -0600 |
commit | 84208085d357d95b84f6e281ec3aa028e988e5ff (patch) | |
tree | 64e65581f72dd70a43828e038cd9f82d1c837df6 /configure | |
parent | 91107fdf4443d2171e06840e87277bb7a047343b (diff) |
configure: Fix build with XFree
The build is broken on ppc64-linux, possibly only with new binutils:
ld: hw/lm32/../milkymist-tmu2.o: undefined reference to symbol 'XFree'
ld: note: 'XFree' is defined in DSO /lib64/libX11.so.6 so try \
adding it to the linker command line
So let's follow the linker's advice.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2388,7 +2388,7 @@ fi ########################################## # opengl probe, used by milkymist-tmu2 if test "$opengl" != "no" ; then - opengl_libs="-lGL" + opengl_libs="-lGL -lX11" cat > $TMPC << EOF #include <X11/Xlib.h> #include <GL/gl.h> |