summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2018-02-22 20:42:42 -0800
committerVito Caputo <vcaputo@pengaru.com>2018-02-27 23:02:26 -0800
commitb18fc1ca50570b0674095ee87711e19ee95ae8df (patch)
treec563a98d84799e03289fb7f95ac095a177acd10c /src
parentf6991fdd218ab15ed4a6d9501181f55053499a05 (diff)
build: make drm optional
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am5
-rw-r--r--src/rototiller.c7
2 files changed, 10 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 3d6b8bc..b94b0f3 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,4 +1,7 @@
SUBDIRS = modules
bin_PROGRAMS = rototiller
-rototiller_SOURCES = drm_fb.c fb.c fb.h fps.c fps.h rototiller.c rototiller.h sdl_fb.c settings.h settings.c setup.h setup.c threads.c threads.h util.c util.h
+rototiller_SOURCES = fb.c fb.h fps.c fps.h rototiller.c rototiller.h sdl_fb.c settings.h settings.c setup.h setup.c threads.c threads.h util.c util.h
+if ENABLE_DRM
+rototiller_SOURCES += drm_fb.c
+endif
rototiller_LDADD = -lm modules/julia/libjulia.a modules/plasma/libplasma.a modules/ray/libray.a modules/roto/libroto.a modules/sparkler/libsparkler.a modules/stars/libstars.a
diff --git a/src/rototiller.c b/src/rototiller.c
index 0fbc794..e4c818b 100644
--- a/src/rototiller.c
+++ b/src/rototiller.c
@@ -150,7 +150,9 @@ static int setup_video(settings_t *settings, setting_desc_t **next_setting)
if (!video) {
setting_desc_t *desc;
const char *values[] = {
+#ifdef HAVE_DRM
"drm",
+#endif
"sdl",
NULL,
};
@@ -170,11 +172,14 @@ static int setup_video(settings_t *settings, setting_desc_t **next_setting)
}
/* XXX: this is kind of hacky for now */
+#ifdef HAVE_DRM
if (!strcmp(video, "drm")) {
fb_ops = &drm_fb_ops;
return drm_fb_ops.setup(settings, next_setting);
- } else if (!strcmp(video, "sdl")) {
+ } else
+#endif
+ if (!strcmp(video, "sdl")) {
fb_ops = &sdl_fb_ops;
return sdl_fb_ops.setup(settings, next_setting);
© All Rights Reserved