diff options
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | configure.ac | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am index 10234ad..b72097d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,9 +5,6 @@ libproductviewer_la_CPPFLAGS = -I${prefix}/System/Library/Frameworks/OpenGLES.fr else libproductviewer_la_CPPFLAGS = -I${includedir} endif -if WASM -libproductviewer_la_LDFLAGS = -static -endif if IOS libproductviewer_la_LDFLAGS = -static endif diff --git a/configure.ac b/configure.ac index 00234a5..d9f3082 100644 --- a/configure.ac +++ b/configure.ac @@ -16,11 +16,6 @@ case $host in *) 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]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT |