partysip-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Partysip-dev] partysip-2.1.0 does not compile on OpenBSD 3.4


From: Aymeric Moizard
Subject: Re: [Partysip-dev] partysip-2.1.0 does not compile on OpenBSD 3.4
Date: Mon, 29 Dec 2003 13:52:33 +0100 (CET)

In previous version of openbsd, I was able to use those methods.
You may try to fix the following kind of occurence appearing in
ppldnsv6.c (only)

#if defined(__NetBSD__) || defined(__OpenBSD__) ||\
    defined(OLD_NAMESER) || defined(__FreeBSD__)
      type = _get_short (cp);
      cp += sizeof (u_short);
#elif defined(__APPLE_CC__)
      GETSHORT(type, cp);
#else
      NS_GET16 (type, cp);
#endif

replace the above with either of:

      GETSHORT(type, cp);
or
      NS_GET16 (type, cp);

which might be now supported.
Let me know which one is working if any.

If they do not work, then you probably have an
include file undetected or something like this.
Aymeric

On Sun, 28 Dec 2003, Eric Gerlach wrote:

> Hi,
>
> I'm trying to get partysip-2.1.0 compiling on OpenBSD 3.4, and I'm
> getting the following error:
>
> ../ppl/unix/.libs/libppl.so.3.0: undefined reference to `_get_long'
> ../ppl/unix/.libs/libppl.so.3.0: undefined reference to `_get_short'
>
> The only references to _get_short and _get_long in the code are in
> ppl/unix/ppldns.c and ppl/unix/ppldnhv6.c (and their win32 counterparts).
>
> I'm not familiar with _get_short and _get_long, all I know is it's broke
> :)  Any advice?
>
> Cheers,
>
> Eric Gerlach
>
>
> _______________________________________________
> Partysip-dev mailing list
> address@hidden
> http://mail.nongnu.org/mailman/listinfo/partysip-dev
>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]