[2218] in SIPB_Linux_Development
athena-kerberos-8.2-2.i386.rpm
daemon@ATHENA.MIT.EDU (mark)
Tue Oct 6 18:58:17 1998
To: linux-dev@MIT.EDU
Date: Tue, 06 Oct 1998 22:58:02 GMT
From: mark <histed@MIT.EDU>
(I was lurking on this list and decided to test some of the packages
from /mit/linux/packages/8.2/i386. If you don't like this feel free
to flame and I'll stop.)
small bug:
third/krb5 is apparently being built without -g :
mozg ttyp1 - /usr/athena/bin % gdb telnet
GNU gdb 4.17.0.4 with Linux/x86 hardware watchpoint and FPU support
[etc]
This GDB was configured as "i386-redhat-linux"...(no debugging symbols found)...
To fix it, I patched source/third/krb5/Makefile.athena:
----------------------------------------------------
--- /mit/source-8.2/third/krb5/Makefile.athena Wed Nov 5 21:42:22 1997
+++ /home/histed/src/source-8.2/third/krb5/Makefile.athena Tue Oct 6 22:15:17 1998
@@ -11,9 +11,9 @@
rm -f src/config.cache
cd src && CC="$$COMPILER" CONFIG_SITE= \
./configure --prefix=/usr/athena --datadir=/usr/athena/lib \
--sbindir=/usr/athena/etc --sysconfdir=/etc/athena \
- --with-afs="$$ATHTOOLROOT"/usr/afsws
+ --with-afs="$$ATHTOOLROOT"/usr/afsws --with-ccopts=-g
clean:
cd src && ${MAKE} clean
----------------------------------------------------
-- Mark