From 3d95da3da33d9b3c8c40e8250347301efa76a539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Wed, 5 Oct 2022 14:21:46 +0800 Subject: Drop support for WASM for now --- configure.ac | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 9855fdf..cf39de2 100644 --- a/configure.ac +++ b/configure.ac @@ -3,19 +3,12 @@ AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_PROG_CC AM_PROG_AR LT_INIT -PKG_CHECK_MODULES([JSON], [json-c]) +PKG_CHECK_MODULES([DEPS], [libcurl json-c]) AC_CANONICAL_HOST case $host in *arm*apple-darwin1* ) ios=true;; *) ios=false;; esac AM_CONDITIONAL([IOS], [test "x$ios" = xtrue]) -case $host_cpu in - *wasm* ) wasm=true;; - *) wasm=false;; -esac -AM_CONDITIONAL([WASM], [test "x$wasm" = xtrue]) -AS_IF([test "x$wasm" != xtrue], - [PKG_CHECK_MODULES([CURL], [libcurl])]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT -- cgit v1.2.3