search for: dld

Displaying 20 results from an estimated 73 matches for "dld".

Did you mean: dd
2000 Mar 20
0
Testparm Error HPUX - DLD.SL Library
HP_UX 10.20 / SAMBA2.0.6 / gcc Compiles just fine. Run the "testparm /opt/samba/lib/smb.conf" command and get the following error . . . "/usr/lib/dld.sl: Unresolved symbol: vsnprintf (code) from testparm Abort (coredump)" What are the pre-requisite(s) for libraries for Samba to function or is this a known error / fix. Please, could someone respond with a push in the right direction or the definitive answer. TIA Kirk Shimek
2002 Apr 30
1
Undefined symbols in loading tcltk (PR#1499)
Non of these errors occured in earliers versions of R. > library(tcltk) /usr/lib/dld.sl: Unresolved symbol: Tcl_GetVar2Ex (code) from /opt_local/opt/R/lib/R/library/tcltk/libs/tcltk.sl /usr/lib/dld.sl: Unresolved symbol: Tcl_GetString (code) from /opt_local/opt/R/lib/R/library/tcltk/libs/tcltk.sl /usr/lib/dld.sl: Unresolved symbol: Tcl_SetVar2Ex (code) from /opt_local/opt/R/lib/...
2002 Jul 26
1
Kerberos V help
...ered> Re-enter Password: <password re-entered> kerberos_config[64]: 3664 Abort(coredump) ERROR: Unable to create the database. Press 'Enter' Key to go back to the main menu... Also when i run kadmin # ./kadmin Enter password: ****** The error is : ------------- /usr/lib/dld.sl: Unresolved symbol: dce_g_ipv6_enabled (data) from /usr/lib/libd4r.1 /usr/lib/dld.sl: Unresolved module for symbol: getservbyname_r (code) from /opt/krb5/lib/libk5.sl Abort(coredump) Suggestions to fix the problem is most welcomed and advance thanks for help. regards Kumaresh. kumaresh_ind a...
2002 Oct 01
1
Unsolved symbols: meet_ Tcl_EvalObjv (PR#2090)
Running 'make check' I get two errors: running code in 'mva-Ex.R' .../usr/lib/dld.sl: Unresolved symbol: meet_ (code) from /users1/kleiweg/R-1.6.0-source/library/cluster/libs/cluster.sl running code in 'tcltk-Ex.R' .../usr/lib/dld.sl: Unresolved symbol: Tcl_EvalObjv (code) from /users1/kleiweg/R-1.6.0-source/library/tcltk/libs/tcltk.sl Version: platform = hppa2.0-h...
2007 Nov 07
1
[LLVMdev] RFC: llvm-convert.cpp Patch
...ser marked it as being highly aligned, or because the destination is little aligned as in the testcase). So why not pass the alignment and volatility in too? Probably Chris doesn't want to add extra arguments to Emit, so instead we could define a "DestLoc descriptor" struct: struct DLD { Value *Ptr; unsigned Alignment; bool Volatile; } declare one on the stack and pass its address, something like this: DLD D = { Ptr, Align, isVolatile }; Emit(exp, &D); Ciao, Duncan.
2004 Jan 27
0
Samba 3.0.1 startup problem
...system running hpux11.11, but will not startup on another hpux11.11 system. On the problem system smbd and nmbd both abort immediately with the log message: [2004/01/22 17:42:06, 0] smbd/server.c:main(747) smbd version 3.0.1 started. Copyright Andrew Tridgell and the Samba Team 1992-2003 /usr/lib/dld.sl: Internal Error 2004 /usr/lib/dld.sl: No such file or directory [2004/01/22 17:42:15, 0] nmbd/nmbd.c:main(664) Netbios nameserver version 3.0.1 started. Copyright Andrew Tridgell and the Samba Team 1994-2003 /usr/lib/dld.sl: Internal Error 2004 /usr/lib/dld.sl: No such file or directory The my...
2004 Jan 28
0
Samba 3.0.1 startup problem on HP-UX 11.11
...system running hpux11.11, but will not startup on another hpux11.11 system. On the problem system smbd and nmbd both abort immediately with the log message: [2004/01/22 17:42:06, 0] smbd/server.c:main(747) smbd version 3.0.1 started. Copyright Andrew Tridgell and the Samba Team 1992-2003 /usr/lib/dld.sl: Internal Error 2004 /usr/lib/dld.sl: No such file or directory [2004/01/22 17:42:15, 0] nmbd/nmbd.c:main(664) Netbios nameserver version 3.0.1 started. Copyright Andrew Tridgell and the Samba Team 1994-2003 /usr/lib/dld.sl: Internal Error 2004 /usr/lib/dld.sl: No such file or directory The my...
2008 Aug 04
6
[Fwd: [networking-discuss] code-review: fine-grained privileges for datalink administration]
...ace with cscope database: /net/zhadum.east/export/ws/seb/dladm-privs-hg/ The high-level architecture behind the change is described in the PSARC fast-track case log: http://www.opensolaris.org/os/community/arc/caselog/2008/473/ One thing to keep in mind while reviewing these changes is that the dld control device is no longer a STREAMS device, but a regular character device. For one, STREAMS serves no purpose here. The device simply processes GLDv3 ioctls, and that''s it. Removing STREAMS from this part of the framework makes the code simpler and removes the data-size limitations t...
2004 Jan 15
2
Bug report
I try to install openssh-3.7.1p2(and its Run-time dependencies) on an HP rx2600 OS-version 11.23 When I execute : ./ssh-keygen -t rsa1 -f /usr/local/etc/openssh/ssh_host_key -N "" I get the following error message: /usr/lib/hpux32/dld.so: Unable to find library 'libcrypto.sl.0.9.7'. Killed ********* -> [ Exit 137 ] <- ******* What is the problem, can you help me? mvh/roger Roger W?rnberg P/CSC-RW CSC Sverige AB Tel. +46 (0) 13 465 3561 Email: Roger.Warnberg at consultant.saab.se
2006 Mar 14
2
Date problem
Hello, I have some "stupid" problems managing "date" data. I have a colomn "date", which I converted from a character representation: for example: a="26/02/06" date=strptime(a,format="%d/%m/%y") For one part of the analysis, I'm interested only in the month and the year, so I did: m.y=strftime(date,format="%m/%y") This returns me
2007 Nov 07
0
[LLVMdev] RFC: llvm-convert.cpp Patch
On Nov 6, 2007, at 5:45 PM, Bill Wendling wrote: > Hi all, > > This patch is to fix a problem on PPC64 where an unaligned memcpy is > generated. The testcase is this: > > $ cat testcase.c > void Qux() { > char Bar[11] = {0}; > } > > What happens is that we produce LLVM code like this: > > call void @llvm.memcpy.i64( i8* %event_list2, i8* getelementptr ([11
2006 Oct 31
0
PSARC 2005/654 Nemo soft rings
...t/ip.h update: usr/src/uts/common/inet/ip/ip.c update: usr/src/uts/common/inet/ip/ip_if.c update: usr/src/uts/common/inet/ip/ip_squeue.c update: usr/src/uts/common/inet/ip_impl.h update: usr/src/uts/common/inet/tcp/tcp.c update: usr/src/uts/common/inet/udp/udp.c update: usr/src/uts/common/io/dld/dld_proto.c update: usr/src/uts/common/io/dld/dld_str.c update: usr/src/uts/common/io/dls/dls.c update: usr/src/uts/common/io/dls/dls_stat.c update: usr/src/uts/common/io/dls/dls_vlan.c update: usr/src/uts/common/io/mac/mac.c update: usr/src/uts/common/os/space.c update: usr/src/uts/common/s...
1997 Jul 31
1
R-beta: acepack with 0.50-a1
I have an hp9000/c160 with hpux10.20+gcc2.7.2. When I try the example in the ace help I get: > library(acepack) > ?ace > TWOPI <- 8*atan(1) > x <- runif(200,0,TWOPI) y <- exp(sin(x)+rnorm(200)/2) a <- avas(x,y) /usr/lib/dld.sl: Unresolved symbol: pow_dd (code) from /home/buyuk/R-0.50-a1/lib/acepack.so ABORT instruction (core dumped) Do I need to load libf2c.a during acepack.so creattion? Do I need to create libf2c.sl? My libf2c.a was created with hpux9.05. I now have 10.20.Dynamic load demo seems to be working, and...
2003 Dec 22
0
(no subject)
...ame.o bindresvport.o daemon .o dirname.o getcwd.o getgrouplist.o getopt.o getrrsetbyname.o glob.o inet_aton. o inet_ntoa.o inet_ntop.o mktemp.o readpassphrase.o realpath.o rresvport.o seten v.o setproctitle.o sigact.o strlcat.o strlcpy.o strmode.o strsep.o vis.o port-ir ix.o port-aix.o /usr/lib/dld.sl: Can't open shared library: /usr/local/lib/libfl.sl /usr/lib/dld.sl: No such file or directory *** Termination signal 134 Stop. *** Error exit code 1 Stop. Terry Buckley Software - Contractor B. Braun Medical Inc. HC-RD-US03 Phone: 972-245-2243 x485 FAX: 972-245-1612 MAIL: Terry.Buckley...
2003 Jun 16
2
HP-UX and Samba 3.0
Has anyone sucessfully compiled Samba 3 on HP-UX? I have had no luck so far. The LDFLAG that it uses, I believe -g, but I'd have to look, is not supported. ---- _ _ _ _ ___ _ _ _ |Y#| | | |\/| | \ |\ | | | Ryan Novosielski - Jr. UNIX Systems Admin |$&| |__| | | |__/ | \| _| | novosirj@umdnj.edu - 973/972.0922 (2-0922) \__/ Univ. of Med. and Dent. | IST/ACS - NJMS Medical
1997 Jul 22
0
ld.so vulnerability
...NU/Linux Status: Affected, fix available Location: ftp://ftp.debian.org/debian/bo-updates Files: c044d31c1a7f434837ec648c97481b76 ld.so_1.8.10-2.1.dsc bd6a94d00b6aeb10363b92e4f77a1a30 ld.so_1.8.10-2.1.tar.gz edea24550bf5f5a3c92a4a6319fe60b0 ldso_1.8.10-2.1_i386.deb Vendor: Delix Product: DLD 5.2 Status: Affected, fix available Location: ftp://ftp.delix.de/pub/Linux/DLD-5.2/updates Files: 156f551820e1f7305cf2c19d1cbddc68 *ld.so-1.9.2-3.i386.rpm bbeb99ac166d5c7cfde52346949da363 *ld.so-devel-1.9.2-3.i386.rpm Vendor: LST Product: LST Power Linux 2.2 Status: Affected, fix available L...
2019 Apr 24
1
[PATCH nbdkit] build: Use dlsym as sentinel function for -ldl.
...--git a/configure.ac b/configure.ac index 4624bf8..1d3aa7b 100644 --- a/configure.ac +++ b/configure.ac @@ -224,11 +224,11 @@ AS_IF([test "x$nbdkit_cv_func_printf_percent_m" = xyes], [Define to 1 if vfprintf supports %m.])]) old_LIBS="$LIBS" -AC_SEARCH_LIBS([dlopen], [dl dld], [ - AS_IF([test "x$ac_cv_search_dlopen" != "xnone required"], - [DL_LIBS="$ac_cv_search_dlopen"], [DL_LIBS=]) +AC_SEARCH_LIBS([dlsym], [dl dld], [ + AS_IF([test "x$ac_cv_search_dlsym" != "xnone required"], + [DL_LIBS="$a...
2020 Feb 13
1
[PATCH nbdkit] NOT WORKING vddk: Use dlmopen to isolate VDDK.
--- configure.ac | 5 +++++ plugins/vddk/vddk.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/configure.ac b/configure.ac index d71f06e4..57626a76 100644 --- a/configure.ac +++ b/configure.ac @@ -321,6 +321,11 @@ AC_SEARCH_LIBS([dlsym], [dl dld], [ ]) LIBS="$old_LIBS" +old_LIBS="$LIBS" +LIBS="$LIBS -ldl" +AC_CHECK_FUNCS([dlmopen]) +LIBS="$old_LIBS" + dnl Test if <iconv.h> header can build working binaries. dnl dnl On FreeBSD: iconv and libiconv both exist, both can be installed diff --g...
2007 Nov 07
7
[LLVMdev] RFC: llvm-convert.cpp Patch
Hi all, This patch is to fix a problem on PPC64 where an unaligned memcpy is generated. The testcase is this: $ cat testcase.c void Qux() { char Bar[11] = {0}; } What happens is that we produce LLVM code like this: call void @llvm.memcpy.i64( i8* %event_list2, i8* getelementptr ([11 x i8]* @C.103.30698, i32 0, i32 0), i64 11, i32 8 ) Notice that it has an 8-byte alignment. However, the Bar
2005 Apr 28
1
PANIC: internal error
..., 1] lib/util_unistr.c:load_case_tables(63) creating lame upcase table [Thu Apr 28 13:07:20 2005 , 1] lib/util_unistr.c:load_case_tables(78) creating lame lowcase table [Thu Apr 28 13:07:20 2005 , 1] nsswitch/winbindd_util.c:add_trusted_domain(178) Added domain SMDCK S-0-0 /usr/lib/dld.sl: Unresolved symbol: sasl_client_init (code) from /usr/lib/libld ap.sl [Thu Apr 28 13:07:20 2005 , 0] lib/fault.c:fault_report(36) =============================================================== [Thu Apr 28 13:07:20 2005 , 0] lib/fault.c:fault_report(37) INTERNAL ERROR: Signal 6 in pi...