From 383ea823871bf3768e85d1a3ca061e775c6aedf1 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Tue, 14 Aug 2007 11:50:54 -0400 Subject: add some solaris support Based on a patch from Brian Cameron. --- src/Makefile.am | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 0977591..136d88a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -49,9 +49,16 @@ ck-marshal.c: ck-marshal.list ck-marshal.h: ck-marshal.list @GLIB_GENMARSHAL@ $< --prefix=ck_marshal --header > $@ +if CK_COMPILE_LINUX PLATFORM_SOURCES = \ proc-linux.c \ $(NULL) +endif +if CK_COMPILE_SOLARIS +PLATFORM_SOURCES = \ + proc-solaris.c \ + $(NULL) +endif console_kit_daemon_SOURCES = \ main.c \ @@ -87,6 +94,8 @@ console_kit_daemon_SOURCES += $(FILE_MONITOR_BACKEND) EXTRA_console_kit_daemon_SOURCES = \ ck-file-monitor-inotify.c \ ck-file-monitor-dummy.c \ + proc-linux.c \ + proc-solaris.c \ $(NULL) console_kit_daemon_LDADD = \ -- cgit