summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac5
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 23230b5d4..85fb7c177 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
120030120 120030120
2 - (djm) Fix compilation for NetBSD from dtucker@zip.com.au 2 - (djm) Fix compilation for NetBSD from dtucker@zip.com.au
3 - (tim) [progressmeter.c] make compilers without long long happy. 3 - (tim) [progressmeter.c] make compilers without long long happy.
4 - (tim) [configure.ac] Add -belf to build ELF binaries on OpenServer 5 when
5 using cc. (gcc already did)
4 6
520030118 720030118
6 - (djm) Revert fix for Bug #442 for now. 8 - (djm) Revert fix for Bug #442 for now.
@@ -1038,4 +1040,4 @@
1038 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1040 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1039 ok provos@ 1041 ok provos@
1040 1042
1041$Id: ChangeLog,v 1.2577 2003/01/20 04:15:13 tim Exp $ 1043$Id: ChangeLog,v 1.2578 2003/01/20 04:20:24 tim Exp $
diff --git a/configure.ac b/configure.ac
index df4168096..b85f1884e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.101 2003/01/16 23:31:38 djm Exp $ 1# $Id: configure.ac,v 1.102 2003/01/20 04:20:25 tim Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -283,6 +283,9 @@ mips-sony-bsd|mips-sony-newsos4)
283 do_sco3_extra_lib_check=yes 283 do_sco3_extra_lib_check=yes
284 ;; 284 ;;
285*-*-sco3.2v5*) 285*-*-sco3.2v5*)
286 if test -z "$GCC"; then
287 CFLAGS="$CFLAGS -belf"
288 fi
286 CPPFLAGS="$CPPFLAGS -I/usr/local/include" 289 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
287 LDFLAGS="$LDFLAGS -L/usr/local/lib" 290 LDFLAGS="$LDFLAGS -L/usr/local/lib"
288 LIBS="$LIBS -lprot -lx -ltinfo -lm" 291 LIBS="$LIBS -lprot -lx -ltinfo -lm"