RE: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3 #5
Phil,
Tested on AIX 5.3 TL05 SP4 with XLC++/XLC 8.0 and worked great !
I will be testing on AIX 5.2 TL09 SP3 and AIX 4.3 ML11 here
shortly...
Thanks for getting this figured out ! Also, appreciate the help
from Sam and Martin who were working on it too...
Lamar
-----Original Message-----
From: Phil Pishioneri [mailto:pgp@psu.edu]
Sent: Wednesday, February 07, 2007 6:35 PM
To: Saxon, Lamar
Cc: kerberos@mit.edu
Subject: Re: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3
I've gotten 1.5.x and 1.6 to build and run on AIX 5.2 (domain referral
in 1.6 works nicely). So far I have only tested the client commands:
klist, kvno, kinit, kdestroy. No 3rd party software tested yet, either.
This was done with the IBM VisualAge C++ Professional / C for AIX
Compiler, Version 6.
The one major change: add LDFLAGS="-brtl" to configure. My configure
line was (prefix edited):
./configure --without-krb4 --prefix=... CC=cc LDFLAGS=-brtl
There was one problem during the 1.{5,6} builds (1.5 has a bug that's
been documented already), it failed in
making all in plugins/kdb/db2/libdb2/test...
with
ld: 0706-006 Cannot find or open library file: -l db
ld:open(): A file or directory in the path name does not
exist.
my quick&dirty fix for that was (starting in .../krb5-1.6/src/):
cd lib
ln -s ../plugins/kdb/db2/libdb2/libdb.so.1.1 libdb.so.1.1
ln -s libdb.so.1.1 libdb.so
-Phil
Privileged and Confidential. This e-mail, and any attac...
RE: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3 #3
Thanks. The problem also exist using GNU ld on AIX too. See below:
make[2]: Entering directory
`/usr/sys/inst.images/MIT-Kerberos/krb5-1.6/5.3/src/lib/rpc'
making all in lib/rpc/unit-test...
make[3]: Entering directory
`/usr/sys/inst.images/MIT-Kerberos/krb5-1.6/5.3/src/lib/rpc/unit-test'
cc -L../../../lib -blibpath:/usr/local/kerberos/lib::/usr/lib:/lib -g
-qhalt=e -O -D_THREAD_SAFE -o client client.
o rpc_test_clnt.o \
-lgssrpc -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lkrb5support
-lpthreads
ld: 0706-006 Cannot find or open library file: -l k5crypto
ld:open(): No such file or directory
ld: 0706-006 Cannot find or open library file: -l com_err
ld:open(): No such file or directory
ld: 0706-006 Cannot find or open library file: -l krb5support
ld:open(): No such file or directory
make[3]: *** [client] Error 255
make[3]: Leaving directory
`/usr/sys/inst.images/MIT-Kerberos/krb5-1.6/5.3/src/lib/rpc/unit-test'
make[2]: *** [all-recurse] Error 1
make[2]: Leaving directory
`/usr/sys/inst.images/MIT-Kerberos/krb5-1.6/5.3/src/lib/rpc'
make[1]: *** [all-recurse] Error 1
make[1]: Leaving directory
`/usr/sys/inst.images/MIT-Kerberos/krb5-1.6/5.3/src/lib'
make: *** [all-recurse] Error 1
root@aoctoolbox:/usr/sys/inst.images/MIT-Kerberos/krb5-1.6/5.3/src:>
whence ld
/usr/local/bin/ld
root@aoctoolbox:/usr/sys/inst.images/MIT-Kerberos/krb5-1.6/5.3/src:> ld
-v
GNU ld version 2.16
Lamar
-----Original Message-----
From: Russ Al...
Kerberos 5 v1.5.1 on AIX 5.2 or AIX 5.3
Any one had any success compiling KRB5 1.5.1 on AIX 5.2 or 5.3 ? I am
experiencing the same errors as a previous poster; but have not seen any
solutions. Configure is successful with the following flags:
export CC=cc
export CFLAGS='-D_LARGE_FILES -DLANL -DLANL_ICN'; export CFLAGS
../configure --prefix=/usr/local/kerberos --enable-dns-for-realm
--with-tcl=/usr/local --with-vague-errors
Same config I use to compile 1.4.4 successfully with the LANL patches
provided by Milton Turley.
After running make, I get the following errors:
making all in util...
making all in util/support...
cc -I../../include -I./../../include -I. -I.
-DKRB5_DEPRECATED=1 -DKRB5_PRIVATE=1 -D_LARGE_FILES -DLA
L -DLANL_ICN -qhalt=e -O -D_THREAD_SAFE -c fake-addrinfo.c
"fake-addrinfo.c", line 1212.9: 1506-045 (S) Undeclared identifier
my_h_ent.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
Same errors on AIX 5.2 as well as AIX 5.3. Also, same errors with CC or
GCC 4.
Any help is appreciated and I can beta test any patches.
Thanks !
Lamar
Privileged and Confidential. This e-mail, and any attachments there to, is intended only for use by the addressee(s) named herein and may contain privileged or confidential information. If you have received this e-mail in error, please notify me immediately by a return e-mail and ...
RE: Kerberos 5 v1.5.1 on AIX 5.2 or AIX 5.3
Believe it or not; both solutions seem to work and compilation succeeds
!
#define GET_HOST_BY_NAME(NAME, HP, ERR, TMP) \
{ \
(HP) = (gethostbyname_r((NAME), &TMP.ent, &TMP.data) \
? 0 \
: &TMP.data); \
(ERR) = h_errno; \
}
Worked and so did...
#define GET_HOST_BY_NAME(NAME, HP, ERR, TMP) \
{ \
struct hostent my_h_ent; \
(HP) = (gethostbyname_r((NAME), &TMP.ent, &TMP.data) \
? 0 \
: &my_h_ent); \
(ERR) = h_errno; \
}
Thanks for the help ! I will continue testing with my current install
base on AIX. I really appreciate the rapid responses and solutions !
Lamar
-----Original Message-----
From: Ken Raeburn [mailto:raeburn@MIT.EDU]
Sent: Monday, September 18, 2006 5:13 PM
To: Marcus Watts
Cc: Saxon, Lamar; kerberos@mit.edu
Subject: Re: Kerberos 5 v1.5.1 on AIX 5.2 or AIX 5.3
On Sep 18, 2006, at 17:56, Marcus Watts wrote:
> Lamar.Saxon@americredit.com writes:
> ...
>> making all in util...
>> making all in util/support...
>> cc -I../../include -...
KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3
Has any been able to successfully compile KRB5 v1.5.1, v1.5.2, or v1.6
on AIX 5.2 or 5.3 ? If so, can you send me you configs ? I have posted
this message before, but no one seems to be able to help. I have
successfully compiled KRB5 1.4.4 on AIX 4.3 / 5.2 / 5.3; but since the
release of 1.5.1 and beyond, I am cannot get it to work. All of the
versions seem to error out here:
making all in lib/rpc/unit-test...
Target "all" is up to date.
cc -L../../../lib
-blibpath:/usr/local/kerberos/lib::/usr/lib:/lib -D_LARGE_FILES -DLANL
-DL
ANL_ICN -qhalt=e -O -D_THREAD_SAFE -o client client.o rpc_test_clnt.o
-lgssrpc -lgssapi_krb5 -lkr
b5 -lk5crypto -lcom_err -lkrb5support -lpthreads
ld: 0706-006 Cannot find or open library file: -l k5crypto
ld:open(): A file or directory in the path name does not exist.
ld: 0706-006 Cannot find or open library file: -l com_err
ld:open(): A file or directory in the path name does not exist.
ld: 0706-006 Cannot find or open library file: -l krb5support
ld:open(): A file or directory in the path name does not exist.
make: 1254-004 The error code from the last command is 255.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
I have tried using GCC 4.0 and IBM XLC/XLC++ 8.0 with no success and
failures at the same point.
My confi...
KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3 #2I have seen several emails from different people over the last few
months on trying to get KRB5 1.5 or later to compile on AIX 5.x. And no
responses that fix the problem. I have had the same problem and can
only presume that Kerberos is no longer supported on AIX. Is this the
case? No Kerberos on AIX? It just won't compile anymore with the
changes to shared libraries.
________________________________________________
Kerberos mailing list Kerberos@mit.edu
https://mailman.mit.edu/mailman/listinfo/kerberos
>>>>> "Grant," == Grant, Martin <Martin.Grant@fmr.com> writes:
Grant,> I have seen several emails from different people over the
Grant,> last few months on trying to get KRB5 1.5 or later to
Grant,> compile on AIX 5.x. And no responses that fix the
Grant,> problem. I have had the same problem and can only presume
Grant,> that Kerberos is no longer supported on AIX. Is this the
Grant,> case? No Kerberos on AIX? It just won't compile anymore
Grant,> with the changes to shared libraries.
We no longer run AIX tests. Our donated AIX box was very old and
slow, and its disk was in the process of dieing.
If there's no one out there in the Kerberos development community who
cares enough about AIX to get the betas, test them and send bug fixes,
then yes, AIX support is going to be fairly bad.
Kerberos is an open-source product; if you want it to work better on
your pl...
RE: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3
I currently have an install of KRB5 1.4.4 on this machine and configure
finds it under /usr/local/Kerberos where it is installed as seen in the
blibpath option.
I am currently trying without TCL and will update on what happens.
Lamar
-----Original Message-----
From: Russ Allbery [mailto:rra@stanford.edu]
Sent: Thursday, January 25, 2007 10:38 PM
To: Saxon, Lamar
Cc: kerberos@mit.edu
Subject: Re: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3
Lamar.Saxon@americredit.com writes:
> Has any been able to successfully compile KRB5 v1.5.1, v1.5.2, or v1.6
> on AIX 5.2 or 5.3 ? If so, can you send me you configs ? I have
posted
> this message before, but no one seems to be able to help. I have
> successfully compiled KRB5 1.4.4 on AIX 4.3 / 5.2 / 5.3; but since the
> release of 1.5.1 and beyond, I am cannot get it to work. All of the
> versions seem to error out here:
> making all in lib/rpc/unit-test...
> Target "all" is up to date.
> cc -L../../../lib
> -blibpath:/usr/local/kerberos/lib::/usr/lib:/lib -D_LARGE_FILES -DLANL
> -DL
> ANL_ICN -qhalt=e -O -D_THREAD_SAFE -o client client.o
rpc_test_clnt.o
> -lgssrpc -lgssapi_krb5 -lkr
> b5 -lk5crypto -lcom_err -lkrb5support -lpthreads
> ld: 0706-006 Cannot find or open library file: -l k5crypto
You can't build the test suite until you install Kerberos. If you don't
already have Kerberos installed, don't build the test suite (which I
think
may be impl...
RE: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3 #6
Wasn't really the solution I came up with; but it worked. You might be
correct since now the OpenSSL binaries will not build against the
Kerberos libraries currently. libssl and libcrypto build fine along
with everything else; but the actual openssl binary fails.
Phil,
Have you successfully linked OpenSSL with the new Kerberos
libraries ?
Thanks,
Lamar
-----Original Message-----
From: Sam Hartman [mailto:hartmans@mit.edu]
Sent: Friday, February 09, 2007 10:18 AM
To: Saxon, Lamar
Cc: pgp@psu.edu; kerberos@MIT.EDU
Subject: Re: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3
Do you really want rtl as a linker flag? Isn't that going to be an
issue for people linking against the kerberos libraries.
Why is that the right solution?
Privileged and Confidential. This e-mail, and any attachments there to, is intended only for use by the addressee(s) named herein and may contain privileged or confidential information. If you have received this e-mail in error, please notify me immediately by a return e-mail and delete this e-mail. You are hereby notified that any dissemination, distribution or copying of this e-mail and/or any attachments thereto, is strictly prohibited.
________________________________________________
Kerberos mailing list Kerberos@mit.edu
https://mailman.mit.edu/mailman/listinfo/kerberos
...
RE: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3 #4
The compile likes GNU ld and GCC even worse. I move the ld link to
force the use of the GNU linker. Here is the latest output using GCC
4.0.1 and ld 2.16.
+ gcc -shared -v -o libkrb5support.so.0.1 threads.o init-addrinfo.o
plugins.o errors.o gmt_mktime.o fake-addrinfo.
o -nostartfiles -Xlinker -bgcbypass:1 -Xlinker -bfilelist -Xlinker
-bM:SRE -Xlinker -bE:./libkrb5support.exports -
Xlinker -bernotok -Xlinker -brtl -lpthreads -lc
-Wl,-binitfini::krb5int_thread_support_fini:2
Using built-in specs.
Target: powerpc-ibm-aix5.3.0.0
Configured with: ../gcc-4.1.1/configure --disable-nls
Thread model: aix
gcc version 4.1.1
/usr/local/libexec/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/collect2
-bpT:0x10000000 -bpD:0x20000000 -btextro -bnodelcsec
t -bM:SRE -bnoentry -o libkrb5support.so.0.1
-L/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1 -L/usr/local/lib/gc
c/powerpc-ibm-aix5.3.0.0/4.1.1/../../.. threads.o init-addrinfo.o
plugins.o errors.o gmt_mktime.o fake-addrinfo.o
-bgcbypass:1 -bfilelist -bM:SRE -bE:./libkrb5support.exports -bernotok
-brtl -lpthreads -lc -binitfini::krb5int_th
read_support_fini:2 -lgcc_s -lc -lgcc_s
/usr/local/bin/ld: -static and -shared may not be used together
collect2: ld returned 1 exit status
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
Again, any and all help appreciated...
Lamar
-----Original Message-----
From:...
RE: KRB5 1.5 or 1.6 compiled on AIX 5.2/5.3 #2
Exact same errors specifying --without-tcl. I removed the config.cache,
config.log, and etc the reran configure. From my configure line -
../configure --prefix=/usr/local/kerberos --enable-dns-for-realm
--without-tcl --with-vague-errors
Then after make...
making all in lib/rpc/unit-test...
Target "all" is up to date.
cc -I../../../include -I./../../../include -I.
-DKRB5_DEPRECATED=1 -DKRB5_PRIVATE=1 -g -qhalt=e -O
_THREAD_SAFE -c client.c
cc -I../../../include -I./../../../include -I.
-DKRB5_DEPRECATED=1 -DKRB5_PRIVATE=1 -g -qhalt=e -O
_THREAD_SAFE -c rpc_test_clnt.c
cc -L../../../lib
-blibpath:/usr/local/kerberos/lib::/usr/lib:/lib -g -qhalt=e -O
-D_THREAD_SAFE -o c
nt client.o rpc_test_clnt.o -lgssrpc -lgssapi_krb5 -lkrb5 -lk5crypto
-lcom_err -lkrb5support -lpthreads
ld: 0706-006 Cannot find or open library file: -l k5crypto
ld:open(): A file or directory in the path name does not exist.
ld: 0706-006 Cannot find or open library file: -l com_err
ld:open(): A file or directory in the path name does not exist.
ld: 0706-006 Cannot find or open library file: -l krb5support
ld:open(): A file or directory in the path name does not exist.
make: 1254-004 The error code from the last command is 255.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
Any ot...
Error while ACE 5.3.1 or 5.4.1 compiling and installing by MinGW 3.3.3Hi,
I have installed MinGW packages:
binutils-2.13.90-20030111-1.tar.gz
gcc-core-3.3.3-20040217-1.tar.gz
gcc-g++-3.3.3-20040217-1.tar.gz
mingw-runtime-3.3.tar.gz
w32api-2.5.tar.gz
Also I've configured environment due to ACE-INSTALL.html according
MinGW compiler. OS: WinXP SP2.
$ACE_ROOT=F:\ACE531
I get next compiling error:
F:\ACE531\ace>gmake
gmake.EXE[1]: Entering directory `F:/ACE531/ace'
d:\Utils\Unix\diff.EXE: -: Invalid argument
gmake.EXE[1]: Leaving directory `F:/ACE531/ace'
gmake.EXE[1]: Entering directory `F:/ACE531/ace'
d:/Utils/Unix/gmake.EXE -f Makefile.dirs SUBDIR_TARGET=all
RMCast.subdir
gmake.EXE[2]: Entering directory `F:/ACE531/ace'
d:/Utils/Unix/gmake.EXE -f Makefile -C RMCast all
gmake.EXE[3]: Entering directory `F:/ACE531/ace/RMCast'
Installing libACE_RMCast.dll -> F:\ACE531/ace
d:\Utils\Unix\cp.EXE: F:ACE531aceRMCast/libACE_RMCast.dll: No such
file or directory
Installing libACE_RMCast.dll -> F:\ACE531/ace
d:\Utils\Unix\cp.EXE: F:ACE531aceRMCast/libACE_RMCast.dll: No such
file or directory
gmake.EXE[3]: *** [F:\ACE531/ace/libACE_RMCast.dll] Error 1
gmake.EXE[3]: Leaving directory `F:/ACE531/ace/RMCast'
gmake.EXE[2]: *** [RMCast.subdir] Error 2
gmake.EXE[2]: Leaving directory `F:/ACE531/ace'
gmake.EXE[1]: *** [all.nested] Error 2
gmake.EXE[1]: Leaving directory `F:/ACE531/ace'
d:\Utils\Unix\gmake.EXE: *** [all] Error 2
There are no folder separators in path (for exampl...
[ace-users] Tests failed : ACE 5.5.2 - AIX 5.3Hi,
My first mail before my message in the group failed (my subscription was not
activated).
The PRF below describes my problems. I can compile and link but several
ACE's tests fail. I only use ACE library and only compile it by cd'ing in
the ace directory before running make. I already made some fixes described
below to compile and to link the library. I'm not abble to interpret the
faild tests to identify the problem source or area.
I didn't find the scoreboard before my mail. I see that several tests fails
for
all compilations on AIX. I try to reassure myself by looking these results,
it's
not only for my configuration. But it's a daily build with last development
version.
For the 5.5.2 stable version they should probably not fail ?
Regards,
PO Houot.
ACE VERSION: 5.5.2
HOST MACHINE and OPERATING SYSTEM:
bash-3.00$ uname -a
AIX localhost 3 5 0040983B4C00 unknown unknown AIX
bash-3.00$ oslevel -r
5300-05
TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
Same as host
COMPILER NAME AND VERSION (AND PATCHLEVEL):
bash-3.00$ g++ -v
Using built-in specs.
Target: powerpc-ibm-aix5.3.0.0
Configured with: ../gcc-4.1.1/configure --disable-nls
Thread model: aix
gcc version 4.1.1
This compiler is installed from packages provided by UCLA AIX Software
library
THE $ACE_ROOT/ace/config.h FILE :
bash-3.00$ more $ACE_ROOT/ace/config.h
#include "ace/config-aix-5.x.h"
T...
if time = 3 seconds, how do i set the values of the time steps 0,0.1,0.2,0.3,0.5,1.0,1.5,2.0,3.0,5.0 to -9999 from time =3 secondsHi
I have 18 inputs (arrays) which contain certain statistics and if time = 3 seconds, set the values of time step 5.0 to -9999.0.
I was wondering if there is an efficient way to do this without using a lot of case statements?
Thank you.
Hello AdrianT,
it's not really clear to me what you want to do...
I suspect: you have an array containing values and you want to output
them with a fixed timing of 3 seconds: you should use a for loop
autoindexing trough your array and sending the value to your
indicator/output/whatever. Put a "wait for next multiple" into your for
loop.
Or do you want to have a minimum time delay of 3 seconds? Again use a
for loop, get the time value and use a InRange&Coerce with minimum
set to 3 seconds...
Or you should explain more precisely what you need...
Hi
Thanks for that.
Let me explain.
The time may vary. Let me give an example. if time = 2.1, I want to set the time step's 3.0 and 5.0's values to -9999.0.
if the time =0.1 seconds then I want to set 0.2,0.3, 0.5 etc values to -9999.0
etc ....................................................................
Can you please help?
Thank you.
Hello TUDS,
do you use different accounts/nicknames ?
Well, that's easy, at least for a sorted array:
Search for your time-value in the array (Threshold 1D array). Fill all
elements from that index till the end with your "error...
3DLDF Release 1.1.5 and 1.1.5.1-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Release of 3DLDF 1.1.5.
3DLDF is a GNU package for three-dimensional drawing with MetaPost
output.
It is available from http://ftp.gnu.org/gnu/3dldf and other ftp
servers.
Please see the author's website,
http://wwwuser.gwdg.de/~lfinsto1
and
http://www.gnu.org/directory/graphics/3D/3DLDF.html
for more information.
In release 1.1.5, I've tied up some loose ends. I wanted to do this
before starting on the input routine.
* Added `const real step' argument to the version of
Ellipse::intersection_points() that takes an Ellipse
argument.
* BUG FIX: Added `touch 3DLDFmp.mp' to the `3DLDFmp.mp' target in
3DLDF-1.1.5/CWEB/Makefile.am. This ensures that
TeX and dvips will be run if MetaPost is run on `3DLDFmp.mp'. This
happens if
`3DLDFput.mp' is newer than `3DLDFmp.mp', but the latter isn't
changed, so TeX and dvips
weren't being run. I'm surprized nobody's complained about this.
Not yet documented in the _3DLDF User and Reference Manual_.
* Added `PHONY' targets as synonyms for certain targets:
`cpl' for `3dldf'. For compiling and linking `3dldf'.
`mp' for `3DLDFmp.mp'. For running MetaPost on `3DLDFmp.mp'.
`ldf' for `3DLDFput.mp'. For running `3dldf'.
Not yet documented in the _3DLDF User and Reference Manual_.
* It is now possible to ``typedef'' ...
Need to take mksysb backup of AIX 5.2 & 5.1 on AIX 5.1 Server.Hi All
Need docmented notes of step by step installing NIM Server on AIX 5.1
Server.
Send me also documented notes on installing the NIM client for Aix 5.2
& 5.1.
You can send the docs to prsanwal@gmail.com mail account.
Awaiting your quick response.
Warm Regards
Prateek S
How about go search IBM's web site and use the man pages... then if you
get stuck, come back here and ask for help...
We're not here to do your job for you.
seriously!
jeez prateek... have a little tact man! you want us to find you a
bunch of documentation and mail it to you? and quickly? come on
dude... ...
Build problem of krb5-1.5 on AIX 5.3Hi,
I'm trying to build krb5-1.5 without success. The make ends with:
"errors.c", line 52.17: 1506-280 (W) Function argument assignment between
types "void*" and "const char*" is not allowed.
"errors.c", line 76.11: 1506-068 (W) Operation between types "char*" and
"const char*" is not allowed.
"errors.c", line 120.7: 1506-068 (W) Operation between types "char*" and
"const char*" is not allowed.
"errors.c", line 146.31: 1506-280 (W) Function argument assignment between
types "char*" and "const char*" is not allowed.
cc -I../../include -I./../../include -I. -I. -DKRB5_DEPRECATED=1
-DKRB5_PRIVATE=1 -O3 -qhalt=e -D_THREAD_SAFE -c gmt_mktime.c
cc -I../../include -I./../../include -I. -I. -DKRB5_DEPRECATED=1
-DKRB5_PRIVATE=1 -O3 -qhalt=e -D_THREAD_SAFE -c fake-addrinfo.c
"fake-addrinfo.c", line 1212.9: 1506-045 (S) Undeclared identifier my_h_ent.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
make: 1254-004 The error code from the last command is 1.
Stop.
Any help is appreciated.
Thanks in advance,
/kjs
________________________________________________
Kerberos mailing list Kerberos@mit.edu
https://mailman.mit.edu/mailman/listinfo/kerberos
...
[tao-users] ACE 5.3.5 + TAO 1.3.5 + CIAO 0.3.5 beta releasedHi
We are happy to announce a new beta of ACE-5.3.5, TAO-1.3.5 and
CIAO-0.3.5. This beta comes with new ORB level services that were
developed over the past few months by folks at Washington University
and University of Rhode Island. Please see the release notes attached
with this email for more information.
As usual the latest release is available at:
http://deuce.doc.wustl.edu/Download.html
The doxygen documentation for the beta will be updated in the next few
hours!
We highly encourage you to download the present beta and use it with
your applications and let us know if there are any p...
Installing AIX 5.1, 5.2 and 5.3 on a single serverHi all,
Is there any way to install different versions of AIX (from 5.1 to
5.3) on a single server? And to make them work simultaneously?
I heard of LPAR but I am not sure it is possible to do such a thing
with this feature...
Thx for your help in advance.
Regards
The_Nail wrote:
> Hi all,
>
> Is there any way to install different versions of AIX (from 5.1 to
> 5.3) on a single server? And to make them work simultaneously?
> I heard of LPAR but I am not sure it is possible to do such a thing
> with this feature...
>
>
> Thx for your help in advance.
> Regar...
Java 1.5 on AIX 5.1?Is there such a thing as a Java 1.5 JRE that will run on AIX 5.1?
The most recent Java SDK that would run on AIX 5.1 that I could
find on the IBM web site was 1.4. Am I looking in the wrong place?
Unfortunately, we need to stick with AIX 5.1 on this particular
machine, as we are using it for building and testing software that
is intended to run on 5.1.
Scott Norwood wrote:
> Is there such a thing as a Java 1.5 JRE that will run on AIX 5.1?
> The most recent Java SDK that would run on AIX 5.1 that I could
> find on the IBM web site was 1.4. Am I looking in the wrong place?
Nope. ...
Re: [tao-users] ACE 5.3.5 + TAO 1.3.5 + CIAO 0.3.5 beta released
Hi Folks,
It's been about a year since we released ACE 5.3 and TAO 1.3.
We are therefore planning to release ACE 5.4 and TAO 1.4 by
mid-December. The ACE+TAO x.3.5 beta that Venkita just announced will
be the penultimate beta towards that goal. In addition to all the
enhancements that he mentioned in the release notes, we also plan to
add the following enhancements before the x.4 release:
----------------------------------------
.. ACE subsetting enhancements
.. ORB footprint and compilation-time enhancements
.. CORBA Security Service capabilities
.. Load Balancing Servi...
Compiling 1.5.3 or 1.6.1 on Solaris 5.9I've been pulling my hair out over this for a couple hours and I
can't see forest for trees at this
point. Both version fail to compile libkrb5support.so.0.1 with this
error
+ gcc -g -O2 -Wall -Wmissing-prototypes -Wcast-qual -Wcast-align -
Wconversion -Wshadow -pedantic
-shared -h libkrb5support.so.0 -o libkrb5support.so.0.1 threads.so
init-addrinfo.so plugins.so
errors.so gmt_mktime.so fake-addrinfo.so -R/afs/slac.stanford.edu/
package/krb5/1.5.3/sun4x_59/lib
-lresolv -lsocket -lnsl -ldl
ld: fatal: file libkrb5support.so.0: open failed: No such file or
directory
collect2: ld returned 1 exit status
I am using gcc 3.2.3 and the only odd thing I can see is the
-shared -h libkrb5support.so.0
option. Documentation on what -h actually does seems sparse... It
certainly doesn't do
what is listed in the man page.
_ Booker C. Bense
...
Re: [tao-users] ACE 5.3.5 + TAO 1.3.5 + CIAO 0.3.5 beta released #2
Hi Tom,
> We are currently arm-wrestling with TAO-1.3.3 on VxWorks-5.5/Tornado-2.2
> built with non-native exceptions and with implicit templates. Implicit
> templates are desirable since we are now using STL and those nested
> templates make explicit instantiation almost impossible. Non-native
> exceptions are important since native exceptions lead to a factor of 4.5
> increase in code size (!!).
>
> Implicit templates cause trouble with singletons, since the VxWorks-2.x
> loader does not respect weakly-defined symbols, so one can not load
> multiple mo...
ACE migration from 5.3 to 5.4.1 ACE_Svc_Tuple does not exist in ACE 5.4.1To: ace-bugs@cs.wustl.edu
Subject: [area]: [synopsis]
ACE VERSION: 5.4.1
HOST MACHINE and OPERATING SYSTEM:
(Red Hat Linux 3.2.2-5
TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
COMPILER NAME AND VERSION (AND PATCHLEVEL):
ACE_wrappers]$ gcc --version
gcc (GCC) 3.2.2 20030222 (Red Hat Linux 3.2.2-5)
Copyright (C) 2002 Free Software Foundation, Inc.
make static_libs=1 shared_libs=1 inline=1 threads=1 exceptions=1
fast=1 ssl=1
CONTENTS OF $ACE_ROOT/ace/config.h
ln -s $ACE_ROOT/ace/config-linux.h $ACE_ROOT/ace/config.h
CONTENTS OF $ACE_ROOT/include/makeinclude/platform_macros.GNU:
ln -s $ACE_ROOT/include/makeinclude/platform_linux.GNU
$ACE_ROOT/include/makeinclude/platform_macros.GNU
AREA/CLASS/EXAMPLE AFFECTED:
DOES THE PROBLEM AFFECT:
COMPILATION?
LINKING?
EXECUTION?
OTHER (please specify)?
ACE is OK. My application is affected.
SYNOPSIS:
DESCRIPTION:
We are migrating from ACE 5.3 on Solaris to Linux RedHat 9 ACE 5.4.1.
Our application is using ACE_Svc_Tuple class. This class has
disappeared from ACE 5.4.1 source code. Documentation or ChangeLog
does not provide migration strategy.
Question:
What is the migration solution for ACE_Svc_Tuple?
Thank You
Chris
REPEAT BY:
Chris
SAMPLE FIX/WORKAROUND:
[If available ]
Hi
> To: ace-bugs@cs.wustl.edu
> Subject: [area]: [synopsis]
>
> ACE VERSION...
Funny error in "make bootstrap" of GCC 4.1.1 on AIX 5.3I am getting the following error building GCC 4.1.1 on AIX 5.3 on a
44P-170 using GCC 3.3.2 that comes on the latest toolkit CD. I first
looked in the mkfixinc.sh script for a rogue > but didn't find it. I am
running everything under the bash shell by executing /usr/local/bin/bash
after logging in normally. Logged in as root:
gcc -g -O2 -o fixincl fixincl.o fixtests.o fixfixes.o server.o
procopen.o fixlib.o fixopts.o ../libiberty/libiberty.a
echo timestamp > full-stamp
srcdir="../../../gcc-4.1.1/fixincludes" /bin/sh
.../../../gcc-4.1.1/fixinc...