Revision 25961,
939 bytes
checked in by vasilvv, 11 years ago
(diff) |
In desync:
* Use automake
* Bump upstream version
* Switch to debhelper7
* Switch to source format 3.0 (quilt)
|
Rev | Line | |
---|
[25961] | 1 | # -*- Autoconf -*- |
---|
| 2 | # Process this file with autoconf to produce a configure script. |
---|
| 3 | |
---|
| 4 | AC_PREREQ([2.65]) |
---|
| 5 | AC_INIT([desync], [10.2], [debathena@mit.edu]) |
---|
| 6 | AM_INIT_AUTOMAKE([foreign -Wall]) |
---|
| 7 | AM_MAINTAINER_MODE([enable]) |
---|
| 8 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
---|
| 9 | AC_CONFIG_MACRO_DIR([m4]) |
---|
| 10 | AC_CONFIG_SRCDIR([src/desync.c]) |
---|
| 11 | AC_CONFIG_HEADERS([config.h]) |
---|
| 12 | |
---|
| 13 | # Checks for programs. |
---|
| 14 | AC_PROG_CC |
---|
| 15 | AC_PROG_INSTALL |
---|
| 16 | # automake 1.12 seems to require this, but automake 1.11 doesn't recognize it |
---|
| 17 | m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |
---|
| 18 | LT_INIT |
---|
| 19 | |
---|
| 20 | # Checks for libraries. |
---|
| 21 | |
---|
| 22 | # Checks for header files. |
---|
| 23 | AC_CHECK_HEADERS([fcntl.h limits.h stdlib.h string.h unistd.h]) |
---|
| 24 | |
---|
| 25 | # Checks for typedefs, structures, and compiler characteristics. |
---|
| 26 | |
---|
| 27 | # Checks for library functions. |
---|
| 28 | AC_CHECK_FUNCS([gethostname strerror strtol]) |
---|
| 29 | |
---|
| 30 | AC_CONFIG_FILES([Makefile |
---|
| 31 | src/Makefile |
---|
| 32 | man/Makefile |
---|
| 33 | ]) |
---|
| 34 | AC_OUTPUT |
---|
| 35 | |
---|
Note: See
TracBrowser
for help on using the repository browser.