~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_syslog/pandora-plugin.ac

  • Committer: Monty Taylor
  • Author(s): Robert Collins
  • Date: 2009-11-03 20:51:31 UTC
  • mto: (1192.3.7 pandora-build)
  • mto: This revision was merged to the branch mainline in revision 1221.
  • Revision ID: mordred@inaugust.com-20091103205131-7hscp4y2iq8v5k1i
Merged buildsystem change from lifeless.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl Generated file, run make to rebuild
 
2
dnl Config for Syslog Logging Plugin
 
3
 
 
4
AC_ARG_WITH([logging-syslog-plugin],[
 
5
dnl indented werid to make the help output correct
 
6
AS_HELP_STRING([--with-logging-syslog-plugin],[Build Syslog Logging Plugin and enable it. @<:@default=yes@:>@])
 
7
AS_HELP_STRING([--without-logging-syslog-plugin],[Disable building Syslog Logging Plugin])
 
8
  ],
 
9
  [with_logging_syslog_plugin="$withval"],
 
10
  [AS_IF([test "x$ac_with_all_plugins" = "yes"],
 
11
         [with_logging_syslog_plugin=yes],
 
12
         [with_logging_syslog_plugin=yes])])
 
13
 
 
14
AM_CONDITIONAL([BUILD_LOGGING_SYSLOG_PLUGIN],
 
15
               [test "x${with_logging_syslog_plugin}" = "xyes"])
 
16
AS_IF([test "x$with_logging_syslog_plugin" = "xyes"],
 
17
      [
 
18
  
 
19
        pandora_default_plugin_list="logging_syslog,${pandora_default_plugin_list}"
 
20
        pandora_builtin_list="builtin_logging_syslog_plugin,${pandora_builtin_list}"
 
21
        pandora_plugin_libs="${pandora_plugin_libs} \${top_builddir}/plugin/liblogging_syslog_plugin.la"
 
22
        PANDORA_PLUGIN_DEP_LIBS="${PANDORA_PLUGIN_DEP_LIBS} "
 
23
      ])