search for: withval

Displaying 20 results from an estimated 144 matches for "withval".

2000 Oct 25
1
Typo in configure.in
...e patch at the end of this message. Regards, Pavel Roskin _____________________ --- configure.in Wed Aug 30 18:20:05 2000 +++ configure.in Wed Oct 25 12:17:19 2000 @@ -326,7 +326,7 @@ AC_ARG_WITH(ssl-dir, [ --with-ssl-dir=PATH Specify path to OpenSSL installation ], [ - if test "x$withval" != "$xno" ; then + if test "x$withval" != "xno" ; then tryssldir=$withval fi ] @@ -824,7 +824,7 @@ AC_ARG_WITH(xauth, [ --with-xauth=PATH Specify path to xauth program ], [ - if test "x$withval" != "$xno" ; then + if te...
2001 Mar 27
0
Kerberos4 / AFS library issues
...re.in --- configure.in 2001/03/18 23:09:28 1.267 +++ configure.in 2001/03/27 06:16:46 @@ -404,75 +404,6 @@ ] ) - - -# Check whether user wants Kerberos support -KRB4_MSG="no" -AC_ARG_WITH(kerberos4, - [ --with-kerberos4=PATH Enable Kerberos 4 support], - [ - if test "x$withval" != "xno" ; then - - if test "x$withval" != "xyes" ; then - CPPFLAGS="$CPPFLAGS -I${withval}/include" - LDFLAGS="$LDFLAGS -L${withval}/lib" - if test ! -z "$need_dash_r" ; then - LDFLAGS="$LDFLAGS -R${withval}/lib&...
2002 Mar 09
0
Little cleanup for -lz
...--- openssh-3.1p1/configure.ac.zlib Wed Feb 27 09:12:35 2002 +++ openssh-3.1p1/configure.ac Sat Mar 9 03:35:52 2002 @@ -359,6 +359,7 @@ ) dnl zlib is required +ZLIB_LDFLAGS= AC_ARG_WITH(zlib, [ --with-zlib=PATH Use zlib in PATH], [ @@ -367,15 +368,15 @@ fi if test -d "$withval/lib"; then if test -n "${need_dash_r}"; then - LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}" + ZLIB_LDFLAGS="-L${withval}/lib -R${withval}/lib" else - LDFLAGS="-L${withval}/lib ${LDFLAGS}" + ZLIB_LDFLAGS="-L${withval}/li...
2001 Feb 13
1
configure.in reorder patch
...ot;$LIBS -lresolv") ] +) +AC_CHECK_FUNC(utimes, + [], [ AC_CHECK_LIB(c89, utimes, LIBS="$LIBS -lc89") ] +) + +# Check whether user wants Kerberos support +KRB4_MSG="no" +AC_ARG_WITH(kerberos4, + [ --with-kerberos4=PATH Enable Kerberos 4 support], + [ + if test "x$withval" != "xno" ; then + + if test "x$withval" != "xyes" ; then + CPPFLAGS="$CPPFLAGS -I${withval}/include" + LDFLAGS="$LDFLAGS -L${withval}/lib" + if test ! -z "$need_dash_r" ; then + LDFLAGS="$LDFLAGS -R${withval}/lib...
2024 Mar 06
1
Call for testing: OpenSSH 9.7
...nssl/3.3.0-dev/bin/openssl) $ make ssh >/dev/null && ./ssh -V OpenSSH_9.6p1, OpenSSL 3.3.0-dev diff --git a/configure.ac b/configure.ac index fda092830..1aba65c00 100644 --- a/configure.ac +++ b/configure.ac @@ -2735,7 +2735,15 @@ AC_ARG_WITH([ssl-dir], else CPPFLAGS="-I${withval} ${CPPFLAGS}" fi - openssl_bin_PATH="${PATH}${PATH_SEPARATOR}${withval}/bin${PATH_SEPARATOR}${withval}/apps" + dnl Ensure specified openssl binary works, eg it can + dnl find its runtime libraries, before trying to use. + if test -x "${withval}/bin/openssl" &amp...
2001 Oct 07
3
socks and misc patch to 2.9.9p2
...configure.in Tue Sep 25 15:39:38 2001 +++ openssh-2.9.9p2/configure.in Sat Oct 6 17:41:54 2001 @@ -480,6 +480,141 @@ ] ) +dnl checkfor SOCKS support +AC_MSG_CHECKING(whether to support SOCKS) +AC_ARG_WITH(socks, + [ --with-socks Build with SOCKS firewall support.], + [ case "$withval" in + no) + AC_MSG_RESULT(no) + ;; + yes) + AC_MSG_RESULT(yes) + AC_CHECK_LIB(socks5, SOCKSconnect, [ + socks=5 + LIBS="-lsocks5 $LIBS"], [ + AC_CHECK_LIB(socks, Rconnect, [ + socks=4 + LIBS="...
2002 May 11
4
socks5 support
...configure.in Tue Sep 25 15:39:38 2001 +++ openssh-2.9.9p2/configure.in Sat Oct 6 17:41:54 2001 @@ -480,6 +480,141 @@ ] ) +dnl checkfor SOCKS support +AC_MSG_CHECKING(whether to support SOCKS) +AC_ARG_WITH(socks, + [ --with-socks Build with SOCKS firewall support.], + [ case "$withval" in + no) + AC_MSG_RESULT(no) + ;; + yes) + AC_MSG_RESULT(yes) + AC_CHECK_LIB(socks5, SOCKSconnect, [ + socks=5 + LIBS="-lsocks5 $LIBS"], [ + AC_CHECK_LIB(socks, Rconnect, [ + socks=4 + LIBS="...
2009 Feb 20
4
openssh-5.1p1 configure failure
Hi If I try to run configure for openssh-5.1p1 with --wtih-selinux option it fails giving the error "selinux support requires selinux library" all of the below also dont work a) --wtih-selinux b) --wtih-selinux=path of cross complied library c) LDFLAGS=-Lpath of cross complied library if I remove --wtih-selinux option I am able to everything is fine. How to solve this error? Thanks
2024 Mar 07
1
Call for testing: OpenSSH 9.7
...dev/null && ./ssh -V > OpenSSH_9.6p1, OpenSSL 3.3.0-dev > > diff --git a/configure.ac b/configure.ac > index fda092830..1aba65c00 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -2735,7 +2735,15 @@ AC_ARG_WITH([ssl-dir], > else > CPPFLAGS="-I${withval} ${CPPFLAGS}" > fi > - openssl_bin_PATH="${PATH}${PATH_SEPARATOR}${withval}/bin${PATH_SEPARATOR}${withval}/apps" > + dnl Ensure specified openssl binary works, eg it can > + dnl find its runtime libraries, before trying to use. > + if test -x "${withva...
2010 Jan 12
1
rgl: bogus configure[.ac] (PR#14183)
...the path, when the LIB expansion has been done. Suggested patch: --- rgl/configure.ac.orig Mon Feb 2 14:31:24 2009 +++ rgl/configure.ac Tue Jan 12 06:16:52 2010 @@ -157,9 +157,12 @@ AC_ARG_WITH(gl-libs, [ --with-gl-libs=DIR specify location of OpenGL libs], -[LIBS="${LIBS} -L${withval}"] +[LDFLAGS="${LDFLAGS} -L${withval}" +L_LIB="-L${withval}" +] ) + AC_ARG_WITH(gl-libname, [ --with-gl-libname=NAME specify Library name (defaults to "GL")], [lGL=${withval}], [lGL=GL] @@ -179,6 +182,9 @@ if test "x$this" != xyes; then AC_E...
2024 Mar 06
2
Call for testing: OpenSSH 9.7
On Thu, 7 Mar 2024 at 02:19, Damien Miller <djm at mindrot.org> wrote: > > > > On Tue, 5 Mar 2024, The Doctor wrote: > > > Showstopper problem! > > > > I want configure to work with /usr/local/bin/openssl and not /usr/bin/openssl > > You can use --with-ssl-dir for this. --with-ssl-dir=/foo will have > configure try /foo/bin/openssl and
2000 Jan 19
3
AIX openssh patches
...er to use AIX authenticate""... $ac_c" 1>&6 + echo "configure:XXXX: checking whether to use AIX authenticate" >&5 + # Check whether --with-aixauthenticate or --without-aixauthenticate was given. + if test "${with_aixauthenticate+set}" = set; then + withval="$with_aixauthenticate" + case "$withval" in + yes) + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<\EOF + #define WITH_AIXAUTHENTICATE 1 + EOF + LIBS="$LIBS -ls" + ;; + *) +...
2001 Sep 29
0
configure.in fixes for 2.9.9p2
...onfigure.in Thu Sep 27 10:11:04 2001 @@ -320,34 +308,59 @@ ) AC_ARG_WITH(pcre, - [ --with-pcre Override built in regex library with pcre], + [ --with-pcre[[=PATH]] Override built in regex library with pcre + (optionally in PATH)], [ + case "$withval" in + no) ;; + *) + if test "x$withval" != "xyes"; then + CPPFLAGS="${CPPFLAGS} -I$withval/include" + LDFLAGS="${LDFLAGS} -L$withval/lib" + fi - AC_CHECK_LIB(pcre, pcre_info, - [ - AC_DEFINE(HAVE_LIBPCRE) - LIBS="$LIBS -lpc...
2000 Sep 14
0
modifying Openssh config script for KTH-KRB (fwd)
...g. > > ******************************************************************** > # Check whether user wants Kerberos support > KRB4_MSG="no" > # Check whether --with-kerberos4 or --without-kerberos4 was given. > if test "${with_kerberos4+set}" = set; then > withval="$with_kerberos4" > > if test "x$withval" != "xno" ; then > > if test "x$withval" != "$xyes" ; then > CFLAGS="$CFLAGS -I${withval}/include"...
2002 Jan 22
0
bugzilla down; patch for configure.ac --with-prngd-socket
...ought I'd post this here. The current portable OpenSSH developer CVS has some non-standard shell syntax in the --with-prngd-socket case, and the grep "-q" option is not supported in at least Solaris 2.5.1. Here's a patch. Alternatively, the first test could use case "$withval" in /*) ;; *) AC_MSG_ERROR(You must specify an absolute path to the entropy socket) ;; esac - Dave Dykstra --- configure.ac.O Tue Jan 22 11:20:41 2002 +++ configure.ac Tue Jan 22 11:22:39 2002 @@ -915,10 +915,12 @@ if test ! -z "$PRNGD_PORT" ; then AC_MSG_ERROR(You...
2001 Oct 02
2
New feature: remote entropy gatherer port
...*** configure.in.orig Wed Sep 26 00:39:38 2001 --- configure.in Tue Oct 2 20:34:09 2001 *************** *** 1494,1505 **** ] ) ! # Check for PRNGD/EGD pool file AC_ARG_WITH(prngd-port, ! [ --with-prngd-port=PORT read entropy from PRNGD/EGD localhost:PORT], [ if test ! -z "$withval" -a "x$withval" != "xno" ; then ! PRNGD_PORT="$withval" AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT) fi ] --- 1494,1510 ---- ] ) ! # Check for PRNGD/EGD pool port (with remote host support) AC_ARG_WITH(prngd-port, ! [ --with-prngd-port=[H...
2001 Jun 03
1
OPIE support patch
...on Mar 19 00:09:28 2001 +++ openssh-2.5.2p2/configure.in Sun Jun 3 18:36:22 2001 @@ -473,6 +473,31 @@ ) LIBS="$LIBS $KLIBS" +# Check whether user wants OPIE support +OPIE_MSG="no" +AC_ARG_WITH(opie, + [ --with-opie=PATH Enable OPIE support], + [ + if test "x$withval" != "xno" ; then + + if test "x$withval" != "xyes" ; then + CPPFLAGS="$CPPFLAGS -I${withval}/include" + LDFLAGS="$LDFLAGS -L${withval}/lib" + fi + + AC_DEFINE(OPIE) + LIBS="-lopie $LIBS" + OPIE_MSG="yes" +...
2000 Aug 02
0
Fix for configure.in
...built. if test x$PICFLAG = x; then - echo No support for PIC code - disabling smbwrapper and smbsh + AC_MSG_WARN([No support for PIC code - disabling smbwrapper and smbsh]) WRAP="" WRAP32="" elif test x$ac_cv_func_syscall = xno; then @@ -1343,7 +1343,7 @@ withval="$with_sslinc" case "$withval" in yes|no) - echo "configure: warning: --with-sslinc called without argument - will use default" 1>&w + AC_MSG_WARN([--with-sslinc called without argument - will use default]) CFLAGS="-I/usr/local/ssl/include $CFLA...
2001 May 21
1
2.9p1 patches
...- LIBS="$LIBS -lpcreposix -lpcre" - no_comp_check="yes" - ], - [ AC_MSG_ERROR([*** Can not locate pcre libraries.]) ] - ) - ] -) + [ --with-pcre[=PATH] Override builtin regex library with PCRE + (optionally in DIR)],[ + case "$withval" in + no) ;; + *) + if test "x$withval" != "xyes"; then + CPPFLAGS="${CPPFLAGS} -I$withval/include" + LDFLAGS="${LDFLAGS} -L$withval/lib" + fi + + AC_CHECK_HEADER(pcreposix.h, + AC_CHECK_LIB(pcre, pcre_info,[ + AC_DEFINE(...
2000 Nov 05
1
HP-UX 11.0 libpam patch
Patch PHCO_22265 (s700_800 11.00 cumulative libpam and libpam_unix patch) is now available that fixes a problem discussed a while back on the list regarding an incorrect return value from pam_acct_mgmt(), which effected the ability to change an expired password: (SR: 8606160402 CR: JAGad29724) HP-UX is inconsistent with the PAM standard with respect to the return value for