make wayland-specific shot protocol files conditional on wayland build
authorMike Blumenkrantz <zmike@osg.samsung.com>
Wed, 8 Jul 2015 21:11:16 +0000 (17:11 -0400)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Wed, 8 Jul 2015 21:11:16 +0000 (17:11 -0400)
src/modules/Makefile_shot.mk

index ddbdc15..e229662 100644 (file)
@@ -13,12 +13,16 @@ shotpkg_LTLIBRARIES = src/modules/shot/module.la
 
 src_modules_shot_module_la_LIBADD = $(MOD_LIBS) @WAYLAND_LIBS@
 src_modules_shot_module_la_CPPFLAGS = \
-  $(MOD_CPPFLAGS) @WAYLAND_CFLAGS@
+$(MOD_CPPFLAGS) @WAYLAND_CFLAGS@
 src_modules_shot_module_la_LDFLAGS = $(MOD_LDFLAGS)
 src_modules_shot_module_la_SOURCES = \
-  src/modules/shot/e_mod_main.c \
-  src/modules/shot/screenshooter-client-protocol.c \
-  src/modules/shot/screenshooter-client-protocol.h
+src/modules/shot/e_mod_main.c
+
+if HAVE_WAYLAND
+src_modules_shot_module_la_SOURCES += \
+src/modules/shot/screenshooter-client-protocol.c \
+src/modules/shot/screenshooter-client-protocol.h
+endif
 
 PHONIES += shot install-shot
 shot: $(shotpkg_LTLIBRARIES) $(shot_DATA)