Displaying 20 results from an estimated 24 matches for "need_dash_r".
2000 Mar 23
1
Found a bug in the OpsnSSH configuration script
.../local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do
if test ! -z "$ssldir" ; then
- LIBS="$saved_LIBS -L$ssldir"
+ LIBS="$saved_LIBS -L$ssldir/lib"
CFLAGS="$CFLAGS -I$ssldir/include"
if test "x$need_dash_r" = "x1" ; then
- LIBS="$LIBS -R$ssldir"
+ LIBS="$LIBS -R$ssldir/lib"
fi
fi
LIBS="$LIBS -lcrypto"
--- configure.orig Thu Mar 23 18:55:02 2000
+++ configure Thu Mar 23 18:57:08 2000
@@ -1890,10 +1890,10 @@
echo "configure:1891: checking fo...
2003 Dec 08
3
[Bug 770] configure --without-rpath is incomplete
...g
ReportedBy: djast at cs.toronto.edu
The --without-rpath flag to ./configure is supposed to mean "Disable auto-added
-R linker paths". However, the "*-*-solaris*" section in configure.ac contains
LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib"
need_dash_r=1
which includes the -R option unconditionally.
Other places within configure.ac (e.g., when determining linker options for
openssl, zlib, etc.) correctly check whether need_dash_r has been unset via
--without-rpath before including -R options for them.
------- You are receiving this mail beca...
2000 Oct 25
1
Typo in configure.in
...ot;x$withval" != "xno" ; then
- if test "x$withval" != "$xyes" ; then
+ if test "x$withval" != "xyes" ; then
CFLAGS="$CFLAGS -I${withval}/include"
LDFLAGS="$LDFLAGS -L${withval}/lib"
if test ! -z "$need_dash_r" ; then
@@ -990,7 +990,7 @@
[
if test "x$withval" != "xno" ; then
- if test "x$withval" != "$xyes" ; then
+ if test "x$withval" != "xyes" ; then
CFLAGS="$CFLAGS -I${withval}/include"
LFLAGS="$LFLAGS...
2009 Jul 26
0
LIBS='.. -Wl,-rpath ..' on Linux
...is a linker script that points to /lib/libedit.so. This linker
script confuses ld.so when trying to run sftp.)
I am working through a Gentoo bug[1] for this, but I also want to
check what people here think can be the cause for this. I don't
understand it.
Looking at configure.ac, the variable need_dash_r seems to be
controlling these flags, but need_dash_r should not be set on Linux
unless --with-rpath was specified to configure. It was not. (build
log[2] and config.log[3] available)
Why are these flags added to LIBS? It doesn't happen when building
on amd64 for amd64, only when building on am...
2002 Mar 09
0
Little cleanup for -lz
...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}/lib"
fi
else
if test -n "${need_...
2000 Mar 11
1
OpenSSH 1.2.3 Configure
...penssl /usr/lib/openssl
/usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do
if test ! -z "$ssldir" ; then
! LIBS="$saved_LIBS -L$ssldir -lcrypto"
CFLAGS="$CFLAGS -I$ssldir/include"
if test "x$need_dash_r" = "x1" ; then
LIBS="$LIBS -R$ssldir/lib"
--- 1887,1896 ----
fi
echo $ac_n "checking for OpenSSL/SSLeay directory""... $ac_c" 1>&6
echo "configure:1890: checking for OpenSSL/SSLeay directory" >&5
! #f...
2001 Mar 27
0
Kerberos4 / AFS library issues
...eros4=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"
- fi
- if test ! -z "$blibpath" ; then
- blibpath="$blibpath:${withval}/lib"
- fi
- else
- if test -d /usr/include/kerberosIV ; then
- CPPFLAGS="$CPPFLAGS -I/usr/include/kerberosIV"...
2016 Jul 23
2
Call for testing: OpenSSH 7.3
On Sat, Jul 23, 2016 at 2:30 PM, Hisashi T Fujinaka <htodd at twofifty.com> wrote:
[...]
>> Could you try commenting out the HAVE_REALLOCARRAY line in config.h
>> make clean, make and rerun the test?
>
> That works. Weird how I need that on -current but not on -7.
Looks like reallocarray was added after 7: it's in
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
2000 Mar 07
2
patch for openssh-1.2.2p1
...in
--- openssh-1.2.2p1/configure.in Sun Mar 5 15:02:46 2000
+++ openssh-1.2.2p1-20000308/configure.in Wed Mar 8 00:26:15 2000
@@ -56,6 +56,8 @@
*-*-linux*)
no_dev_ptmx=1
need_pty_removed_on_close=1
+ CFLAGS="$CFLAGS -DDONT_TRY_OTHER_AF"
+ inet6_default_4in6=yes
;;
*-*-netbsd*)
need_dash_r=1
@@ -778,6 +780,26 @@
[
if test "x$withval" != "xno" ; then
AC_DEFINE(IPV4_DEFAULT)
+ fi
+ ]
+)
+
+AC_MSG_CHECKING([whether we assume IPv6-mapped addresses IPv4 addresses])
+AC_ARG_WITH(ipv4-in-ipv6,
+ [ --with-ipv4-in-ipv6 assumes ipv4 mapped addresses ipv4 add...
2006 Sep 30
1
<net/if_tap.h> on FreeBSD
FreeBSD's <net/if_tap.h> requires u_char to be defined:
checking net/if_tap.h usability... no
checking net/if_tap.h presence... yes
configure: WARNING: net/if_tap.h: present but cannot be compiled
configure: WARNING: net/if_tap.h: check for missing prerequisite headers?
configure: WARNING: net/if_tap.h: see the Autoconf documentation
configure: WARNING: net/if_tap.h: section
2001 Feb 13
1
configure.in reorder patch
...ros4=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"
+ fi
+ if test ! -z "$blibpath" ; then
+ blibpath="$blibpath:${withval}/lib"
+ fi
+ else
+ if test -d /usr/include/kerberosIV ; then
+ CPPFLAGS="$CPPFLAGS -I/usr/include/kerberosIV"...
2000 Sep 14
0
modifying Openssh config script for KTH-KRB (fwd)
...if test "x$withval" != "$xyes" ; then
> CFLAGS="$CFLAGS -I${withval}/include"
> LDFLAGS="$LDFLAGS -L${withval}/lib"
> if test ! -z "$need_dash_r" ; then
> LDFLAGS="$LDFLAGS
> -R${withval}/lib"
> fi
> if test ! -z "$blibpath" ; then
>
> blibpath="$blibpath:${withval}/lib"
>...
2001 Mar 22
0
Solaris UseLogin problem
...==================================
RCS file: /cvs/openssh_cvs/configure.in,v
retrieving revision 1.267
diff -u -r1.267 configure.in
--- configure.in 2001/03/18 23:09:28 1.267
+++ configure.in 2001/03/22 21:28:01
@@ -165,6 +165,7 @@
LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib"
need_dash_r=1
AC_DEFINE(PAM_SUN_CODEBASE)
+ AC_DEFINE(LOGIN_NEEDS_UTMPX)
# hardwire lastlog location (can't detect it on some versions)
conf_lastlog_location="/var/adm/lastlog"
AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
Index: loginrec.c
====================================...
2000 Mar 09
0
Can not configure openssh-1.2.2p1
.../local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do
if test ! -z "$ssldir" ; then
- LIBS="$saved_LIBS -L$ssldir"
+ LIBS="$saved_LIBS -L$ssldir/lib"
CFLAGS="$CFLAGS -I$ssldir/include"
if test "x$need_dash_r" = "x1" ; then
- LIBS="$LIBS -R$ssldir"
+ LIBS="$LIBS -R$ssldir/lib"
fi
fi
LIBS="$LIBS -lcrypto"
In an unrelated problem, I am unable to build from a different build
directory than my source directory. In other words, if I follow my
usual b...
2000 May 12
0
SunOS 4.x port
...on SunOS is implemented via #defines to sigvec, thus there
is no SA_RESTART (this is the default behavior).
This also supports SunOS 4.x shadow passwords (passwd adjunct).
- todd
--- configure.in.DIST Fri May 12 15:50:24 2000
+++ configure.in Fri May 12 16:08:22 2000
@@ -107,6 +107,10 @@
need_dash_r=1
AC_DEFINE(USE_UTMPX)
;;
+*-*-sunos4*)
+ CFLAGS="$CFLAGS -DSUNOS4"
+ AC_CHECK_FUNCS(getpwanam)
+ ;;
*-*-sysv*)
CFLAGS="$CFLAGS -I/usr/local/include"
LDFLAGS="$LDFLAGS -L/usr/local/lib"
@@ -353,17 +357,6 @@
[size_t foo; foo = 1235;],
[
AC_DEFINE(HAVE_SI...
2001 Apr 04
1
Solaris UseLogin problems
..._NEEDS_UTMPX
+
+/* Some versions of /bin/login need the TERM supplied on the commandline */
+#undef LOGIN_NEEDS_TERM
+
/* Define is libutil has login() function */
#undef HAVE_LIBUTIL_LOGIN
Index: configure.in
@@ -165,6 +165,8 @@
LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib"
need_dash_r=1
AC_DEFINE(PAM_SUN_CODEBASE)
+ AC_DEFINE(LOGIN_NEEDS_UTMPX)
+ AC_DEFINE(LOGIN_NEEDS_TERM)
# hardwire lastlog location (can't detect it on some versions)
conf_lastlog_location="/var/adm/lastlog"
AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
Index: session.c
@@ -126...
2000 Aug 15
0
[PATCH]: Port to Mac OS X/Darwin, misc
...AGS="$saved_LDFLAGS"
+ CFLAGS="$saved_CFLAGS"
+ LIBCRYPTO="-framework openssl"
+ elif test ! -z "$ssldir" ; then
LDFLAGS="$saved_LDFLAGS -L$ssldir/lib -L$ssldir"
CFLAGS="$saved_CFLAGS -I$ssldir/include"
if test ! -z "$need_dash_r" ; then
LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir"
fi
+ LIBCRYPTO="-lcrypto"
else
LDFLAGS="$saved_LDFLAGS"
+ CFLAGS="$saved_CFLAGS"
+ LIBCRYPTO="-lcrypto"
fi
- LIBS="$saved_LIBS -lcrypto"
+ LIBS="$save...
2000 Mar 11
3
TEST RELEASE: openssh-1.2.3pre1
I have just uploaded a test release of 1.2.3. It includes numerous
fixes from the OpenBSD team and should fix the stupid configure bugs
of 1.2.2p1.
http://violet.ibs.com.au/openssh/files/test/
A detailed ChangeLog is in the directory.
Please report successes and failures.
Regards,
Damien Miller
--
| "Bombay is 250ms from New York in the new world order" - Alan Cox
| Damien Miller -
2000 Aug 24
0
patch for a few things
....Nm
*** ./configure.in.orig Tue Aug 22 20:46:24 2000
--- ./configure.in Thu Aug 24 11:02:14 2000
***************
*** 134,140 ****
;;
*-*-solaris*)
CFLAGS="$CFLAGS -I/usr/local/include"
! LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib -L/usr/ucblib -R/usr/ucblib"
need_dash_r=1
# hardwire lastlog location (can't detect it on some versions)
conf_lastlog_location="/var/adm/lastlog"
--- 134,140 ----
;;
*-*-solaris*)
CFLAGS="$CFLAGS -I/usr/local/include"
! LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib"
need_dash_r=1...