Skip to content
This repository was archived by the owner on Jul 3, 2020. It is now read-only.

Commit f01d7c1

Browse files
committed
Regen
1 parent 03b5f7d commit f01d7c1

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ am__DIST_COMMON = $(srcdir)/Makefile.in \
202202
$(top_srcdir)/build-aux/ltmain.sh \
203203
$(top_srcdir)/build-aux/missing \
204204
$(top_srcdir)/src/libsodium/include/sodium/version.h.in \
205-
AUTHORS ChangeLog README THANKS build-aux/compile \
205+
AUTHORS ChangeLog THANKS build-aux/compile \
206206
build-aux/config.guess build-aux/config.sub \
207207
build-aux/install-sh build-aux/ltmain.sh build-aux/missing \
208208
compile config.guess config.sub depcomp install-sh ltmain.sh \

configure

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3214,9 +3214,8 @@ SODIUM_LIBRARY_VERSION=19:0:1
32143214
LX_CFLAGS=${CFLAGS-NONE}
32153215

32163216

3217-
if test pwd | fgrep ' ' > /dev/null 2>&1; then :
3218-
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The build directory contains whitespaces - This can cause tests/installation to fail due to limitations of some libtool versions" >&5
3219-
$as_echo "$as_me: WARNING: The build directory contains whitespaces - This can cause tests/installation to fail due to limitations of some libtool versions" >&2;}
3217+
if pwd | fgrep ' ' > /dev/null 2>&1; then :
3218+
as_fn_error $? "The build directory contains whitespaces - This can cause tests/installation to fail due to limitations of some libtool versions" "$LINENO" 5
32203219

32213220
fi
32223221

@@ -3264,8 +3263,15 @@ fi
32643263
if test "x$EMSCRIPTEN" != "x"; then :
32653264

32663265
enable_asm="no"
3267-
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: compiling to javascript - asm implementations disabled" >&5
3268-
$as_echo "$as_me: WARNING: compiling to javascript - asm implementations disabled" >&2;}
3266+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: compiling to JavaScript - asm implementations disabled" >&5
3267+
$as_echo "$as_me: WARNING: compiling to JavaScript - asm implementations disabled" >&2;}
3268+
3269+
fi
3270+
if test "$host_os" = "nacl" -o "$host_os" = "pnacl"; then :
3271+
3272+
enable_asm="no"
3273+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: compiling to Native Client - asm implementations disabled" >&5
3274+
$as_echo "$as_me: WARNING: compiling to Native Client - asm implementations disabled" >&2;}
32693275

32703276
fi
32713277

src/libsodium/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ host_triplet = @host@
9797
@EMSCRIPTEN_FALSE@@NATIVECLIENT_TRUE@ randombytes/nativeclient/randombytes_nativeclient.c
9898

9999
@EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@am__append_3 = \
100-
@EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@ randombytes/sysrandom/randombytes_sysrandom.c
100+
@EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@ randombytes/sysrandom/randombytes_sysrandom.c
101101

102102
@HAVE_TI_MODE_TRUE@am__append_4 = \
103103
@HAVE_TI_MODE_TRUE@ crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c \

0 commit comments

Comments
 (0)