aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-10-03 17:09:44 +0000
committerDavid Robillard <d@drobilla.net>2014-10-03 17:09:44 +0000
commit164337b78f11c7fdb5881df6262ea0d02a1cad6f (patch)
tree0a0904e03e37388982f5d1f28bd9d52e7382d848 /wscript
parentcf50a460fcc84687d18764a61cf79d662766414b (diff)
downloadserd-164337b78f11c7fdb5881df6262ea0d02a1cad6f.tar.gz
serd-164337b78f11c7fdb5881df6262ea0d02a1cad6f.tar.bz2
serd-164337b78f11c7fdb5881df6262ea0d02a1cad6f.zip
Remove dependence on fmax() to avoid portability issues.
git-svn-id: http://svn.drobilla.net/serd/trunk@476 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 1 insertions, 7 deletions
diff --git a/wscript b/wscript
index fb8df19f..5c60873c 100644
--- a/wscript
+++ b/wscript
@@ -11,7 +11,7 @@ import waflib.extras.autowaf as autowaf
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
-SERD_VERSION = '0.20.0'
+SERD_VERSION = '0.21.0'
SERD_MAJOR_VERSION = '0'
# Mandatory waf variables
@@ -67,12 +67,6 @@ def configure(conf):
define_name = 'HAVE_GCOV',
mandatory = False)
- conf.check(function_name = 'fmax',
- header_name = 'math.h',
- define_name = 'HAVE_FMAX',
- lib = ['m'],
- mandatory = False)
-
if not Options.options.no_posix:
conf.check(function_name = 'posix_memalign',
header_name = 'stdlib.h',