tags 745447 patch
thanks

The attached patch allows kFreeBSD to detected as a BSD-style Unix and for the build to proceed.

When I first tested this patch on a kfreebsd-i386 VM, the build would proceed until 'make check' and then segfault. Since bug #745448 has been fixed, the package builds, installs and I am able to render scenes/advanced/biscuit.pov.

Description: Fix FTBFS on kFreeBSD
 This patch allows kFreeBSD to be detected as a BSD-style Unix.
 Bug #745448 needed to be fixed before build was successful.
Bug-Debian: http://bugs.debian.org/745447
Author: Graham Inggs <gra...@nerve.org.za>
Forwarded: not-needed
Last-Update: 2014-05-26
--- a/vfe/unix/syspovconfig.h
+++ b/vfe/unix/syspovconfig.h
@@ -140,7 +140,7 @@
 #elif defined(__unix__)
 	// Some Unix other than the above detected.
 	#include <sys/param.h>
-	#if defined(BSD)
+	#if defined(BSD) || defined(__FreeBSD_kernel__)
 		// BSD-style Unix detected.
 		#include "syspovconfig_bsd.h"
 	#else

Reply via email to