Displaying 20 results from an estimated 91 matches for "lwrap".
Did you mean:
wrap
2011 Jan 28
2
SNMP And SuSE
...ommand:
net-snmp-config --version --base-cflags --libs
The result is:
5.3.0.1
-DINET6 -O2 -fmessage-length=0 -Wall -D_FORTIFY_SOURCE=2 -g \
-fno-strict-aliasing -fstack-protector-all -Dlinux \
-I/usr/include/rpm -I/usr/include
-L/usr/lib64 -lnetsnmp -lcrypto -lm -L/usr/lib -lwrap
If I then execute the configure command:
./configure --with-user=ups --with-group=ups --sysconfdir=/etc/ups \
--mandir=/usr/share/man --witn-snmp
I get this message:
configure: error: "Net-SNMP libraries not found, required for
SNMP drivers"
The claim tha...
1999 Dec 08
0
Patches to help pre16 run on NetBSD
-lwrap on NetBSD doesn't like not having some of its global variables
defined, so linking it to anything but sshd is bad. This patch
fixes Makefile.in and configure/configure.in to make this work.
Thanks,
David
--- configure.orig Tue Dec 7 01:10:51 1999
+++ configure Wed Dec 8 12:46:12 1999
@@ -...
2001 Aug 18
0
installing openssh-2.9p2 after openssl-0.9.6b on freebsd-4.3-RELEASE
...Makefile
*** openssh-2.9p2-FIXED/Makefile Sat Aug 18 21:12:53 2001
--- openssh-2.9p2/Makefile Sat Aug 18 21:34:12 2001
***************
*** 27,43 ****
CC=gcc
LD=gcc
CFLAGS=-O -pipe -Wall -I/l/ssl/include
! CPPFLAGS=-I. -I$(srcdir) $(PATHS) -DHAVE_CONFIG_H
! # -ino: Sat-18.08.01-21:02
! #LIBS=-lwrap -lz -lutil -lcrypto -lRSAglue -lrsaref -lcrypt
! LIBS=-lwrap -lz -lutil -lcrypt -L/l/ssl/lib -lcrypto -lssl -L/l/lib -lrsaref
AR=/usr/bin/ar
RANLIB=ranlib
INSTALL=/usr/bin/install -c
PERL=/usr/bin/perl5
ENT=
XAUTH_PATH=/usr/X11R6/bin/xauth
! LDFLAGS=-L. -Lopenbsd-compat/
EXEEXT=...
2001 Feb 20
4
(Solaris) Linker flags in 2.5.1p1... (fwd)
...-solaris2.7
Compiler: cc
Compiler flags: -fast -xarch=v7
Preprocessor flags: -I/usr/local/include -I../include -I../include
Linker flags: -L../lib/sol7/sparcv7 -L/usr/local/lib -R/usr/local/lib -L/usr/ucblib -R/usr/ucblib -L../lib -R../lib -L../lib -R../lib
Libraries: -lwrap -lz -lsocket -lnsl -lgen -lcrypto
You should not ever use '-L/usr/ucblib -R/usr/ucblib', since Solaris BSD
compat libraries are evil broken and AFIAK you don't need anything from
/usr/ucblib.
Ignore '-L../lib/sol7/sparcv7'; this is for my multi sparc platform
build. Also ign...
2007 Mar 24
0
configure/makefile cleanup: remove LIBSELINUX, LIBWRAP and LIBPAM
...onfigure.ac,v
retrieving revision 1.373
diff -u -p -r1.373 configure.ac
--- configure.ac 21 Mar 2007 10:39:57 -0000 1.373
+++ configure.ac 24 Mar 2007 11:31:56 -0000
@@ -1109,8 +1109,7 @@ AC_ARG_WITH(tcp-wrappers,
CPPFLAGS="-I${withval} ${CPPFLAGS}"
fi
fi
- LIBWRAP="-lwrap"
- LIBS="$LIBWRAP $LIBS"
+ LIBS="-lwrap $LIBS"
AC_MSG_CHECKING(for libwrap)
AC_TRY_LINK(
[
@@ -1126,7 +1125,7 @@ AC_ARG_WITH(tcp-wrappers,
AC_DEFINE(LIBWRAP, 1,
[Define if you want
TCP Wrappers support])
- AC_SUBST(LIBWRAP)
+ SSH...
2001 Feb 10
2
SNAP 20010209 fails to compile sftp on Slackware
...SNAP-20010209.tar.gz fails to compile on Slackware. Patch at
the end of this message.
Here is the error:
gcc -o sftp sftp.o sftp-client.o sftp-common.o sftp-int.o log-client.o -L. -Lopenbsd-compat/ -L/usr/local/ssl/lib -L/usr/local/ssl -lssh -lopenbsd-compat -lcrypt -lz -lnsl -lutil -lcrypto -lwrap
openbsd-compat//libopenbsd-compat.a(bsd-arc4random.o): In function `arc4random_stir':
/usr/local/src/openssh-SNAP-02082001/openbsd-compat/bsd-arc4random.c:61: undefined reference to `seed_rng'
collect2: ld returned 1 exit status
make: *** [sftp] Error 1
Here is my configure:
./configure -...
2005 Aug 17
0
Re: Problems compiling snmp-ups on Solaris
...eaving directory `/tmp/nut-2.0.2/drivers'
>
> I'm using net-snmp 5.2.1.2, and Solaris ld. I was wondering if you had
> any suggestions.
>
> Thanks very much for your time.
I don't see the net-snmp libs in the above link step (should be "... -L/usr/lib -lnetsnmp -lm -lwrap")
what gives you a "net-snmp-config --version" and where net-snmp
is installed? I think the libs wasn't found, or at list the net-snmp-config
which gives back the necessary compile/link info...
Check in your config.log (search for snmp):
...
checking for Net-SNMP libs
result: -...
1999 Nov 22
1
tcp-wrappers not being used even w/ --with-tcp-wrappers
Howdy,
It seems that even when specifying the --with-tcp-wrappers configure
flag, the LIBWRAP define in config.h never gets #define'd and -lwrap
never gets added to LIBS in the Makefile. To make sure I wasn't
dealing with a stale configure file, I ran autoconf on configure.in
to roll a new configure. I also don't see anything wrong with the
--with-tcp-wrappers defined in configure.in. No luck so far.
I'll continue...
2002 Jan 18
1
[patch] openssh 3.0.2p1: Libwrap gets linked in unnecessarily
....macro/configure.ac openssh-3.0.1p1/configure.ac
--- openssh-3.0.1p1.macro/configure.ac Sat Nov 3 19:09:33 2001
+++ openssh-3.0.1p1/configure.ac Wed Dec 19 21:37:19 2001
@@ -546,7 +546,8 @@ AC_ARG_WITH(tcp-wrappers,
CPPFLAGS="-I${withval} ${CPPFLAGS}"
fi
fi
- LIBS="-lwrap $LIBS"
+ LIBWRAP="-lwrap"
+ LIBS="$LIBS $LIBWRAP"
AC_MSG_CHECKING(for libwrap)
AC_TRY_LINK(
[
@@ -557,12 +558,14 @@ AC_ARG_WITH(tcp-wrappers,
[
AC_MSG_RESULT(yes)
AC_DEFINE(LIBWRAP)
+ AC_SUBST(LIBWRAP)
TCPW_MSG="yes"...
2001 Feb 24
2
NeXT 3.3 vs openssh-2.5.1p1 (Couldn't restore privileges)
Wanted to make openssh w/both -lwrap and BIND 8.2.3's -lbind on an m68k NeXT
3.3. Started w/then current openssh-2.3.0p1. Had to use -posix for
compiler and loader to get -lbind to work, and had to throw out all openssh
NeXT porting to get -posix to work. By the time I had it all working and
installed, a security mailing list s...
2010 Jan 03
1
tftp-hpa 5.0 fails to build on mips
...ad-function-cast
-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-Wnested-externs -Winline -Wwrite-strings -Wundef -Wshadow
-Wsign-compare -pipe -fno-strict-aliasing -I/build/buildd/tftp-hpa-5.0
-c remap.c
gcc -Wl,-z,defs tftpd.o recvfrom.o misc.o remap.o ../common/libcommon.a
-lwrap -lnsl /build/buildd/tftp-hpa-5.0/lib/libxtra.a -o tftpd
/usr/bin/ld.real: non-dynamic relocations refer to dynamic symbol
__progname@@GLIBC_2.0
/usr/bin/ld.real: failed to set dynamic section sizes: Bad value
collect2: ld returned 1 exit status
[...]
---snap---
The full buildlogs are available...
2001 Oct 09
2
Solaris 2.6, and AFS
...G_H
removed include <crypt.h> from file auth-passwd.c
and changed the build
from:
-L. -Lopenbsd-compat/ -R/usr/local/ssl/lib -L/usr/local/ssl/lib
-L/usr/local/lib -R/usr/local/lib -L/usr/athena/lib -R/usr/athena/lib
-L/usr/afsws/lib -lssh -lopenbsd-compat -lkafs -lresolv -ldes -lkrb -lwrap
-lz -lsocket -lnsl -lgen -lcrypto -ldes
to:
-L. -Lopenbsd-compat/ -R/usr/local/ssl/lib -L/usr/local/ssl/lib
-R/usr/local/lib -L/usr/athena/lib -R/usr/athena/lib -L/usr/afsws/lib -lssh
-lopenbsd-compat -lkafs -lresolv -lkrb -lpam -ldl -lwrap -lz -lsocket -lnsl
-lgen -lcrypto
I am not on the mai...
2004 Aug 20
1
problem compiling OpenSSH 3.9 on OpenBSD 3.4
...auth-bsdauth.o
auth2-hostbased.o auth2-kbdint.o auth2-none.o auth2-passwd.o
auth2-pubkey.o monitor_mm.o monitor.o monitor_wrap.o kexdhs.o kexgexs.o
auth-krb5.o auth2-gss.o gss-serv.o gss-serv-krb5.o
-L/usr/src/usr.bin/ssh/sshd/../lib/obj -lssh -lgssapi -lkrb5 -lkafs
-lcrypto -lutil -lz -ldes -lwrap
sshd.o: In function `main':
sshd.o(.text+0x1ed4): undefined reference to `closefrom'
sshd.o(.text+0x1ee4): undefined reference to `closefrom'
collect2: ld returned 1 exit status
*** Error code 1
Stop in /usr/src/usr.bin/ssh/sshd (line 122 of
/usr/share/mk/bsd.prog.mk).
*** Error code...
2003 May 06
0
prngd not seeded
...th -Wno-uninitialized
Preprocessor flags: -I/usr/local/include -I/usr/local/include
-I/usr/local/lib -I/usr/local/include
Linker flags: -L/usr/local/lib -R/usr/local/lib -L/usr/local/lib
-R/usr/local/lib -L/usr/local/lib -R/usr/local/lib -L/usr/local/lib
-R/usr/local/lib
Libraries: -lwrap -lz -lsocket -lnsl -lcrypto
You can see the Random Number Source is ssh-rand-helper
with the new openssl-0.9.7b I get this:
OpenSSH has been configured with the following options:
User binaries: /usr/local/bin
System binaries: /usr/local/sbin...
2003 Sep 16
3
OpenBSD 3.3 x86 Build Problem
...uth.o auth2-hostbased.o auth2-kbdint.o auth2-none.o
auth2-passwd.o auth2-pubkey.o monitor_mm.o monitor.o
monitor_wrap.o monitor_fdpass.o kexdhs.o kexgexs.o auth-krb5.o
auth2-gss.o gss-serv.o gss-serv-krb5.o
-L/var/src/usr.bin/ssh/sshd/../lib/obj -lssh -lgssapi -lkrb5
-lcrypto -lutil -lz -ldes -lwrap
gss-serv-krb5.o: Undefined symbol `_gss_krb5_copy_ccache'
referenced from text segment
collect2: ld returned 1 exit status
*** Error code 1
Stop in /var/src/usr.bin/ssh/sshd (line 122 of
/usr/share/mk/bsd.prog.mk).
*** Error code 1
Stop in /var/src/usr.bin/ssh.
Does anything need t...
2001 Jul 16
1
openssh 2.9p1 on Solaris 2.6 with AFS
...ssh ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o
readconf.o clientloop.o -L. -Lopenbsd-compat/ -R/usr/local/ssl/lib
-L/usr/local/ssl/lib -L/usr/local/lib -R/usr/local/lib -L/usr/athena/lib
-R/usr/athena/lib -L/usr/afsws/lib -lssh -lopenbsd-compat -lkafs -lresolv
-ldes -lkrb -lpam -ldl -lwrap -lz -lsocket -lnsl -lgen -lcrypto -ldes
/usr/local/ssl/lib/libcrypto.a(set_key.o): In function
`des_check_key_parity':
set_key.o(.text+0x380): multiple definition of `des_check_key_parity'
/usr/local/lib/libdes.a(key_parity.o)(.text+0x98): first defined here
/usr/local/sparc-sun-solaris2.6...
2008 Nov 08
1
dovecot Digest, Vol 67, Issue 19
Thanks Buddy,
I got it working. It was giving error when running make 'undefined
reference to `request_init' etc' then I ran it with gmake LDFLAGS+=-lwrap
and it worked and everything is working fine. Thanks again for your help
Thankyou
Tahir Riaz
Assistant Director (Systems)
COMSATS Internet Services
COMSATS Headquarters Building
9, Shahrah-e-Jamhuriat, G-5/2
Islamabad.
-----Original Message-----
From: dovecot-bounces+tahir.riaz=comsats.ne...
2000 Oct 28
11
Another shapshot
I have just uploaded another snapshot to:
http://www.mindrot.org/misc/openssh/openssh-SNAP-20001028.tar.gz
Please test this one extra hard, it is likely to become 2.3.0p1 early
next week.
Regards,
Damien Miller
--
| ``We've all heard that a million monkeys banging on | Damien Miller -
| a million typewriters will eventually reproduce the | <djm at mindrot.org>
| works of
2002 Jun 28
2
ssh_rsa_verify: RSA_verify failed: error:
...nd hashing (timeout 200)
Host: rs6000-ibm-aix4.3.3.0
Compiler: cc
Compiler flags: -g
Preprocessor flags: -I/usr/local/ssl/include -I/usr/local/include
Linker flags: -L/usr/local/ssl/lib -L/usr/local/lib -blibpath:/usr/lib:/lib:/usr/local/lib
Libraries: -lwrap -lz -lcrypto
Changing UsePrivilegeSeperation to no has no effect. Removing and
creating new keys on both sides has no effect. The only changes to the
sshd_config file are:
PermitRootLogin no
IgnoreRhosts no
HostbasedAuthentication yes
The only changes to the ssh_config file are:
Host *
F...
2001 Oct 07
3
Using -lssh as shared library
...components, due to difference
in compiler flags (-fPIC for gcc is needed to compile position-
independant code), and those flags together with command to make
shared lib are very platform-dependant.
And one more issue/question at the end. I noticied that *all*
openssh programs linked with -lpam, -lwrap, -lutil and so on --
libraries really needed for sshd *only*. I can't say this is
"bug", but looks somewhat inaccurate. Looking into configure.in,
it is relatively hard to "clean up" things. 3rd patch attached,
openssh-2.9.9p2-libs.diff, an *alternative* to ssh_libs patch...