diff options
| author | Ted Gould <ted@gould.cx> | 2012-02-23 09:17:10 -0600 |
|---|---|---|
| committer | Ted Gould <ted@gould.cx> | 2012-02-23 09:17:10 -0600 |
| commit | cb9ef79ff83de58657995957de9b9efc2a7face1 (patch) | |
| tree | a6224e1e5af9b8bbf0528cf3ca1334fe22ee7466 /src/Makefile.am | |
| parent | d37d11adeb30b3ef5c9668a67fd906e79a69286b (diff) | |
| parent | a2a0779d48c596f1fda30a2d502bb3d419a83164 (diff) | |
| download | ayatana-indicator-session-cb9ef79ff83de58657995957de9b9efc2a7face1.tar.gz ayatana-indicator-session-cb9ef79ff83de58657995957de9b9efc2a7face1.tar.bz2 ayatana-indicator-session-cb9ef79ff83de58657995957de9b9efc2a7face1.zip | |
* New upstream release.
* Make GUDev dependency optional for non-Linux kernels
* Add accessibility strings on the icons (LP: #891861)
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 67a1cb6..a1e443e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,6 @@ +EXTRA_DIST = + libexec_PROGRAMS = \ indicator-session-service @@ -107,14 +109,26 @@ indicator_session_service_SOURCES = \ user-menu-mgr.c \ device-menu-mgr.h \ device-menu-mgr.c \ - udev-mgr.h \ - udev-mgr.c \ sane-rules.h if BUILD_APT indicator_session_service_SOURCES += \ apt-watcher.h \ apt-watcher.c +else +EXTRA_DIST += \ + apt-watcher.h \ + apt-watcher.c +endif + +if HAS_GUDEV +indicator_session_service_SOURCES += \ + udev-mgr.h \ + udev-mgr.c +else +EXTRA_DIST += \ + udev-mgr.h \ + udev-mgr.c endif indicator_session_service_CFLAGS = \ @@ -122,10 +136,12 @@ indicator_session_service_CFLAGS = \ $(GCONF_CFLAGS) \ -DLIBEXECDIR=\"$(libexecdir)\" \ -Wall -Werror \ - -DG_LOG_DOMAIN=\"Indicator-Session\" + -DG_LOG_DOMAIN=\"Indicator-Session\" \ + $(GUDEV_CFLAGS) indicator_session_service_LDADD = \ $(SESSIONSERVICE_LIBS) \ - $(GCONF_LIBS) + $(GCONF_LIBS) \ + $(GUDEV_LIBS) ################# # GTK Logout Stuff @@ -168,7 +184,7 @@ BUILT_SOURCES = \ accounts-service-client.h \ accounts-service-user-client.h -EXTRA_DIST = \ +EXTRA_DIST += \ org.freedesktop.ConsoleKit.Manager.xml \ org.freedesktop.ConsoleKit.Seat.xml \ org.freedesktop.ConsoleKit.Session.xml \ |
