pkgsrc/net/netatalk/patches/patch-aj
wrstuden 08b5ce4b68 Fix two PRs on this package, and make it compile on macppc.
Sample files are installed in pkg/share/examples/netatalk, addressing
PR 7920 by rnestor@metronet.com.

Now include elf support, addressing PR 8125 by Takahiro Kambe,
<taca@sky.yamashina.kyoto.jp> with slight changes by me.

Cleaned up some lint warnings and fixed an unsigned character comparison
problem with assistance from cgd@netbsd.org.

Disabled building of libatalk_p.a (profiling libatalk) as not all ports
support it which will generate plist errors.
1999-08-31 22:09:42 +00:00

13 lines
510 B
Text

$NetBSD: patch-aj,v 1.2 1999/08/31 22:09:43 wrstuden Exp $
--- include/atalk/atp.h Thu Oct 21 10:52:54 1993
+++ include/atalk/atp.h Mon Aug 30 06:53:38 1999
@@ -78,7 +78,7 @@
struct atpbuf {
struct atpbuf *atpbuf_next; /* next buffer in chain */
- short atpbuf_dlen; /* data length <= ATP_BUFSIZ */
+ unsigned short atpbuf_dlen; /* data length <= ATP_BUFSIZ */
struct sockaddr_at atpbuf_addr; /* net address sent/recvd */
union {
char atpbuf_data[ ATP_BUFSIZ ]; /* the data */