Skip to content

Commit

Permalink
code
Browse files Browse the repository at this point in the history
  • Loading branch information
hewm2008 committed Oct 16, 2020
1 parent 3ad5732 commit 21e5707
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Binary file removed FxTools
Binary file not shown.
20 changes: 19 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
## -------------------- ##
## M4sh Initialization. ##
## -------------------- ##

chmod 755 bin/*
# Be more Bourne compatible
DUALCASE=1; export DUALCASE # for MKS sh
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
Expand Down Expand Up @@ -7137,3 +7137,21 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
sed 's#\$(AUTOCONF)#\$(AUTOCONF) \&\& echo chmod 755 bin/\\\* \>\> \$(top_srcdir)/configure #' Makefile > Makefile.tmp
mv Makefile.tmp Makefile
chmod 755 bin/*
echo Detection system platform is
if [ "$(uname)" == "Darwin" ];then
echo MacOS
sed 's/libboost_thread/libboost_thread-mt/g' Makefile > Makefile.tmp
mv Makefile.tmp Makefile
# Mac OS
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ];then
echo Linux
# GNU/Linux
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ];then
echo windows sys no run this
# Windows NT
fi

0 comments on commit 21e5707

Please sign in to comment.