Package: mysql-gui-tools
Version: 5.0r14+openSUSE-2
Severity: important
Tags: patch
User: [email protected]
Usertags: kfreebsd
Hi,
the current version fails to build on GNU/kFreeBSD.
The problem is outdated ftgl library inside (#340720).
Please either use current ftgl library from debian package or
fix your internal copy as shown bellow,
i.e. add "|| defined(__FreeBSD_kernel__)".
Thanks in advance
Petr
--- common/library/generic-canvas/ftgl/src/FTVectoriser.cpp
+++ common/library/generic-canvas/ftgl/src/FTVectoriser.cpp
@@ -7,7 +7,7 @@
#ifdef __APPLE_CC__
typedef GLvoid (*GLUTesselatorFunction)(...);
-#elif defined( __mips ) || defined( __linux__ ) || defined( __FreeBSD__ ) ||
defined( __OpenBSD__ ) || defined( __sun ) || defined (__CYGWIN__)
+#elif defined( __mips ) || defined( __linux__ ) || defined(
__FreeBSD_kernel__) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) ||
defined( __sun ) || defined (__CYGWIN__)
typedef GLvoid (*GLUTesselatorFunction)();
#elif defined ( WIN32)
typedef GLvoid (CALLBACK *GLUTesselatorFunction)( );
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]