- (djm) Bug #106: Add --without-rpath configure option. Patch from
Nicolas.Williams@ubsw.com
This commit is contained in:
parent
db95e4e107
commit
150c8b5578
|
@ -35,6 +35,8 @@
|
||||||
[sftp-int.c sftp-int.h]
|
[sftp-int.c sftp-int.h]
|
||||||
API cleanup and backwards compat for filexfer v.0 servers; ok markus@
|
API cleanup and backwards compat for filexfer v.0 servers; ok markus@
|
||||||
- (djm) Sync openbsd-compat with OpenBSD CVS too
|
- (djm) Sync openbsd-compat with OpenBSD CVS too
|
||||||
|
- (djm) Bug #106: Add --without-rpath configure option. Patch from
|
||||||
|
Nicolas.Williams@ubsw.com
|
||||||
|
|
||||||
20020210
|
20020210
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
@ -7582,4 +7584,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1849 2002/02/13 05:00:15 djm Exp $
|
$Id: ChangeLog,v 1.1850 2002/02/13 12:06:56 djm Exp $
|
||||||
|
|
14
configure.ac
14
configure.ac
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.17 2002/01/31 06:14:03 tim Exp $
|
# $Id: configure.ac,v 1.18 2002/02/13 12:06:57 djm Exp $
|
||||||
|
|
||||||
AC_INIT
|
AC_INIT
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
|
@ -333,6 +333,18 @@ fi
|
||||||
AC_CHECK_FUNC(getspnam, ,
|
AC_CHECK_FUNC(getspnam, ,
|
||||||
AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
|
AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
|
||||||
|
|
||||||
|
AC_ARG_WITH(rpath,
|
||||||
|
[ --without-rpath Disable auto-added -R linker paths],
|
||||||
|
[
|
||||||
|
if test "x$withval" = "xno" ; then
|
||||||
|
need_dash_r=""
|
||||||
|
fi
|
||||||
|
if test "x$withval" = "xyes" ; then
|
||||||
|
need_dash_r=1
|
||||||
|
fi
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
dnl zlib is required
|
dnl zlib is required
|
||||||
AC_ARG_WITH(zlib,
|
AC_ARG_WITH(zlib,
|
||||||
[ --with-zlib=PATH Use zlib in PATH],
|
[ --with-zlib=PATH Use zlib in PATH],
|
||||||
|
|
Loading…
Reference in New Issue