diff options
Diffstat (limited to 'crypto/Makefile.am.tpl')
-rw-r--r-- | crypto/Makefile.am.tpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/Makefile.am.tpl b/crypto/Makefile.am.tpl index ac87a77..6e1c423 100644 --- a/crypto/Makefile.am.tpl +++ b/crypto/Makefile.am.tpl | |||
@@ -14,7 +14,11 @@ noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la | |||
14 | 14 | ||
15 | # compatibility functions that need to be built without optimizations | 15 | # compatibility functions that need to be built without optimizations |
16 | libcompatnoopt_la_CFLAGS = -O0 | 16 | libcompatnoopt_la_CFLAGS = -O0 |
17 | libcompatnoopt_la_SOURCES = compat/explicit_bzero.c | 17 | libcompatnoopt_la_SOURCES = |
18 | |||
19 | if NO_EXPLICIT_BZERO | ||
20 | libcompatnoopt_la_SOURCES += compat/explicit_bzero.c | ||
21 | endif | ||
18 | 22 | ||
19 | # other compatibility functions | 23 | # other compatibility functions |
20 | libcompat_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) | 24 | libcompat_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) |