Commit be75acdf authored by Luca Barbato's avatar Luca Barbato Committed by Rafaël Carré

dolt: support nacl and silent-rules on fallback

nacl doesn't use pic as does mingw.
Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 9b2ae59f
...@@ -29,7 +29,7 @@ case $host in ...@@ -29,7 +29,7 @@ case $host in
i?86-apple-darwin*) i?86-apple-darwin*)
pic_options='-fno-common' pic_options='-fno-common'
;; ;;
*mingw*) *mingw*|*nacl*)
pic_options='' pic_options=''
;; ;;
*) *)
...@@ -38,8 +38,9 @@ i?86-apple-darwin*) ...@@ -38,8 +38,9 @@ i?86-apple-darwin*)
esac esac
if test x$dolt_supported = xno ; then if test x$dolt_supported = xno ; then
AC_MSG_RESULT([no, falling back to libtool]) AC_MSG_RESULT([no, falling back to libtool])
LTCOMPILE='$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(COMPILE)' LTCOMPILE='$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(COMPILE)'
LTCXXCOMPILE='$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXXCOMPILE)' LTCXXCOMPILE='$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXXCOMPILE)'
m4_pattern_allow([AM_V_lt])
else else
AC_MSG_RESULT([yes, replacing libtool]) AC_MSG_RESULT([yes, replacing libtool])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment