mirror of git://anongit.mindrot.org/openssh.git
- (djm) [configure.ac] Use = instead of == in shell tests. Patch from
dr AT vasco.com
This commit is contained in:
parent
88b844f19b
commit
1f78980099
|
@ -1,3 +1,7 @@
|
||||||
|
20101011
|
||||||
|
- (djm) [configure.ac] Use = instead of == in shell tests. Patch from
|
||||||
|
dr AT vasco.com
|
||||||
|
|
||||||
20101007
|
20101007
|
||||||
- (djm) [ssh-agent.c] Fix type for curve name.
|
- (djm) [ssh-agent.c] Fix type for curve name.
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.454 2010/10/07 10:39:17 djm Exp $
|
# $Id: configure.ac,v 1.455 2010/10/11 11:35:23 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.454 $)
|
AC_REVISION($Revision: 1.455 $)
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
|
|
||||||
AC_CONFIG_HEADER(config.h)
|
AC_CONFIG_HEADER(config.h)
|
||||||
|
@ -1295,7 +1295,7 @@ AC_ARG_WITH(libedit,
|
||||||
LDFLAGS="-L${withval}/lib ${LDFLAGS}"
|
LDFLAGS="-L${withval}/lib ${LDFLAGS}"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test "x$use_pkgconfig_for_libedit" == "xyes"; then
|
if test "x$use_pkgconfig_for_libedit" = "xyes"; then
|
||||||
LIBEDIT=`$PKGCONFIG --libs-only-l libedit`
|
LIBEDIT=`$PKGCONFIG --libs-only-l libedit`
|
||||||
CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
|
CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue