diff options
author | Jasmine Hassan <[email protected]> | 2012-12-06 21:03:24 +0200 |
---|---|---|
committer | Jasmine Hassan <[email protected]> | 2012-12-06 21:03:24 +0200 |
commit | be795227964c7b24027d525eaa634048e08c0df4 (patch) | |
tree | e6aedc37ee561c6b84a664c3b3f8903d38406cea /src/Makefile.am | |
parent | bc18e5b352952b6365e5dff9de0f02f03f8efb13 (diff) | |
download | mate-user-share-be795227964c7b24027d525eaa634048e08c0df4.tar.bz2 mate-user-share-be795227964c7b24027d525eaa634048e08c0df4.tar.xz |
[all] Only add Bluetooth support to build if Bluetooth is available
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 90be13d..a340ef6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -31,6 +31,7 @@ INCLUDES= \ -I$(top_builddir) \ $(EXTENSION_CFLAGS) \ $(USER_SHARE_CFLAGS) \ + $(BLUETOOTH_CFLAGS) \ $(USER_SHARE_CONFIG_CFLAGS) \ $(X_CFLAGS) @@ -41,10 +42,6 @@ mate_user_share_SOURCES = \ user_share-private.c \ http.c \ http.h \ - obexftp.c \ - obexftp.h \ - obexpush.c \ - obexpush.h \ $(MARSHALFILES) mate_user_share_LDADD = \ @@ -53,6 +50,15 @@ mate_user_share_LDADD = \ $(SELINUX_LIBS) \ $(X_LIBS) $(X_PRE_LIBS) -lX11 $(X_EXTRA_LIBS) +if USE_BLUETOOTH +mate_user_share_SOURCES += \ + obexftp.c \ + obexftp.h \ + obexpush.c \ + obexpush.h +mate_user_share_LDADD += $(BLUETOOTH_LIBS) +endif + mate_file_share_properties_SOURCES = \ file-share-properties.c \ user_share-private.h \ |