aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am.common2
-rw-r--r--configure.ac3
-rwxr-xr-xupdate.sh2
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 @@
1AM_CPPFLAGS = -I$(top_srcdir)/include 1AM_CPPFLAGS = -I$(top_srcdir)/include
2AM_CPPFLAGS += -DOPENSSL_NO_ASM 2AM_CPPFLAGS += -DOPENSSL_NO_ASM
3AM_CPPFLAGS += -DHAVE_CRYPTODEV
4AM_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])
6m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 6m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
7 7
8AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") 8AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS")
9CFLAGS="$CFLAGS -Wall -Werror -std=c99 -g -Wno-pointer-sign -DHAVE_CRYPTODEV -DLIBRESSL_INTERNAL" 9CFLAGS="$CFLAGS -Wall -Werror -std=c99 -g -Wno-pointer-sign"
10 10
11case $target_os in 11case $target_os in
12 *darwin*) 12 *darwin*)
@@ -36,7 +36,6 @@ AC_PROG_CC
36AC_PROG_LIBTOOL 36AC_PROG_LIBTOOL
37AC_PROG_CC_STDC 37AC_PROG_CC_STDC
38AM_PROG_CC_C_O 38AM_PROG_CC_C_O
39AC_PROG_LN_S
40 39
41AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=], 40AC_CHECK_FUNC(strlcpy,[AC_SEARCH_LIBS(strlcpy,, [NO_STRLCPY=],
42 [NO_STRLCPY=yes])], [NO_STRLCPY=yes]) 41 [NO_STRLCPY=yes])], [NO_STRLCPY=yes])
diff --git a/update.sh b/update.sh
index a775a1a..3fc5d07 100755
--- a/update.sh
+++ b/update.sh
@@ -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)