search for: laud

Displaying 20 results from an estimated 28 matches for "laud".

Did you mean: laid
2001 Jul 16
0
No subject
...#include "confdefs.h" int main() { } __inline__ foo() { ; return 0; } configure:1471: cc -c -g conftest.c 1>&5 configure:2156: checking for Digital Unix SIA configure:2296: checking for yp_match in -lnsl configure:2315: cc -o conftest -g conftest.c -lnsl -lsecurity -ldb -lm -laud 1>&5 ld: Can't locate file for: -lnsl configure: failed program was: #line 2304 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its a...
2005 Sep 12
3
Problems Compiling OpenSSH 4.2p1 on Tru64 UNIX 5.1b
...itor_mm.o monitor.o monitor_wrap.o kexdhs.o kexgexs.o auth-krb5.o auth2-gss.o gss-serv.o gss-serv-krb5.o loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o audit.o audit-bsm.o -L. -Lopenbsd-compat/ -L/usr/local/include -lssh -lopenbsd-compat -lcrypto -lrt -lz -lsecurity -ldb -lm -laud ld: Unresolved: deflateInit inflateInit *** Exit 1 Stop. Thanks in advance, Giovanni -- Ing. Giovanni Caramia Dipartimento di Ingegneria Meccanica e Gestionale (Sezione Macchine ed Energetica) via Re David 200 Politecnico di Bari 70125 BARI ITALY Phone: +39/080/5963795 Fax: +39/080/596341...
2010 Dec 15
0
[LLVMdev] example of language with vector as first class type
...Does anyone know any example compiler where it has vector/matrix as first class type like matlab using llvm? If not, does anyone have idea how that should be done on llvm? Any GCC-compatible frontend — i.e. llvm-gcc, clang, or dragonegg — has vectors as a first-class type. I wouldn't exactly laud any of GCC's various vector extensions as a sterling example of good language design, but if you're just looking for demonstrations of how to generate vector IR, that's where I'd start. John.
2010 Dec 15
4
[LLVMdev] example of language with vector as first class type
Hi All Does anyone know any example compiler where it has vector/matrix as first class type like matlab using llvm? If not, does anyone have idea how that should be done on llvm? Thanks Leon -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101215/92febead/attachment.html>
2004 Mar 27
1
Problems Compiling sshd - OpenSSH 3.8p1 on Tru64 UNIX V4.0F PK#7 (OSF)
...tor.o monitor_wrap.o monitor_fdpass.o kexdhs.o kexgexs.o auth-krb5.o auth2-gss.o gss-serv.o gss-serv-krb5.o loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o -L. -Lopenbsd-compat/ -L/opt/ssh/lib -L/opt/zlib/lib -non_shared -lssh -lopenbsd-compat -lcrypto -lrt -lz -lsecurity -ldb -lm -laud ld: Error: Undefined: xcrypt shadow_pw *** Exit 1 Stop. Any help debugging this would be appreciated. Thank you, N
2003 Sep 05
20
[Bug 635] openssh-SNAP-20030903: configure does not work well with heimdal(krb5)
...re/@sys/usr/include -I/usr/local/include -I/usr/local/openssl/include -I/usr/heimdal/include Linker flags: -L/usr/local/openssl/lib -Lyes -L/usr/heimdal/lib Libraries: -lwrap -lrt -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lsecurity -ldb -lm -laud -lcrypto -lkrb5 -ldes -lcom_err -lasn1 -lroken You see, the "Linker flags" contain properly -L/usr/heimdal/lib , that's where libgssapi.a is. The problem is when heimdal is installed with support for openssl, it does not build libdes: configure:14199: checking whether we are using...
2003 Apr 17
5
AppleTalk(netatalk)+Samba
Hi folks, is anybody using those two products together and can give me any advice on how to do this? My specific issue has been addressed in other posts before, but as nobody responded, it would just now be interesting if anybody at least uses those applications together successfully? greets Malte
2003 Jan 09
0
Building openssh-3.5p1 with new DES functions
...usr/local/openssl/lib -Lyes -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -L/usr/athena/lib -L/usr/afsws/lib Libraries: -lwrap -lkafs -lresolv -ldes -lkrb -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lsecurity -ldb -lm -laud -lcrypto -ldes bash-2.05b# ls -la /usr/athena/lib total 1593 drwxr-xr-x 2 root system 8192 Dec 8 04:03 . drwxr-xr-x 9 root system 8192 Dec 8 04:03 .. -rw-r--r-- 1 root system 17312 Dec 8 04:03 libacl.a -rwxr-xr-x 1 root system 781 Dec 8 04:03...
2013 Jan 24
12
group by + sum
Hi.. I need some support... table: week_id, user_id, project_id, hours ex. => 33, 2, 1, 10 34, 2,1,15 33, 2, 2, 20 35, 3, 1,20 etc. Want to display a sum of hours per week_id per user_id I have: @hours = HourUser.includes(:user).group_by { |h| h.week_id } @hours.keys.sort.each do |hour| @hours[hour].collect(&:stunden).sum Hours are summed up, but not sorted by user_id.. How to get
2009 Nov 07
3
[LLVMdev] interesting preso
I enjoyed this presentation: http://www.linux-kongress.org/2009/slides/compiler_survey_felix_von_leitner.pdf Among other things it lists small code sequences when compiled with a small collection of compilers, including llvm 2.6. It looks like there are several fairly obvious things we could do better... -Chris
2010 Dec 15
2
[LLVMdev] example of language with vector as first class type
...ample compiler where it has vector/matrix as first > class type like matlab using llvm? If not, does anyone have idea how that > should be done on llvm? > > Any GCC-compatible frontend — i.e. llvm-gcc, clang, or dragonegg — has > vectors as a first-class type. I wouldn't exactly laud any of GCC's various > vector extensions as a sterling example of good language design, but if > you're just looking for demonstrations of how to generate vector IR, that's > where I'd start. > > John. -------------- next part -------------- An HTML attachment was scr...
2002 Aug 07
2
so called hang-on-exit bug
...the flaw in the reasoning that "not a single byte of data must be lost" even when termination has been explicitly requested. It is not productive to simply ignore "reported bugs" in a program. The issue is not really whether or not it is a bug for the terminal window to hang. I laud the "intent" of the developers in trying to preserve data integretity, the reasoning is sound. However, the practical aspect of that is a consumption of resources on the server that is untenable from an administrative standpoint. At some point, real world needs must overide academic purit...
2005 Jun 30
3
Computer to use
Hi, Already posted once but I need more feedback. What kind of servers is everyone using for asterisk and what problems have you ran in to ? Thanks. Dovid -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050630/dd52bf35/attachment.htm
2002 Sep 04
2
uid transition and post-auth privsep (WAS Re: possible fundamental problem with tru64 patch) (fwd)
...Tue Aug 13 20:52:11 2002 > +++ openssh/configure.ac Tue Sep 3 22:07:41 2002 > @@ -314,6 +314,7 @@ > AC_MSG_RESULT(yes) > AC_DEFINE(HAVE_OSF_SIA) > AC_DEFINE(DISABLE_LOGIN) > + AC_DEFINE(DISABLE_FD_PASSING) > LIBS="$LIBS -lsecurity -ldb -lm -laud" > else > AC_MSG_RESULT(no) > diff -urN openssh-SNAP-20020826/session.c openssh/session.c > --- openssh-SNAP-20020826/session.c Wed Jul 31 20:28:39 2002 > +++ openssh/session.c Tue Sep 3 22:03:16 2002 > @@ -1280,7 +1280,7 @@ > */ > if (!opti...
2002 Dec 08
1
Building openssh-3.5p1 with new DES functions
...Linker flags: -L/usr/local/openssl/lib -Lyes -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/athena-1.2.1-no-openssl/lib -L/usr/afsws/lib Libraries: -lwrap -lkafs -lresolv -ldes -lkrb -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lsecurity -ldb -lm -laud -lcrypto -ldes I hope, that there will be no symbol clashes between ldes and lcrypto anymore. ;-) $ CC=cc CFLAGS="-I/software/@sys/usr/include -I/usr/local/include" CPPFLAGS="-I/software/@sys/usr/include -I/usr/local/include" LDFLAGS="-L/usr/local/lib -L/software/@sys/u...
2003 Feb 27
0
Update for Tru64 Unix
...figure.ac --- openssh-SNAP-20030226/configure.ac Sun Feb 23 22:45:43 2003 +++ openssh/configure.ac Wed Feb 26 19:43:34 2003 @@ -330,6 +330,7 @@ AC_MSG_RESULT(yes) AC_DEFINE(HAVE_OSF_SIA) AC_DEFINE(DISABLE_LOGIN) + AC_DEFINE(DISABLE_FD_PASSING) LIBS="$LIBS -lsecurity -ldb -lm -laud" else AC_MSG_RESULT(no) diff -urN openssh-SNAP-20030226/session.c openssh/session.c --- openssh-SNAP-20030226/session.c Sun Feb 23 20:04:02 2003 +++ openssh/session.c Wed Feb 26 19:43:34 2003 @@ -1320,7 +1320,7 @@ */ if (!options.use_login) { #ifdef HAVE_OSF_SIA - session_setup_s...
2002 Jul 25
1
[Bug 371] New: OpenSSH fails to build on Alpha True64 in cipher.c
...Random number source: ssh-rand-helper ssh-rand-helper collects from: Command hashing (timeout 200) Host: alphaev67-dec-osf5.0 Compiler: cc -std1 Compiler flags: -g Preprocessor flags: Linker flags: Libraries: -lz -lsecurity -ldb -lm -laud -lcrypto then run "make" which fails: cc -std1 -g -I. -I. -DSSHDIR=\"/usr/local/etc\" -D_PATH_SSH_PROGRAM=\"/usr/local/bin/ssh\" -D_PATH_SSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh-askpass\" -D_PATH_SFTP_SERVER=\"/usr/local/libexec/sftp-serv...
2002 Aug 07
0
Subject: RE: so called hang-on-exit bug
...t a single byte of data must be lost" even when > > termination has > > been explicitly requested. It is not productive to simply ignore > > "reported bugs" in a program. The issue is not really whether or not > > it is a bug for the terminal window to hang. I laud the "intent" of > > the developers in trying to preserve data integretity, the reasoning > > is sound. However, the practical aspect of that is a consumption > > of resources on the server that is untenable from an administrative > > standpoint. At some point, real...
2005 Oct 14
11
[Bug 1104] Compile error "ldLL" not declared in strtonum.c under Tru64 Unix 4.0f
...m with the following configuration settings in use: Host: alpha-dec-osf4.0f Compiler: cc -std1 Compiler flags: -g Preprocessor flags: -I/usr/local/ssl/include Linker flags: -L/usr/local/ssl/lib Libraries: -lcrypto -lrt -lz -lsecurity -ldb -lm -laud Compilation fails with: cc: Error: strtonum.c, line 55: In this statement, "ldLL" is not declared. (undeclared) else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) --------------------------------^ *** Exit 1 Stop. *** Exit 1 Stop....
2003 Dec 26
3
Re: time to build an open phone?
ACES - Asterisk Communications Endpoint System {the following could be used by any IP-PBX but the name pays homage to Mark Spencer and friends who cannot be lauded enough for their fine work} As you read this it will be obvious I am not a professional engineer but I do have enough knowledge to be fairly certain what I'm proposing is feasible from not only an engineering, but production cost and perhaps most importantly, marketing standpoint. An ope...