ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-dev: Re: [Wireshark-dev] buildbot failure in Wireshark (development) onOSX-10.5-ppc

From: "Jim Young" <SYSJHY@xxxxxxxxxxxxxxx>
Date: Thu, 08 Jan 2009 10:04:27 -0500
>>> <buildbot-no-reply@xxxxxxxxxxxxx> 01/08/09 9:23 AM >>>
> The Buildbot has detected a new failure of OSX-10.5-ppc on Wireshark (development).
> Full details are available at:
>  http://buildbot.wireshark.org/trunk/builders/OSX-10.5-ppc/builds/309 
> 
> Buildbot URL: http://buildbot.wireshark.org/trunk/ 
> 
> Buildslave for this Build: osx-10.5-ppc
>  
> Build Reason: 
> Build Source Stamp: HEAD
> Blamelist: kukosa
> 
>  BUILD FAILED: failed compile

Both OSX buildbots as well as my RH dev system are failing to
build with the recently changed version_info.c.

In all three cases the linker is failing to find:

  gnutls_check_version

This dependency was introduced with the following
version_info.c snippit:

+    /* GnuTLS */
+#ifdef HAVE_LIBGNUTLS
+	g_string_append_printf(str, ", GnuTLS %s", gnutls_check_version(NULL));
+#endif /* HAVE_LIBGNUTLS */

In my case the RH system appears to have the ancient 
GnuTLS 1.4.1 (2006-06-14) installed.

I haven't seen a quick solution to this yet (short
of commenting out the call!).

Jim Y.