summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2010-01-17 17:05:39 -0800
committerTim Rice <tim@multitalents.net>2010-01-17 17:05:39 -0800
commit641ebf1f86b4f254cab71f9496e8915940248004 (patch)
tree3a0d67491823ece251230eb9ff4b9529f5064eed
parent7ab7b9346d658f86cbd08bd0e7f5f41dbf6ee880 (diff)
- (tim) [configure.ac] Use the C99-conforming functions snprintf() and
vsnprintf() named _xsnprintf() and _xvsnprintf() on SVR5 systems.
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac5
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9759182dc..aed4bba47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
120100117 120100117
2 - (tim) [configure.ac] OpenServer 5 needs BROKEN_GETADDRINFO too. 2 - (tim) [configure.ac] OpenServer 5 needs BROKEN_GETADDRINFO too.
3 - (tim) [configure.ac] Use the C99-conforming functions snprintf() and
4 vsnprintf() named _xsnprintf() and _xvsnprintf() on SVR5 systems.
3 5
420100116 620100116
5 - (dtucker) [openbsd-compat/pwcache.c] Pull in includes.h and thus defines.h 7 - (dtucker) [openbsd-compat/pwcache.c] Pull in includes.h and thus defines.h
diff --git a/configure.ac b/configure.ac
index 2ea3ed706..aa74fc30f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.437 2010/01/17 20:48:22 tim Exp $ 1# $Id: configure.ac,v 1.438 2010/01/18 01:05:39 tim 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.437 $) 18AC_REVISION($Revision: 1.438 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -744,6 +744,7 @@ mips-sony-bsd|mips-sony-newsos4)
744 ;; 744 ;;
745# UnixWare 7.x, OpenUNIX 8 745# UnixWare 7.x, OpenUNIX 8
746*-*-sysv5*) 746*-*-sysv5*)
747 CPPFLAGS="$CPPFLAGS -Dvsnprintf=_xvsnprintf -Dsnprintf=_xsnprintf"
747 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars]) 748 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
748 AC_DEFINE(USE_PIPES) 749 AC_DEFINE(USE_PIPES)
749 AC_DEFINE(SETEUID_BREAKS_SETUID) 750 AC_DEFINE(SETEUID_BREAKS_SETUID)