Displaying 18 results from an estimated 18 matches for "lrpc".
Did you mean:
lpc
2001 Sep 29
0
configure.in fixes for 2.9.9p2
...9.9p2:
1. Allow --with-pcre to take a path specifying the root of the
PCRE install (ROOT/include, ROOT/lib)
2. Ditto for --with-zlib
3. $no_libnsl and $no_libsocket can be determined programmatically
4. Check for innetgr, getspnam, and util in the default $LIBS before
checking in -lrpc, -lgen, and -lutil, respectively
5. dirname() is in -lgen on some systems (Solaris 2.5.1, IRIX)
--
albert chin (china at thewrittenword.com)
-- snip snip
--- configure.in.orig Thu Sep 27 01:16:56 2001
+++ configure.in Thu Sep 27 10:11:04 2001
@@ -320,34 +308,59 @@
)
AC_ARG_WITH(pcre,
- [...
2001 Jul 26
7
Updated Cray patch against openssh SNAP-20010725
...in bsd-cray.c. Fixed cray_setup call to pass uid and login name
in session.c and moved its call so that its called with root privs.
Its been tested on a irix, sun, aix, unicos(SV1) and unicosmk(T3E)
systems.
If you are building this on a T3E you may have to edit the Makefile
and edit out "-lrpc -lyp -lrpc". There a patch for sco that
incorrectly assume that you have a yp library if you
have a rpc library. I will submit a generic fix to this list
latter since it is generic problem.
I decided to go into a little more detail about the patches to
each module:
channels.c - Use a...
2001 Aug 02
3
Cray patch against openssh-SNAP-20010802
...eted patches to packet.c and channel.c - not needed.
Add small patch to sshd.c and openbsd/ssh-cray.c
to disable cray process privileges. Depending
on how a cray unicos/unicosmk system is configured user
could su to root without a password with out this mod.
Add no_sco flag to noop check for -lrpc which assumes that
their was a -lyp library.
Changed ifdef around sigchld_handler to ifdef out mysignal
on crays. This works around a unicos sigacton bug.
Defined INADDR_LOOPBACK in entropy.c
The details on all the patches:
configure.in - Add work around to sco libyp assumution.
sshd.c...
2012 Mar 20
3
Graphic legend with mathematical symbol, numeric variable and character variable
Hi,
I'd like to make a legend with a mix of mathematical symbol (tau),
numeric variable and character variables.I have tried :
types<-c("Type 1","Type 2","Type 2")
tau<-c(1,3,2)
legend(x="topright",legend=paste(types,"tau=",expression(tau)))
but it doesn't work: the 'tau' symbol is not written in its 'symbol
2001 May 21
1
2.9p1 patches
...l, yp_match, , )
-fi
-if test -z "$no_libsocket" ; then
- AC_CHECK_LIB(socket, main, , )
-fi
+AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
+AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
dnl SCO OS3 needs this for libwrap
-AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
+AC_CHECK_FUNC(innetgr, ,
+ AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc))
-AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen")
-AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first or ch...
2001 Nov 22
1
[PATCH]: Fix configure.ac to allow linking against PCRE on Cygwin
...*)
- LIBS="$LIBS -lregex /usr/lib/textmode.o"
+ LIBS="$LIBS /usr/lib/textmode.o"
AC_DEFINE(HAVE_CYGWIN)
AC_DEFINE(USE_PIPES)
AC_DEFINE(DISABLE_SHADOW)
@@ -367,6 +367,17 @@ if test "x$with_tcp_wrappers" != "xno" ;
AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
fi
fi
+
+case "$host" in
+*-*-cygwin*)
+ # Check if linking agains pcre is requested, otherwise use
+ # regex lib on Cygwin
+ echo "$LIBS" | grep "pcreposix" > /dev/null 2>&1
+ if test $? -ne 0 ; then
+ LIBS=&quo...
2001 Oct 07
3
Using -lssh as shared library
...2.orig/configure.in Wed Sep 26 02:39:38 2001
+++ openssh-2.9.9p2/configure.in Mon Oct 8 02:15:29 2001
@@ -337,2 +337,3 @@
# Checks for libraries.
+AUTH_LIBS=
if test -z "$no_libnsl" ; then
@@ -344,8 +345,5 @@
-dnl SCO OS3 needs this for libwrap
-AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
-
-AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen")
AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***]))
-AC_CHECK_LIB(util, login, AC_DEFINE(HAVE_LIBUTIL_LOGIN) LIBS="$LIBS -lutil")
+AC...
2019 May 18
2
Executing code changed with LLVM
Hi everyone,
*1.* I had a file called server.cpp that i can run using:
g++ -o server server.cpp -lrpc -ldl -lpthread
*2.* Converted the file into LLVM IR, modified it and saved to file using
the WriteBitcodeToFile function. The name of resulting file is "output".
*3.* Used llc command for generation of "output.o" file as:
llc -filetype=obj output
*4.* Used gcc command to cre...
2001 Feb 13
1
configure.in reorder patch
...uot; ; then
+ AC_CHECK_LIB(socket, main,
+ [
+ if test "$saved_LIBS" = "$LIBS" ; then
+ LIBS="$LIBS -lsocket"
+ else
+ LIBS="$saved_LIBS -lsocket -lnsl"
+ fi
+ ] )
+fi
+
+dnl SCO OS3 needs this for libwrap
+AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
-AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen")
+AC_CHECK_LIB(gen, getspnam)
AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first ***]))
-AC_CHECK_LIB(util, login, AC_DEFINE(HAVE_LIBUTIL_LOGIN) LIBS="$LIBS -lutil&q...
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 -- ??
1998 Oct 15
1
Problem to map home dir
...WD -DUFC_CRYPT -DALLOW_CHANGE_PASSWORD -DFAST_SHARE_MODES
# LIBSM = -lcrypt
# This is for SEQUENT.
# Contributed by fwk@ix.netcom.com (Frank Keeney) and
# rpwillia@Pentagon-EMH6.army.mil (Ray Williams)
# tested on DYNIX/ptx(R) V2.1.0
# FLAGSM = -DSEQUENT -DSHADOW_PWD -DHAVE_TIMEZONE
# LIBSM = -lrpc -lsocket -lPW -linet -lnsl -lseq -lsec
# This is for SEQUENT PTX 4.1.x
# Contributed by bressler@iftccu.ca.boeing.com (Rick Bressler)
# based on Keeny and Williams contribution.
# tested on DYNIX/ptx(R) V4.1.3
# FLAGSM = -DSEQUENT -DSHADOW_PWD -DHAVE_TIMEZONE -DPTX4
# LIBSM = -lrpc -lsocket -lPW...
2017 Mar 06
0
[PATCH] lib: Prefer tirpc for XDR, and rationlise how we search for alternatives.
...the way the wind is blowing.
(1) This changes our configure script to prefer libtirpc if it is
available.
If libtirpc is _not_ available then:
(a) Headers must be located in <rpc/xdr.h>, or the user must supply
the right CFLAGS.
(b) XDR functions must be located in one of -lportablexdr, -lrpc,
-lxdr, -lnsl or no library at all (ie. -lc), and the user must set
LDFLAGS if needed.
(2) We no longer add these paths automatically to $(CFLAGS)/$(LIBS).
Any part of libguestfs which needs <rpc/*.h> or the xdr_* functions
must use $(RPC_CFLAGS)/$(RPC_LIBS) explicitly.
(3) Previously Mac O...
2017 Mar 07
1
[PATCH v2] lib: Prefer tirpc for XDR, and rationalise how we search for alternatives.
v1 -> v2:
- No functional changes to the patch, just fixes a few bugs.
Rich.
2001 May 15
0
openssh 2.9p1 on Solaris 2.6 with AFS
...... (cached) /usr/opt/bin/bash
checking for sh... (cached) /usr/opt/bin/bash
checking for login... /usr/bin/login
checking for inline... inline
checking for obsolete utmp and wtmp in solaris2.x... no
checking for yp_match in -lnsl... yes
checking for main in -lsocket... yes
checking for innetgr in -lrpc... no
checking for getspnam in -lgen... yes
checking for deflate in -lz... yes
checking for login in -lutil... no
checking for regcomp... yes
checking for strcasecmp... yes
checking for utimes... yes
checking for strftime... yes
checking for bstring.h... no
checking for crypt.h... yes
checking for...
2001 Apr 10
2
Compiling openssh 2.5.p1 on unixware 7.0.1
...hed) /usr/bin/ksh
checking for ksh... (cached) /usr/bin/ksh
checking for sh... (cached) /usr/bin/ksh
checking for login... (cached) /usr/bin/login
checking for inline... (cached) no
checking for yp_match in -lnsl... (cached) yes
checking for main in -lsocket... (cached) yes
checking for innetgr in -lrpc... (cached) no
checking for getspnam in -lgen... (cached) no
checking for deflate in -lz... (cached) yes
checking for login in -lutil... (cached) no
checking for regcomp... (cached) yes
checking for strcasecmp... (cached) yes
checking for utimes... (cached) yes
checking for bstring.h... (cached) no...
2002 Jul 17
13
Testing Call
Ok.. I'm starting official testing calls early this release. I'd like to
have more feedback and more time for handling fixes.
If people could test snapshots (http://www.openssh.org/portable.html, pick
your favorate mirror and select snapshots directory) and report failures
it would be useful.
For those with pmake install there is regress/ which you can try out. It
may help any platform
2001 Jul 16
0
No subject
...e:2360: cc -o conftest -g conftest.c -lsocket -lsecurity -ldb -lm -laud 1>&5
ld:
Can't locate file for: -lsocket
configure: failed program was:
#line 2353 "configure"
#include "confdefs.h"
int main() {
main()
; return 0; }
configure:2390: checking for innetgr in -lrpc
configure:2409: cc -o conftest -g conftest.c -lrpc -lyp -lrpc -lsecurity -ldb -lm -laud 1>&5
ld:
Can't locate file for: -lyp
configure: failed program was:
#line 2398 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/...
2001 Jul 11
0
Solaris 2.6: Undefined symbol seed_rng
...(cached) /opt/local/bin/bash
checking for sh... (cached) /opt/local/bin/bash
checking for login... /usr/bin/login
checking for inline... inline
checking for obsolete utmp and wtmp in solaris2.x... no
checking for yp_match in -lnsl... yes
checking for main in -lsocket... yes
checking for innetgr in -lrpc... no
checking for getspnam in -lgen... yes
checking for deflate in -lz... yes
checking for login in -lutil... no
checking for regcomp... yes
checking for strcasecmp... yes
checking for utimes... yes
checking for strftime... yes
checking for bstring.h... no
checking for crypt.h... yes
checking for...