Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5)

This is a backport of ad03952.
This commit is contained in:
Kevin Bowling 2011-01-03 15:09:21 -07:00 committed by Tay Ray Chuan
parent 9ab2b3f749
commit 74d4c44cf2
2 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@ dnl See LICENSE for copying information.
dnl
dnl Original version Dug Song <dugsong@monkey.org>
AC_PREREQ(2.59c)
AC_PREREQ(2.59)
AC_INIT(event.c)
AC_CONFIG_MACRO_DIR([m4])
@ -37,7 +37,7 @@ AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MKDIR_P
# AC_PROG_MKDIR_P - $(MKDIR_P) should be defined by AM_INIT_AUTOMAKE
# AC_PROG_SED is only available in Autoconf >= 2.59b; workaround for older
# versions

View File

@ -0,0 +1,3 @@
AN_IDENTIFIER([ssize_t], [AC_TYPE_SSIZE_T])
AC_DEFUN([AC_TYPE_SSIZE_T], [AC_CHECK_TYPE(ssize_t, int)])