From 17b5ba85b04310e6cf5b80ad567457b81255823d Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Thu, 9 Dec 2010 20:23:34 -0700 Subject: [PATCH] don't build the Framebuffer GUI for BSD when --enable-gui=all is used --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 152ae0c90..b24f5c782 100644 --- a/configure.ac +++ b/configure.ac @@ -632,7 +632,10 @@ AC_ARG_ENABLE(gui, ;; all|ALL) build_dump=yes - build_fb=yes + dnl BSD doesn't have a framebuffer interface + if test x${linux} = xyes; then + build_fb=yes + fi build_kde4=yes build_sdl=yes ;; -- 2.11.4.GIT