[Initng-svn] r2668 - in initng: . plugins plugins/ngcs

svn at initng.thinktux.net svn at initng.thinktux.net
Mon Jan 2 16:54:39 CET 2006


Author: makomk
Date: Mon Jan  2 16:54:38 2006
New Revision: 2668

Added:
   initng/plugins/ngcs/
   initng/plugins/ngcs/Makefile.am
   initng/plugins/ngcs/idef.py   (contents, props changed)
   initng/plugins/ngcs/initng_ngcs.c
   initng/plugins/ngcs/initng_ngcs.h
   initng/plugins/ngcs/initng_ngcs_cmds.c
   initng/plugins/ngcs/ngcs.py
   initng/plugins/ngcs/ngcs_common.c
   initng/plugins/ngcs/ngcs_common.h
   initng/plugins/ngcs/ngcs_marshal.ngci
Modified:
   initng/configure.in
   initng/plugins/Makefile.am
Log:
Experimental plugin to notify programs of service state changes (not built by default)


Modified: initng/configure.in
==============================================================================
--- initng/configure.in	(original)
+++ initng/configure.in	Mon Jan  2 16:54:38 2006
@@ -252,6 +252,10 @@
     AC_HELP_STRING([--with-ngc2],[Build with ngc2 plugin @<:@default=yes@:>@]),
     [with_ngc2=$withval], [with_ngc2=yes])
 
+AC_ARG_WITH(ngcs, 
+    AC_HELP_STRING([--with-ngcs],[Build with ngcs plugin @<:@default=no@:>@]),
+    [with_ngcs=$withval], [with_ngcs=no])
+
 AC_ARG_WITH(pause, 
     AC_HELP_STRING([--with-pause],[Build with pause plugin @<:@default=yes@:>@]),
     [with_pause=$withval], [with_pause=yes])
@@ -347,6 +351,7 @@
 AM_CONDITIONAL(BUILD_NETPROBE, test "$with_netprobe" = "yes")
 AM_CONDITIONAL(BUILD_IDLEPROBE, test "$with_idleprobe" = "yes")
 AM_CONDITIONAL(BUILD_NGC2, test "$with_ngc2" = "yes")
+AM_CONDITIONAL(BUILD_NGCS, test "$with_ngcs" = "yes")
 AM_CONDITIONAL(BUILD_PAUSE, test "$with_pause" = "yes")
 AM_CONDITIONAL(BUILD_PIDFILE, test "$with_pidfile" = "yes")
 AM_CONDITIONAL(BUILD_PIDFILETEST, test "$with_pidfile_test" = "yes")
@@ -373,6 +378,7 @@
 	  plugins/usplash/Makefile \
 	  plugins/cpout/Makefile \
 	  plugins/ngc2/Makefile \
+	  plugins/ngcs/Makefile \
 	  plugins/critical/Makefile \
 	  plugins/suid/Makefile \
 	  plugins/stcmd/Makefile \
@@ -455,6 +461,7 @@
 echo Build netprobe plugin.................. : $with_netprobe
 echo Build idleprobe plugin................. : $with_idleprobe
 echo Build ngc2 plugin...................... : $with_ngc2
+echo Build ngcs plugin...................... : $with_ngcs
 echo Build pause plugin..................... : $with_pause
 echo Build pidfile plugin................... : $with_pidfile
 echo Build reload plugin.................... : $with_reload

Modified: initng/plugins/Makefile.am
==============================================================================
--- initng/plugins/Makefile.am	(original)
+++ initng/plugins/Makefile.am	Mon Jan  2 16:54:38 2006
@@ -101,6 +101,10 @@
     SUBDIRS+=ngc2
 endif
 
+if BUILD_NGCS
+    SUBDIRS+=ngcs
+endif
+
 if BUILD_PAUSE
     SUBDIRS+=pause
 endif


More information about the Initng-svn mailing list