Re: [OpenAFS] Compile failure
On Thu, 11 Aug 2016, Ted Creedon wrote: > compile fails again using the latest heimdal-master > export|g -i krb > declare -x KRB5_CONFIG="/usr/heimdal/bin/krb5-config --libs --deps" > declare -x PATH_KRB5_CONFIG="/usr/heimdal/bin/krb5-config --libs --deps" > ookpik:/data1/openafs-1.6.18.2 # > > > configure:27910: checking for krb5-config > configure:27941: result: /usr/heimdal/bin/krb5-config --libs --deps > configure:29042: checking for library containing res_search > configure:29073: gcc -o conftest -I/usr/heimdal/include -L/usr/heimdal/lib > conftest.c >&5 > /tmp/cc8MEyGl.o: In function `main': > conftest.c:(.text+0xa): undefined reference to `res_search' > collect2: error: ld returned 1 exit status > configure:29073: $? = 1 > configure: failed program was: > | /* confdefs.h */ > | #define PACKAGE_NAME "OpenAFS" > | #define PACKAGE_TARNAME "openafs" > | #define PACKAGE_VERSION "1.6.18.2" > | #define PACKAGE_STRING "OpenAFS 1.6.18.2" > | #define PACKAGE_BUGREPORT "" > | #define PACKAGE_URL "" > | #define PACKAGE "openafs" > | #define VERSION "1.6.18.2" > | #define STDC_HEADERS 1 Is this the end of the configure output? It seems that we should continue on, checking for res_search in libdns, libnsl, and libresolv, before continuing. > > ____________ > From: openafs-info-ad...@openafs.org on > behalf of Ted Creedon > Sent: Thursday, August 11, 2016 9:42:10 AM > Cc: openafs-info@openafs.org > Subject: Re: [OpenAFS] Compile failure > > Thanks > > whats the -ldl for in krb5-config? libdl is for dynamic linking, e.g., dlopen() and such. Heimdal can be directed to load plugins via entries in a config file; dlopen() is used for that. -Ben > From: Chaskiel Grundman > Sent: Wednesday, August 10, 2016 8:08:01 AM > To: Benjamin Kaduk > Cc: Ted Creedon; openafs-info@openafs.org > Subject: Re: [OpenAFS] Compile failure > > I rejected ted's reply because 2MB of logs seemed excessive. Here's a > relevant bit of the log: > > configure:25263: gcc -c conftest.c >&5 > configure:25263: $? = 0 > configure:25264: result: yes > configure:25301: checking size of long > configure:25320: result: 8 > configure:25627: checking for krb5-config > configure:25658: result: /usr/heimdal/bin/krb5-config > configure:25668: checking for krb5 support in krb5-config > configure:25679: result: yes > configure:25695: checking for krb5_init_context > configure:25695: gcc -o conftest -I/usr/heimdal/includeconftest.c > -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 > -L/usr/heimdal/lib64 -lkrb5 >&5 > configure:25695: $? = 0 > configure:25695: result: yes > configure:26638: checking for krb5_get_error_message > configure:26638: gcc -o conftest -I/usr/heimdal/includeconftest.c > -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 > -L/usr/heimdal/lib64 -lkrb5 >&5 > configure:26638: $? = 0 > configure:26638: result: yes > configure:26645: checking for krb5_free_error_message > configure:26645: gcc -o conftest -I/usr/heimdal/includeconftest.c > -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 > -L/usr/heimdal/lib64 -lkrb5 >&5 > configure:26645: $? = 0 > configure:26645: result: yes > > It suggests that krb5-config was used, but it only put -lkrb5 in > libs. > That's consistent with what I see on ubuntu trusty: > > % krb5-config.heimdal --version > heimdal 1.6.99 > % krb5-config.heimdal --libs > -L/usr/lib/x86_64-linux-gnu/heimdal -lkrb5 > > It apears to get the full set of libraries, you need to add --deps: > > % krb5-config.heimdal --libs --deps > -L/usr/lib/x86_64-linux-gnu/heimdal -lkrb5 -lhx509 -lcom_err -lhcrypto > -lasn1 -lwind -lheimbase -lroken -lcrypt -pthread -lpthread -ldl -lresolv > -pthread -lpthread > > ___ > OpenAFS-info mailing list > OpenAFS-info@openafs.org > https://lists.openafs.org/mailman/listinfo/openafs-info > ___ > OpenAFS-info mailing list > OpenAFS-info@openafs.org > https://lists.openafs.org/mailman/listinfo/openafs-info > ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
Re: [OpenAFS] Compile failure
compile fails again using the latest heimdal-master export|g -i krb declare -x KRB5_CONFIG="/usr/heimdal/bin/krb5-config --libs --deps" declare -x PATH_KRB5_CONFIG="/usr/heimdal/bin/krb5-config --libs --deps" ookpik:/data1/openafs-1.6.18.2 # configure:27910: checking for krb5-config configure:27941: result: /usr/heimdal/bin/krb5-config --libs --deps configure:29042: checking for library containing res_search configure:29073: gcc -o conftest -I/usr/heimdal/include -L/usr/heimdal/lib conftest.c >&5 /tmp/cc8MEyGl.o: In function `main': conftest.c:(.text+0xa): undefined reference to `res_search' collect2: error: ld returned 1 exit status configure:29073: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenAFS" | #define PACKAGE_TARNAME "openafs" | #define PACKAGE_VERSION "1.6.18.2" | #define PACKAGE_STRING "OpenAFS 1.6.18.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "openafs" | #define VERSION "1.6.18.2" | #define STDC_HEADERS 1 From: openafs-info-ad...@openafs.org on behalf of Ted Creedon Sent: Thursday, August 11, 2016 9:42:10 AM Cc: openafs-info@openafs.org Subject: Re: [OpenAFS] Compile failure Thanks whats the -ldl for in krb5-config? From: Chaskiel Grundman Sent: Wednesday, August 10, 2016 8:08:01 AM To: Benjamin Kaduk Cc: Ted Creedon; openafs-info@openafs.org Subject: Re: [OpenAFS] Compile failure I rejected ted's reply because 2MB of logs seemed excessive. Here's a relevant bit of the log: configure:25263: gcc -c conftest.c >&5 configure:25263: $? = 0 configure:25264: result: yes configure:25301: checking size of long configure:25320: result: 8 configure:25627: checking for krb5-config configure:25658: result: /usr/heimdal/bin/krb5-config configure:25668: checking for krb5 support in krb5-config configure:25679: result: yes configure:25695: checking for krb5_init_context configure:25695: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:25695: $? = 0 configure:25695: result: yes configure:26638: checking for krb5_get_error_message configure:26638: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:26638: $? = 0 configure:26638: result: yes configure:26645: checking for krb5_free_error_message configure:26645: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:26645: $? = 0 configure:26645: result: yes It suggests that krb5-config was used, but it only put -lkrb5 in libs. That's consistent with what I see on ubuntu trusty: % krb5-config.heimdal --version heimdal 1.6.99 % krb5-config.heimdal --libs -L/usr/lib/x86_64-linux-gnu/heimdal -lkrb5 It apears to get the full set of libraries, you need to add --deps: % krb5-config.heimdal --libs --deps -L/usr/lib/x86_64-linux-gnu/heimdal -lkrb5 -lhx509 -lcom_err -lhcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -pthread -lpthread -ldl -lresolv -pthread -lpthread ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
Re: [OpenAFS] Compile failure
Thanks whats the -ldl for in krb5-config? From: Chaskiel Grundman Sent: Wednesday, August 10, 2016 8:08:01 AM To: Benjamin Kaduk Cc: Ted Creedon; openafs-info@openafs.org Subject: Re: [OpenAFS] Compile failure I rejected ted's reply because 2MB of logs seemed excessive. Here's a relevant bit of the log: configure:25263: gcc -c conftest.c >&5 configure:25263: $? = 0 configure:25264: result: yes configure:25301: checking size of long configure:25320: result: 8 configure:25627: checking for krb5-config configure:25658: result: /usr/heimdal/bin/krb5-config configure:25668: checking for krb5 support in krb5-config configure:25679: result: yes configure:25695: checking for krb5_init_context configure:25695: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:25695: $? = 0 configure:25695: result: yes configure:26638: checking for krb5_get_error_message configure:26638: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:26638: $? = 0 configure:26638: result: yes configure:26645: checking for krb5_free_error_message configure:26645: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:26645: $? = 0 configure:26645: result: yes It suggests that krb5-config was used, but it only put -lkrb5 in libs. That's consistent with what I see on ubuntu trusty: % krb5-config.heimdal --version heimdal 1.6.99 % krb5-config.heimdal --libs -L/usr/lib/x86_64-linux-gnu/heimdal -lkrb5 It apears to get the full set of libraries, you need to add --deps: % krb5-config.heimdal --libs --deps -L/usr/lib/x86_64-linux-gnu/heimdal -lkrb5 -lhx509 -lcom_err -lhcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -pthread -lpthread -ldl -lresolv -pthread -lpthread ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
Re: [OpenAFS] Compile failure
I rejected ted's reply because 2MB of logs seemed excessive. Here's a relevant bit of the log: configure:25263: gcc -c conftest.c >&5 configure:25263: $? = 0 configure:25264: result: yes configure:25301: checking size of long configure:25320: result: 8 configure:25627: checking for krb5-config configure:25658: result: /usr/heimdal/bin/krb5-config configure:25668: checking for krb5 support in krb5-config configure:25679: result: yes configure:25695: checking for krb5_init_context configure:25695: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:25695: $? = 0 configure:25695: result: yes configure:26638: checking for krb5_get_error_message configure:26638: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:26638: $? = 0 configure:26638: result: yes configure:26645: checking for krb5_free_error_message configure:26645: gcc -o conftest -I/usr/heimdal/includeconftest.c -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 >&5 configure:26645: $? = 0 configure:26645: result: yes It suggests that krb5-config was used, but it only put -lkrb5 in libs. That's consistent with what I see on ubuntu trusty: % krb5-config.heimdal --version heimdal 1.6.99 % krb5-config.heimdal --libs -L/usr/lib/x86_64-linux-gnu/heimdal -lkrb5 It apears to get the full set of libraries, you need to add --deps: % krb5-config.heimdal --libs --deps -L/usr/lib/x86_64-linux-gnu/heimdal -lkrb5 -lhx509 -lcom_err -lhcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -pthread -lpthread -ldl -lresolv -pthread -lpthread ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
Re: [OpenAFS] Compile failure
On Wed, 3 Aug 2016, Ted Creedon wrote: > openafs-1.6.18.2 > linux 4.1.27-27 > heimdal-master > > --with-krb5=/usr/heimdal > gcc -O -I/data1/openafs-1.6.18.2/src/config > -I/data1/openafs-1.6.18.2/include -I. -I. -D_LARGEFILE64_SOURCE -o > ptserver ptserver.o ptutils.o ptprocs.o ptint.ss.o ptint.xdr.o utils.o map.o > /data1/openafs-1.6.18.2/lib/libubik.a /data1/openafs-1.6.18.2/lib/libauth.a > /data1/openafs-1.6.18.2/lib/librxkad.a > /data1/openafs-1.6.18.2/lib/librxstat.a /data1/openafs-1.6.18.2/lib/librx.a > /data1/openafs-1.6.18.2/lib/liblwp.a /data1/openafs-1.6.18.2/lib/libdes.a > /data1/openafs-1.6.18.2/lib/libcmd.a > /data1/openafs-1.6.18.2/lib/libafscom_err.a > /data1/openafs-1.6.18.2/lib/libsys.a /data1/openafs-1.6.18.2/lib/libafsutil.a > -lresolv /data1/openafs-1.6.18.2/lib/libaudit.a -Wl,--enable-new-dtags > -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 > /usr/lib64/gcc/x86_64-suse-linux/4.8/../../../../x86_64-suse-linux/bin/ld: > /data1/openafs-1.6.18.2/lib/libauth.a(akimpersonate.o): undefined reference > to symbol 'encode_EncTicketPart@@HEIMDAL_ASN1_1.0' > /usr/heimdal/lib64/libasn1.so.8: error adding symbols: DSO missing from > command line > collect2: error: ld returned 1 exit status > Makefile:99: recipe for target 'ptserver' failed > make[3]: *** [ptserver] Error 1 > make[3]: Leaving directory '/data1/openafs-1.6.18.2/src/ptserver' > Makefile:235: recipe for target 'ptserver' failed > make[2]: *** [ptserver] Error 2 > make[2]: Leaving directory '/data1/openafs-1.6.18.2' > Makefile:692: recipe for target 'build' failed > make[1]: *** [build] Error 2 > make[1]: Leaving directory '/data1/openafs-1.6.18.2' > Makefile:36: recipe for target 'all' failed > make: *** [all] Error 2 Linking heimdal krb5 should have a longer command line than that. Is there MIT krb5 also installed on the machine? Try setting PATH_KRB5_CONFIG=/usr/heimdal/bin/krb5-config at configure time? -Ben ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
Re: [OpenAFS] Compile failure
On Wed, 3 Aug 2016, Benjamin Kaduk wrote: > On Wed, 3 Aug 2016, Ted Creedon wrote: > > > Linking heimdal krb5 should have a longer command line than that. > Is there MIT krb5 also installed on the machine? Try setting > PATH_KRB5_CONFIG=/usr/heimdal/bin/krb5-config at configure time? Sorry, it is only PATH_KRB5_CONFIG on master; use KRB5_CONFIG instead. -Ben ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
[OpenAFS] Compile failure
openafs-1.6.18.2 linux 4.1.27-27 heimdal-master --with-krb5=/usr/heimdal gcc -O -I/data1/openafs-1.6.18.2/src/config -I/data1/openafs-1.6.18.2/include -I. -I. -D_LARGEFILE64_SOURCE -o ptserver ptserver.o ptutils.o ptprocs.o ptint.ss.o ptint.xdr.o utils.o map.o /data1/openafs-1.6.18.2/lib/libubik.a /data1/openafs-1.6.18.2/lib/libauth.a /data1/openafs-1.6.18.2/lib/librxkad.a /data1/openafs-1.6.18.2/lib/librxstat.a /data1/openafs-1.6.18.2/lib/librx.a /data1/openafs-1.6.18.2/lib/liblwp.a /data1/openafs-1.6.18.2/lib/libdes.a /data1/openafs-1.6.18.2/lib/libcmd.a /data1/openafs-1.6.18.2/lib/libafscom_err.a /data1/openafs-1.6.18.2/lib/libsys.a /data1/openafs-1.6.18.2/lib/libafsutil.a -lresolv /data1/openafs-1.6.18.2/lib/libaudit.a -Wl,--enable-new-dtags -Wl,-rpath -Wl,/usr/heimdal/lib64 -L/usr/heimdal/lib64 -lkrb5 /usr/lib64/gcc/x86_64-suse-linux/4.8/../../../../x86_64-suse-linux/bin/ld: /data1/openafs-1.6.18.2/lib/libauth.a(akimpersonate.o): undefined reference to symbol 'encode_EncTicketPart@@HEIMDAL_ASN1_1.0' /usr/heimdal/lib64/libasn1.so.8: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status Makefile:99: recipe for target 'ptserver' failed make[3]: *** [ptserver] Error 1 make[3]: Leaving directory '/data1/openafs-1.6.18.2/src/ptserver' Makefile:235: recipe for target 'ptserver' failed make[2]: *** [ptserver] Error 2 make[2]: Leaving directory '/data1/openafs-1.6.18.2' Makefile:692: recipe for target 'build' failed make[1]: *** [build] Error 2 make[1]: Leaving directory '/data1/openafs-1.6.18.2' Makefile:36: recipe for target 'all' failed make: *** [all] Error 2 ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
Re: [OpenAFS] Compile failure on FreeBSD 6.0
I just did a config. No biggie, I'll try building a kernel later today to see if that resolves the issue outright. On Mon, 12 Dec 2005, Jim Rees wrote: In file included from ../sys/vnode.h:547, from /usr/local/src/openafs-1.4.0/src/afs/sysincludes.h:257, from /usr/local/src/openafs-1.4.0/src/afs/afs_analyze.c:20: ./vnode_if.h:9:30: vnode_if_typedef.h: No such file or directory ./vnode_if.h:10:31: vnode_if_newproto.h: No such file or directory So are the files there in the kernel build directory or not? Did you build a kernel or just config it? I'm not sure at what part of the kernel build these get generated. Maybe a "make vnode_if_newproto.h vnode_if_typedef.h" would do it. I'd like to find a way to remove the dependency on the vnode layout but I can't think of any easy way to do so. ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
Re: [OpenAFS] Compile failure on FreeBSD 6.0
In file included from ../sys/vnode.h:547, from /usr/local/src/openafs-1.4.0/src/afs/sysincludes.h:257, from /usr/local/src/openafs-1.4.0/src/afs/afs_analyze.c:20: ./vnode_if.h:9:30: vnode_if_typedef.h: No such file or directory ./vnode_if.h:10:31: vnode_if_newproto.h: No such file or directory So are the files there in the kernel build directory or not? Did you build a kernel or just config it? I'm not sure at what part of the kernel build these get generated. Maybe a "make vnode_if_newproto.h vnode_if_typedef.h" would do it. I'd like to find a way to remove the dependency on the vnode layout but I can't think of any easy way to do so. ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
[OpenAFS] Compile failure on FreeBSD 6.0
Here's the configure argument used: callcenter# ./configure --with-afs-sysname=i386_fbsd_60 --enable-transarc-paths --with-bsd-kernel-headers=/usr/src/sys --with-bsd-kernel-build=/usr/src/sys/i386/compile/GENERIC Configure is successful, I had to specify the kernel-headers and kernel-build in order to get this far. callcenter# gmake In file included from ../sys/vnode.h:547, from /usr/local/src/openafs-1.4.0/src/afs/sysincludes.h:257, from /usr/local/src/openafs-1.4.0/src/afs/afs_analyze.c:20: ./vnode_if.h:9:30: vnode_if_typedef.h: No such file or directory ./vnode_if.h:10:31: vnode_if_newproto.h: No such file or directory gmake[4]: *** [afs_analyze.o] Error 1 gmake[4]: Leaving directory `/usr/local/src/openafs-1.4.0/src/libafs/MODLOAD' gmake[3]: *** [single_compdir] Error 2 gmake[3]: Leaving directory `/usr/local/src/openafs-1.4.0/src/libafs' gmake[2]: *** [libafs] Error 2 gmake[2]: Leaving directory `/usr/local/src/openafs-1.4.0' gmake[1]: *** [build] Error 2 gmake[1]: Leaving directory `/usr/local/src/openafs-1.4.0' gmake: *** [all] Error 2 Any of this look familiar? Tony Shadwick OSS Solutions ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
Re: [OpenAFS] Compile failure of 1.3.77 on ia64
Stephan, I see this also on rhel4 beta 2+, I mentioned it last month but nobody responded yet. Stephan Wonczak wrote: Hi list! In december I already reported compilation failures of 1.3.74 und 75. After my christmas vacation I decided to try 1.3.77. Still the same error: cc -I. -I.. -I../nfs -I/service/openafs/source-1.3.77/openafs-1.3.77/src -I/service/openafs/source-1.3.77/openafs-1.3.77/src/afs -I/service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX -I/service/openafs/source-1.3.77/openafs-1.3.77/src/config -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rx/LINUX -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rxkad -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rxkad/domestic -I/service/openafs/source-1.3.77/openafs-1.3.77/src/util -I/service/openafs/source-1.3.77/openafs-1.3.77/src -I/service/openafs/source-1.3.77/openafs-1.3.77/src/afs -I/service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX -I/service/openafs/source-1.3.77/openafs-1.3.77/src/util -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rxkad -I/service/openafs/source-1.3.77/openafs-1.3.77/src/config -I/service/openafs/source-1.3.77/openafs-1.3.77/src/fsint -I/service/openafs/source-1.3.77/openafs-1.3.77/src/vlserver -I/service/openafs/source-1.3.77/openafs-1.3.77/include -I/service/openafs/source-1.3.77/openafs-1.3.77/include/afs-O2 -fomit-frame-pointer -fno-strength-reduce -fno-strict-aliasing -fno-common -pipe -ffixed-r13 -mfixed-range=f10-f15,f32-f127 -falign-functions=32 -mb-step -D__KERNEL__ -DKERNEL -D_KERNEL -DMODULE -DAFS_SMP -I. -I../ -I/service/openafs/source-1.3.77/openafs-1.3.77/src/config -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rx -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rxstat -c /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c: In function `afs_init': /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c:376: `sys_chdir' undeclared (first use in this function) /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c:376: (Each undeclared identifier is reported only once /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c:376: for each function it appears in.) /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c:378: `sys_write' undeclared (first use in this function) make[4]: *** [osi_module.o] Error 1 make[4]: Leaving directory `/service/openafs/source-1.3.77/openafs-1.3.77/src/libafs/MODLOAD-2.4.21-sgi301r1-MP' make[3]: *** [linux_compdirs] Error 2 make[3]: Leaving directory `/service/openafs/source-1.3.77/openafs-1.3.77/src/libafs' make[2]: *** [libafs] Error 2 make[2]: Leaving directory `/service/openafs/source-1.3.77/openafs-1.3.77' make[1]: *** [build] Error 2 make[1]: Leaving directory `/service/openafs/source-1.3.77/openafs-1.3.77' make: *** [all] Error 2 My version of gcc is: [EMAIL PROTECTED] openafs-1.3.77]# gcc --version gcc (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-34) and make: [EMAIL PROTECTED] openafs-1.3.77]# make --version GNU Make version 3.79.1, by Richard Stallman and Roland McGrath. Built for ia64-unknown-linux-gnu I am willing to test patches, suggestions or anything anyone might decide to bounce my way. Dipl. Chem. Dr. Stephan Wonczak Zentrum fuer Angewandte Informatik (ZAIK) Regionales Rechenzentrum der Universitaet zu Koeln (RRZK) Universitaet zu Koeln, Robert-Koch-Strasse 10, 50931 Koeln Tel: ++49/(0)221/478-5577, Fax: ++49/(0)221/478-5590 ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info
[OpenAFS] Compile failure of 1.3.77 on ia64
Hi list! In december I already reported compilation failures of 1.3.74 und 75. After my christmas vacation I decided to try 1.3.77. Still the same error: cc -I. -I.. -I../nfs -I/service/openafs/source-1.3.77/openafs-1.3.77/src -I/service/openafs/source-1.3.77/openafs-1.3.77/src/afs -I/service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX -I/service/openafs/source-1.3.77/openafs-1.3.77/src/config -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rx/LINUX -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rxkad -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rxkad/domestic -I/service/openafs/source-1.3.77/openafs-1.3.77/src/util -I/service/openafs/source-1.3.77/openafs-1.3.77/src -I/service/openafs/source-1.3.77/openafs-1.3.77/src/afs -I/service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX -I/service/openafs/source-1.3.77/openafs-1.3.77/src/util -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rxkad -I/service/openafs/source-1.3.77/openafs-1.3.77/src/config -I/service/openafs/source-1.3.77/openafs-1.3.77/src/fsint -I/service/openafs/source-1.3.77/openafs-1.3.77/src/vlserver -I/service/openafs/source-1.3.77/openafs-1.3.77/include -I/service/openafs/source-1.3.77/openafs-1.3.77/include/afs-O2 -fomit-frame-pointer -fno-strength-reduce -fno-strict-aliasing -fno-common -pipe -ffixed-r13 -mfixed-range=f10-f15,f32-f127 -falign-functions=32 -mb-step -D__KERNEL__ -DKERNEL -D_KERNEL -DMODULE -DAFS_SMP -I. -I../ -I/service/openafs/source-1.3.77/openafs-1.3.77/src/config -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rx -I/service/openafs/source-1.3.77/openafs-1.3.77/src/rxstat -c /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c: In function `afs_init': /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c:376: `sys_chdir' undeclared (first use in this function) /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c:376: (Each undeclared identifier is reported only once /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c:376: for each function it appears in.) /service/openafs/source-1.3.77/openafs-1.3.77/src/afs/LINUX/osi_module.c:378: `sys_write' undeclared (first use in this function) make[4]: *** [osi_module.o] Error 1 make[4]: Leaving directory `/service/openafs/source-1.3.77/openafs-1.3.77/src/libafs/MODLOAD-2.4.21-sgi301r1-MP' make[3]: *** [linux_compdirs] Error 2 make[3]: Leaving directory `/service/openafs/source-1.3.77/openafs-1.3.77/src/libafs' make[2]: *** [libafs] Error 2 make[2]: Leaving directory `/service/openafs/source-1.3.77/openafs-1.3.77' make[1]: *** [build] Error 2 make[1]: Leaving directory `/service/openafs/source-1.3.77/openafs-1.3.77' make: *** [all] Error 2 My version of gcc is: [EMAIL PROTECTED] openafs-1.3.77]# gcc --version gcc (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-34) and make: [EMAIL PROTECTED] openafs-1.3.77]# make --version GNU Make version 3.79.1, by Richard Stallman and Roland McGrath. Built for ia64-unknown-linux-gnu I am willing to test patches, suggestions or anything anyone might decide to bounce my way. Dipl. Chem. Dr. Stephan Wonczak Zentrum fuer Angewandte Informatik (ZAIK) Regionales Rechenzentrum der Universitaet zu Koeln (RRZK) Universitaet zu Koeln, Robert-Koch-Strasse 10, 50931 Koeln Tel: ++49/(0)221/478-5577, Fax: ++49/(0)221/478-5590 ___ OpenAFS-info mailing list OpenAFS-info@openafs.org https://lists.openafs.org/mailman/listinfo/openafs-info