diff options
author | Brent Hull <[email protected]> | 2012-11-15 14:23:32 -0500 |
---|---|---|
committer | Brent Hull <[email protected]> | 2012-11-15 14:23:32 -0500 |
commit | 1aa6079a48aacd1b495f6944848e3d432a4b115d (patch) | |
tree | c185cf295dfd1d80ffd4792088e179d001ae39a2 /logview/Makefile.am | |
parent | 381d345351f1d3a0fb34bb125f1411af61ce67ad (diff) | |
download | mate-utils-1aa6079a48aacd1b495f6944848e3d432a4b115d.tar.bz2 mate-utils-1aa6079a48aacd1b495f6944848e3d432a4b115d.tar.xz |
Port logview to Gsettings (based on GNOME patches)
Diffstat (limited to 'logview/Makefile.am')
-rw-r--r-- | logview/Makefile.am | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/logview/Makefile.am b/logview/Makefile.am index b12cf217..ab9fa458 100644 --- a/logview/Makefile.am +++ b/logview/Makefile.am @@ -1,8 +1,6 @@ SUBDIRS = data help tests INCLUDES = \ - $(MATE_UTILS_CFLAGS) \ - $(GTHREAD_CFLAGS) \ -DG_LOG_DOMAIN=\"mate-system-log\" \ -DMATELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DDATADIR=\""$(datadir)"\" \ @@ -42,9 +40,18 @@ mate_system_log_SOURCES = \ logview-filter-manager.c \ $(BUILT_SOURCES) +mate_system_log_CFLAGS = \ + $(GLIB_CFLAGS) \ + $(GTHREAD_CFLAGS) \ + $(GIO_CFLAGS) \ + $(GTK_CFLAGS) \ + $(NULL) + mate_system_log_LDADD = \ - $(MATE_UTILS_LIBS) \ + $(GLIB_LIBS) \ + $(GIO_LIBS) \ $(GTHREAD_LIBS) \ + $(GTK_LIBS) \ $(Z_LIBS) \ -lm |