search for: saved_cppflags

Displaying 5 results from an estimated 5 matches for "saved_cppflags".

2002 Mar 15
0
[Bug 168] New: "Could not find working OpenSSL library"
...l /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do <snip> # Try to use $ssldir/include if it exists, otherwise # $ssldir if test -d "$ssldir/include" ; then CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include" ------------------------------------------------------------------ Since "saved_CPPFLAGS" (which is set to /usr/local/include) is never updated, this loop merely appends the last existing directory (which is /opt on my system) to CPPFLAGS. Seems it should either...
2001 Feb 22
11
Lets try this push again.. 2.5.1p2 bugs left.
Things that are still outstanding: 1) Solaris/Redhat/HPUX session.c patch. I've not seen a ya or na on Kevin's pam patch from the Solaris group. 2) Odd Redhat/Debian scp/ssh issues. .. I'm baffled, and I can't replicate the bug. Nor have I seen anything remotely like it reported. 3) SCO.. Is it happy yet for compiling? =) Completed: 1) mdoc2man.pl .. Commited into
2002 Jun 25
1
use libcrypt before libcrypto
...rypt() in libcrypt, not in licrypto, as much as possible. itojun --- configure.ac.orig Tue Jun 25 10:56:47 2002 +++ configure.ac Tue Jun 25 10:57:25 2002 @@ -697,6 +702,9 @@ ) fi +# use libcrypt if there is +AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt") + # Search for OpenSSL saved_CPPFLAGS="$CPPFLAGS" saved_LDFLAGS="$LDFLAGS" @@ -761,12 +769,6 @@ ] ) -# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the -# version in OpenSSL. Skip this for PAM -if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = &quo...
2014 Feb 09
1
openssh 6.5p1 configure and ssl location/shared
...nfigure.ac: .. LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${sa\ ved_LDFLAGS}" else LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}" fi CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}" .. I made a symlink /usr/local/ssl to work around that. Then it failed again, this time because the link with libcrypto failed. This is because I only install a static openssl, where configure was assuming a shared library. The error looked like this, from config.log: /usr/bin/ld: /usr/l...
2001 Feb 16
7
OpenSSH 2.5.0p1
Known issues: 1) Linux 'sleep 20' -- Unfixable before 2.5.0 (known work around) 2) HP/UX signal issue -- Patched and HP/UX 11 works in v2 3) SCO 2/ Native Compiler -- Unfixable before 2.5.0 (known work around) 4) NeXTStep -- Resynced, MAX_GROUPS vs NGROUPS unresolved (not major) 5) DG/UX regcomp/regexec -- Fixed. 6) Cray signal issues -- ??? 7) Solaris '$PATH' issue -- ??