diff options
author | Alan T. DeKok <aland@freeradius.org> | 2017-02-08 13:27:17 -0500 |
---|---|---|
committer | Alan T. DeKok <aland@freeradius.org> | 2017-02-08 13:27:17 -0500 |
commit | 803af556aa19696fbdc17c955a0ce9cc14f5fc27 (patch) | |
tree | 3fda21b2ce411a89eeef4c329736dfc6ed5166da /configure.ac | |
parent | 7de12391916f9d5a6bb2543e9338ca0b6f7eb6fc (diff) | |
download | libpam-radius-auth-803af556aa19696fbdc17c955a0ce9cc14f5fc27.tar.gz libpam-radius-auth-803af556aa19696fbdc17c955a0ce9cc14f5fc27.zip |
Check for poll.h and use that if it exists
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 604c868..3767085 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ dnl ############################################################# AC_PREREQ([2.59]) export CFLAGS LIBS LDFLAGS CPPFLAGS -AC_INIT([pam_radius],[$]Id[$],[http://bugs.freeradius.org],,[http://www.freeradius.org]) +AC_INIT([pam_radius],1.5,[http://bugs.freeradius.org],,[http://www.freeradius.org]) AC_CONFIG_SRCDIR([src/pam_radius_auth.c]) AC_CONFIG_HEADER([src/config.h]) m4_include([m4/ax_cc.m4]) @@ -173,6 +173,7 @@ AC_CHECK_HEADERS( \ sys/time.h \ sys/types.h \ syslog.h \ + poll.h \ time.h \ unistd.h \ utmp.h |