diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2013-06-28 09:14:44 -0500 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2013-06-28 09:14:44 -0500 |
commit | d5a1226f79f030ed7d4443d3952c8e1e3cb27457 (patch) | |
tree | a234fcbb0ac2e5d82e0cf41f8597967c2816a990 /build-gnunet.sh | |
parent | 23c79bd7ca9f2d0b361038347b5a10f27ac284cc (diff) |
Disable testing due to missing dependencies.
Emscripten doesn't have getaddrinfo. I hit this function in some
testing code and disabled it and everything depending on it.
Diffstat (limited to 'build-gnunet.sh')
-rwxr-xr-x | build-gnunet.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-gnunet.sh b/build-gnunet.sh index a9c7ced..9ed92db 100755 --- a/build-gnunet.sh +++ b/build-gnunet.sh @@ -154,7 +154,8 @@ EMCONFIGURE_JS=1 emconfigure ./configure --prefix="$SYSROOT" \ --with-extractor="$SYSROOT" \ --with-included-ltdl \ --without-libcurl \ - --without-libidn || + --without-libidn \ + --disable-testing || die "Unable to configure GNUnet" emmake make || die "Unable to make GNUnet" |