-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modernize usage of autoconf macros (#110)
- Loading branch information
1 parent
57a70da
commit b631d43
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
|
||
AC_INIT([bgpq4], m4_esyscmd([tr -d '\n' < VERSION]), [email protected]) | ||
AC_INIT([bgpq4], m4_esyscmd([tr -d '\n' < VERSION]), [[email protected]]) | ||
|
||
AC_CANONICAL_HOST | ||
AM_INIT_AUTOMAKE([subdir-objects foreign]) | ||
|
@@ -56,9 +56,8 @@ AM_CONDITIONAL([HOST_NETBSD], [test x$HOST_OS = xnetbsd]) | |
AM_CONDITIONAL([HOST_SOLARIS], [test x$HOST_OS = xsolaris]) | ||
|
||
AC_PROG_CC | ||
AC_PROG_CC_STDC | ||
AM_PROG_CC_C_O | ||
AC_PROG_LIBTOOL | ||
LT_INIT | ||
AC_PROG_INSTALL | ||
|
||
AC_ARG_ENABLE(warnings, | ||
|