summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-02-15 11:41:35 +1100
committerDarren Tucker <dtucker@zip.com.au>2013-02-15 11:41:35 +1100
commit3c4a24c3e329ccca86629ed694b9756309b00113 (patch)
tree31d7a56074a06b4f25ab9514824806527313d5f1 /configure.ac
parent4018dc04daa613d0e20df10947b85f154dc5765d (diff)
- (dtucker) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
Use getpgrp() if we don't have getpgid() (old BSDs, maybe others).
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index e96e81e64..def34fa0b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.503 2013/02/10 23:39:13 djm Exp $ 1# $Id: configure.ac,v 1.504 2013/02/15 00:41:35 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) 17AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
18AC_REVISION($Revision: 1.503 $) 18AC_REVISION($Revision: 1.504 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20AC_LANG([C]) 20AC_LANG([C])
21 21
@@ -1550,6 +1550,8 @@ AC_CHECK_FUNCS([ \
1550 getopt \ 1550 getopt \
1551 getpeereid \ 1551 getpeereid \
1552 getpeerucred \ 1552 getpeerucred \
1553 getpgid \
1554 getpgrp \
1553 _getpty \ 1555 _getpty \
1554 getrlimit \ 1556 getrlimit \
1555 getttyent \ 1557 getttyent \