Revision 25984,
847 bytes
checked in by vasilvv, 11 years ago
(diff) |
In saferm:
* Use automake
* Bump upstream version
* Switch to debhelper7
* Switch to source format 3.0
|
Rev | Line | |
---|
[25984] | 1 | # -*- Autoconf -*- |
---|
| 2 | # Process this file with autoconf to produce a configure script. |
---|
| 3 | |
---|
| 4 | AC_PREREQ([2.65]) |
---|
| 5 | AC_INIT([saferm], [10.1.0], [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_SRCDIR([src/saferm.c]) |
---|
| 10 | AC_CONFIG_HEADERS([config.h]) |
---|
| 11 | |
---|
| 12 | # Checks for programs. |
---|
| 13 | AC_PROG_CC |
---|
| 14 | |
---|
| 15 | # Checks for libraries. |
---|
| 16 | |
---|
| 17 | # Checks for header files. |
---|
| 18 | AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h]) |
---|
| 19 | |
---|
| 20 | # Checks for typedefs, structures, and compiler characteristics. |
---|
| 21 | AC_TYPE_OFF_T |
---|
| 22 | AC_TYPE_SSIZE_T |
---|
| 23 | AC_SYS_LARGEFILE |
---|
| 24 | |
---|
| 25 | # Checks for library functions. |
---|
| 26 | AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK |
---|
| 27 | AC_FUNC_MALLOC |
---|
| 28 | AC_CHECK_FUNCS([fchdir memset rmdir strchr strerror strrchr]) |
---|
| 29 | |
---|
| 30 | AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) |
---|
| 31 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.