diff options
Diffstat (limited to 'src/config.mak')
-rw-r--r-- | src/config.mak | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config.mak b/src/config.mak index 855ad60..467f4f5 100644 --- a/src/config.mak +++ b/src/config.mak @@ -100,7 +100,9 @@ ifneq ($(findstring dll, $(TEC_UNAME)), ) endif ifneq ($(findstring MacOS, $(TEC_UNAME)), ) - BUILD_DYLIB=Yes + ifneq ($(TEC_SYSMINOR), 4) + BUILD_DYLIB=Yes + endif endif LDIR = ../lib/$(TEC_UNAME) |