[Initng-svn] r2720 - in initng: . plugins
svn at initng.thinktux.net
svn at initng.thinktux.net
Wed Jan 4 20:46:01 CET 2006
Author: grzegorz
Date: Wed Jan 4 20:46:01 2006
New Revision: 2720
Modified:
initng/Makefile.am
initng/configure.in
initng/plugins/Makefile.am
Log:
- make dist fix
Modified: initng/Makefile.am
==============================================================================
--- initng/Makefile.am (original)
+++ initng/Makefile.am Wed Jan 4 20:46:01 2006
@@ -10,7 +10,8 @@
autogen.sh \
FAQ \
CODING_STANDARDS \
- TEMPLATE_HEADER
+ TEMPLATE_HEADER \
+ count_me.sh
install-recursive: $(BUILT_SOURCES)
Modified: initng/configure.in
==============================================================================
--- initng/configure.in (original)
+++ initng/configure.in Wed Jan 4 20:46:01 2006
@@ -184,6 +184,10 @@
AC_HELP_STRING([--with-critical],[Build with critical plugin @<:@default=yes@:>@]),
[with_critical=$withval], [with_critical=yes])
+AC_ARG_WITH(daemon_clean,
+ AC_HELP_STRING([--with-daemon-clean],[Build with daemon-clean plugin @<:@default=no@:>@]),
+ [with_daemon_clean=$withval], [with_daemon_clean=no])
+
AC_ARG_WITH(depend,
AC_HELP_STRING([--with-depend],[Build with depend plugin @<:@default=yes@:>@]),
[with_depend=$withval], [with_depend=yes])
@@ -334,6 +338,7 @@
AM_CONDITIONAL(BUILD_CPOUT, test "$with_cpout" = "yes")
AM_CONDITIONAL(BUILD_CRON, test "$with_cron" = "yes")
AM_CONDITIONAL(BUILD_CRITICAL, test "$with_critical" = "yes")
+AM_CONDITIONAL(BUILD_DAEMON_CLEAN, test "$with_daemon_clean" = "yes")
AM_CONDITIONAL(BUILD_DEPEND, test "$with_depend" = "yes")
AM_CONDITIONAL(BUILD_DLLAUNCH, test "$with_dllaunch" = "yes")
AM_CONDITIONAL(BUILD_DPARSER, test "$with_dparser" = "yes")
@@ -445,6 +450,7 @@
echo Build cpout plugin..................... : $with_cpout
echo Build cron plugin...................... : $with_cron
echo Build critical plugin.................. : $with_critical
+echo Build daemon_clean plugin.............. : $with_daemon_clean
echo Build depend plugin.................... : $with_depend
echo Build dllaunch plugin.................. : $with_dllaunch
echo Build dparser plugin................... : $with_dparser
Modified: initng/plugins/Makefile.am
==============================================================================
--- initng/plugins/Makefile.am (original)
+++ initng/plugins/Makefile.am Wed Jan 4 20:46:01 2006
@@ -33,6 +33,10 @@
SUBDIRS+=critical
endif
+if BUILD_DAEMON_CLEAN
+ SUBDIRS+=daemon_clean
+endif
+
if BUILD_DEPEND
SUBDIRS+=depend
endif
More information about the Initng-svn
mailing list