- (djm) [configure.ac] Turn on -g for gcc compilers. Helps pre-installation
debugging. ok dtucker@
This commit is contained in:
parent
55aca027ed
commit
03af12e930
|
@ -33,6 +33,8 @@
|
||||||
- djm@cvs.openbsd.org 2012/12/03 00:14:06
|
- djm@cvs.openbsd.org 2012/12/03 00:14:06
|
||||||
[auth2-chall.c ssh-keygen.c]
|
[auth2-chall.c ssh-keygen.c]
|
||||||
Fix compilation with -Wall -Werror (trivial type fixes)
|
Fix compilation with -Wall -Werror (trivial type fixes)
|
||||||
|
- (djm) [configure.ac] Turn on -g for gcc compilers. Helps pre-installation
|
||||||
|
debugging. ok dtucker@
|
||||||
|
|
||||||
20121114
|
20121114
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.496 2012/07/06 01:49:29 djm Exp $
|
# $Id: configure.ac,v 1.497 2012/12/03 00:55:54 djm Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
||||||
AC_REVISION($Revision: 1.496 $)
|
AC_REVISION($Revision: 1.497 $)
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
AC_LANG([C])
|
AC_LANG([C])
|
||||||
|
|
||||||
|
@ -155,6 +155,7 @@ AC_ARG_WITH([stackprotect],
|
||||||
|
|
||||||
|
|
||||||
if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
|
if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
|
||||||
|
OSSH_CHECK_CFLAG_COMPILE([-g])
|
||||||
OSSH_CHECK_CFLAG_COMPILE([-Wall])
|
OSSH_CHECK_CFLAG_COMPILE([-Wall])
|
||||||
OSSH_CHECK_CFLAG_COMPILE([-Wpointer-arith])
|
OSSH_CHECK_CFLAG_COMPILE([-Wpointer-arith])
|
||||||
OSSH_CHECK_CFLAG_COMPILE([-Wuninitialized])
|
OSSH_CHECK_CFLAG_COMPILE([-Wuninitialized])
|
||||||
|
|
Loading…
Reference in New Issue