diff options
author | David Robillard <d@drobilla.net> | 2018-01-04 19:41:08 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-01-06 13:37:08 -0500 |
commit | 86e2e5975b187d1cb7d513688e0ef6c2aa71bbca (patch) | |
tree | edc5ffc0a7936735b147cb0a87a20fc8e6f66e34 | |
parent | 9f0cf036644f5062791e95998b17c8979f64a411 (diff) | |
download | sord-86e2e5975b187d1cb7d513688e0ef6c2aa71bbca.tar.gz sord-86e2e5975b187d1cb7d513688e0ef6c2aa71bbca.tar.bz2 sord-86e2e5975b187d1cb7d513688e0ef6c2aa71bbca.zip |
Remove snprintf define hack for Windows
No longer necessary with Windows 10 and MSVS 2017
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ def build(bld): if bld.env.MSVC_COMPILER: libflags = [] libs = [] - defines = ['snprintf=_snprintf'] + defines = [] # Shared Library if bld.env.BUILD_SHARED: |