~ubuntu-branches/debian/sid/rlinetd/sid

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Robert Luberda
  • Date: 2010-03-20 18:03:45 UTC
  • mfrom: (2.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100320180345-x1srfbe2tg00ezsf
Tags: 0.7-1
* New upstream version.
* Recommend rsyslog instead of sysklogd (closes: #526922).
* update-inetd:
  + add support for enabling, disabling and removing entries;
  + use ucf for managing generated files;
  + ignore ucf files in rlinetd.conf;
  + make appropriate changes in  postinst and postrm scripts.
* Set debhelper compat level to 7
* Standards-Version: 3.8.4 (no changes). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
 
AC_PREREQ(2.61)
 
2
AC_PREREQ(2.65)
3
3
 
4
 
AC_INIT([rlinetd],[0.6.2],[rlinetd@packages.debian.org])
5
 
AC_CONFIG_SRCDIR([engine.c])
 
4
AC_INIT([rlinetd],[0.7],[rlinetd@packages.debian.org])
 
5
AC_CONFIG_MACRO_DIR([m4])
 
6
AC_CONFIG_SRCDIR([src/engine.c])
6
7
AC_CONFIG_AUX_DIR(auxiliary)
7
 
AC_CONFIG_HEADERS([config.h])
 
8
AC_CONFIG_HEADERS([src/config.h])
8
9
AC_DISABLE_STATIC
9
 
AM_INIT_AUTOMAKE
 
10
AM_INIT_AUTOMAKE([1.10 gnu])
 
11
 
 
12
AM_GNU_GETTEXT_VERSION([0.16.1])
 
13
AM_GNU_GETTEXT([external])
10
14
 
11
15
AM_WITH_DMALLOC
12
16
 
13
17
AC_PROG_MAKE_SET
14
18
 
15
 
AC_PROG_CXX
16
19
AC_PROG_CC
17
 
AC_PROG_CPP
18
20
AC_PROG_INSTALL
19
21
AC_PROG_LN_S
20
 
AC_PROG_AWK
21
22
AM_PROG_LEX
22
23
AC_PROG_YACC
23
 
AC_PROG_LIBTOOL
 
24
LT_INIT
 
25
 
 
26
 
24
27
 
25
28
### 
26
29
AH_TEMPLATE([HAVE_GETADDRINFO],
103
106
AC_HEADER_TIME
104
107
AC_HEADER_STDC
105
108
AC_HEADER_SYS_WAIT
106
 
AC_CHECK_HEADERS([arpa/inet.h errno.h fcntl.h malloc.h netdb.h netinet/in.h stddef.h stdlib.h string.h sys/socket.h sys/time.h syslog.h unistd.h getopt.h])
 
109
AC_CHECK_HEADERS([arpa/inet.h errno.h fcntl.h malloc.h netdb.h netinet/in.h stddef.h stdlib.h string.h sys/socket.h sys/time.h syslog.h unistd.h getopt.h rpc/rpc.h])
107
110
 
108
111
 
109
112
AC_C_CONST
155
158
 
156
159
AM_MAINTAINER_MODE
157
160
 
 
161
 
158
162
AC_SUBST(libsrlinetd)
159
163
AC_PATH_PROG(perlpath, perl, /usr/bin/perl)
160
 
AC_CONFIG_FILES([Makefile port/Makefile scripts/Makefile man/Makefile scripts/inetd2rlinetd scripts/td2lsf])
 
164
AC_PATH_PROG(po4apath, po4a, )
 
165
 
 
166
AC_CONFIG_FILES([Makefile
 
167
                src/Makefile
 
168
                po/Makefile.in
 
169
                port/Makefile 
 
170
                scripts/Makefile 
 
171
                man/Makefile 
 
172
                scripts/inetd2rlinetd 
 
173
                scripts/td2lsf])
161
174
AC_OUTPUT