diff options
-rw-r--r-- | Makefile.am.common | 2 | ||||
-rw-r--r-- | configure.ac | 3 | ||||
-rwxr-xr-x | update.sh | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am.common b/Makefile.am.common index 7c8b280..9586e15 100644 --- a/Makefile.am.common +++ b/Makefile.am.common | |||
@@ -1,2 +1,4 @@ | |||
1 | AM_CPPFLAGS = -I$(top_srcdir)/include | 1 | AM_CPPFLAGS = -I$(top_srcdir)/include |
2 | AM_CPPFLAGS += -DOPENSSL_NO_ASM | 2 | AM_CPPFLAGS += -DOPENSSL_NO_ASM |
3 | AM_CPPFLAGS += -DHAVE_CRYPTODEV | ||
4 | AM_CPPFLAGS += -DLIBRESSL_INTERNAL | ||
diff --git a/configure.ac b/configure.ac index 549f303..2e00982 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -6,7 +6,7 @@ AC_CONFIG_MACRO_DIR([m4]) | |||
6 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) | 6 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
7 | 7 | ||
8 | AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") | 8 | AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") |
9 | CFLAGS="$CFLAGS -Wall -Werror -std=c99 -g -Wno-pointer-sign -DHAVE_CRYPTODEV -DLIBRESSL_INTERNAL" | 9 | CFLAGS="$CFLAGS -Wall -Werror -std=c99 -g -Wno-pointer-sign" |
10 | 10 | ||
11 | case $target_os in | 11 | case $target_os in |
12 | *darwin*) | 12 | *darwin*) |
@@ -36,7 +36,6 @@ AC_PROG_CC | |||
36 | AC_PROG_LIBTOOL | 36 | AC_PROG_LIBTOOL |
37 | AC_PROG_CC_STDC | 37 | AC_PROG_CC_STDC |
38 | AM_PROG_CC_C_O | 38 | AM_PROG_CC_C_O |
39 | AC_PROG_LN_S | ||
40 | 39 | ||
41 | AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=], | 40 | AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=], |
42 | [NO_STRLCPY=yes])], [NO_STRLCPY=yes]) | 41 | [NO_STRLCPY=yes])], [NO_STRLCPY=yes]) |
@@ -413,6 +413,6 @@ crypto_excludes=( | |||
413 | source links | 413 | source links |
414 | for i in $MLINKS; do | 414 | for i in $MLINKS; do |
415 | IFS=","; set $i; unset IFS | 415 | IFS=","; set $i; unset IFS |
416 | echo " \$(LN_S) -f \$(DESTDIR)\$(mandir)/man3/$1 \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am | 416 | echo " ln -f \$(DESTDIR)\$(mandir)/man3/$1 \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am |
417 | done | 417 | done |
418 | ) | 418 | ) |