diff options
author | Stefano Karapetsas <[email protected]> | 2013-02-27 13:14:29 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-02-27 13:14:29 +0100 |
commit | 9a2a46d3622863c8d83aa46a884d1cc1f90bfb84 (patch) | |
tree | 8202e84dd227d9377e3b2e507e76f84568450f17 /sensors-applet/Makefile.am | |
parent | 4381df30054f853298a5b081e260893b5279cb6a (diff) | |
download | mate-sensors-applet-9a2a46d3622863c8d83aa46a884d1cc1f90bfb84.tar.bz2 mate-sensors-applet-9a2a46d3622863c8d83aa46a884d1cc1f90bfb84.tar.xz |
Use libnotify instead of libmatenofity
Diffstat (limited to 'sensors-applet/Makefile.am')
-rw-r--r-- | sensors-applet/Makefile.am | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sensors-applet/Makefile.am b/sensors-applet/Makefile.am index 367f96c..4bc2fe3 100644 --- a/sensors-applet/Makefile.am +++ b/sensors-applet/Makefile.am @@ -12,16 +12,16 @@ INCLUDES = -DMATELOCALEDIR=\""$(datadir)/locale/"\" \ -DSYSCONFDIR=\""$(sysconfdir)"\" \ -DPREFIX=\""$(prefix)"\" \ -I$(top_srcdir) \ - $(GLIB_CFLAGS) $(GTK_CFLAGS) $(MATE_CFLAGS) $(CAIRO_CFLAGS) $(LIBMATENOTIFY_CFLAGS) + $(GLIB_CFLAGS) $(GTK_CFLAGS) $(MATE_CFLAGS) $(CAIRO_CFLAGS) $(LIBNOTIFY_CFLAGS) -LIBS = $(GLIB_LIBS) $(GTK_LIBS) $(MATE_LIBS) $(CAIRO_LIBS) $(LIBMATENOTIFY_LIBS) +LIBS = $(GLIB_LIBS) $(GTK_LIBS) $(MATE_LIBS) $(CAIRO_LIBS) $(LIBNOTIFY_LIBS) -if LIBMATENOTIFY -libmatenotify_SRC = active-sensor-libmatenotify.c \ - active-sensor-libmatenotify.h +if LIBNOTIFY +libnotify_SRC = active-sensor-libnotify.c \ + active-sensor-libnotify.h else -libmatenotify_SRC = +libnotify_SRC = endif libexec_PROGRAMS = mate-sensors-applet @@ -41,7 +41,7 @@ mate_sensors_applet_SOURCES = main.c \ sensors-applet-plugins.h \ sensors-applet-settings.c \ sensors-applet-settings.h \ - $(libmatenotify_SRC) + $(libnotify_SRC) mate_sensors_applet_LDADD = -ldl |