b9dc31ad0b
Based on patch provided by Raphael Langerhorst in PR 35308. 1.0pre3: - Many tiny code cleanups and some small fixes - Some fixes for *BSD systems and 64bit sysytems - List of builtin functions is now a hash (thx to bernd) - Improved performance by reusing stack structs (thx to bernd) 1.0pre2: It contains some small cleanups and build fixes related to mod_fann and mod_gl. 1.0pre1: It only contains some small bugfixes and cleanups compared to version 0.9i 0.9i: This release is primarly a bugfix release.
13 lines
577 B
Text
13 lines
577 B
Text
$NetBSD: patch-ab,v 1.2 2007/03/17 08:45:05 obache Exp $
|
|
|
|
--- GNUmakefile.orig 2007-03-17 08:18:09.000000000 +0000
|
|
+++ GNUmakefile
|
|
@@ -22,7 +22,7 @@
|
|
BUILDING_FOR_MACOSX := $(shell uname | grep -qvi darwin; echo $$?)
|
|
BUILDING_FOR_CYGWIN := $(shell uname | grep -qvi cygwin; echo $$?)
|
|
BUILDING_FOR_MINGW := $(shell uname | grep -qvi mingw; echo $$?)
|
|
-BUILDING_FOR_BSD := $(shell uname | grep -qvi bsd; echo $$?)
|
|
+BUILDING_FOR_BSD := $(shell uname | egrep -qvi \(bsd\|dragonfly\); echo $$?)
|
|
BUILDING_FOR_IRIX := $(shell uname | grep -qvi irix; echo $$?)
|
|
|
|
|