diff options
author | Ed Schouten <ed@80386.nl> | 2011-06-26 09:43:37 +0200 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-06-26 09:30:31 -0700 |
commit | 6b9a2f7bfa823a3dc0befd039ee08ec1596a3c64 (patch) | |
tree | 3a2c7516a8db5dda676c3cb46749f034ca01dfdb /configure.ac | |
parent | 578b76086edb834aa447ce9aed60c585e44e6cc1 (diff) |
Get rid of SYSV definition. Just check for pututline().
If the system provides pututline(), we just want to use that, instead of
specifically checking for certain operating systems.
Signed-off-by: Ed Schouten <ed@80386.nl>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6d616ae..739abfa 100644 --- a/configure.ac +++ b/configure.ac @@ -55,7 +55,7 @@ AC_CHECK_MEMBERS([ AC_CHECK_MEMBERS([struct utmpx.ut_syslen], [], [], [#include <utmpx.h>]) # Checks for library functions. -AC_CHECK_FUNCS([updwtmpx utmpxname]) +AC_CHECK_FUNCS([pututline updwtmpx utmpxname]) # Obtain compiler/linker options for depedencies PKG_CHECK_MODULES(SESSREG, xproto) |