~ubuntu-branches/ubuntu/lucid/rsyslog/lucid

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2007-12-03 19:42:19 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071203194219-yyx6h4mlp3fq2e2r
Tags: 1.19.12-1
* New upstream release.
* debian/control
  - Add Depends: lsb-base (>= 3.0-6) as the init script uses the LSB logging
    functions.
  - Bump Standards-Version to 3.7.3. No further changes required. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# Process this file with autoconf to produce a configure script.
3
3
 
4
4
AC_PREREQ(2.61)
5
 
AC_INIT([rsyslog],[1.19.10],[rsyslog@lists.adiscon.com.])
 
5
AC_INIT([rsyslog],[1.19.12],[rsyslog@lists.adiscon.com.])
6
6
AM_INIT_AUTOMAKE
7
7
AC_CONFIG_SRCDIR([syslogd.c])
8
8
AC_CONFIG_HEADER([config.h])
143
143
        [pthread_create],
144
144
        [
145
145
          AC_DEFINE([USE_PTHREADS], [1], [Multithreading support enabled.])
146
 
          pthreads_libs="-lpthread"
147
 
          AC_SUBST(pthreads_libs)
 
146
          pthreads_libs="-lpthread"
 
147
          pthreads_cflags="-pthread"
 
148
          AC_SUBST(pthreads_libs)
 
149
          AC_SUBST(pthreads_cflags)
148
150
        ],
149
151
        [AC_MSG_FAILURE([pthread is missing])],
150
152
        [-lpthread]