@@ -555,8 +555,8 @@ case $host in
555
555
dnl It's safe to add these paths even if the functionality is disabled by
556
556
dnl the user (--without-wallet or --without-gui for example).
557
557
558
- bdb_prefix=`$ BREW --prefix berkeley-db4 2>/dev/null`
559
- qt5_prefix=`$ BREW --prefix qt5 2>/dev/null`
558
+ bdb_prefix=$($ BREW --prefix berkeley-db4 2>/dev/null)
559
+ qt5_prefix=$($ BREW --prefix qt5 2>/dev/null)
560
560
if test x$bdb_prefix != x; then
561
561
CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include"
562
562
LIBS="$LIBS -L$bdb_prefix/lib"
@@ -987,7 +987,7 @@ AC_LINK_IFELSE(
987
987
[ [ #include <cstdlib> ] ] ,
988
988
[ [ int nErr = std::system(""); ] ]
989
989
) ] ,
990
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_STD__SYSTEM , 1 , Define to 1 if you have the ` std::system' function .) ] ,
990
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_STD__SYSTEM , 1 , Define to 1 if std::system is available .) ] ,
991
991
[ AC_MSG_RESULT ( no ) ]
992
992
)
993
993
@@ -997,11 +997,10 @@ AC_LINK_IFELSE(
997
997
[ [ ] ] ,
998
998
[ [ int nErr = ::_wsystem(""); ] ]
999
999
) ] ,
1000
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_WSYSTEM , 1 , Define to 1 if you have the ` ::wsystem' function .) ] ,
1000
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_WSYSTEM , 1 , Define to 1 if ::wsystem is available .) ] ,
1001
1001
[ AC_MSG_RESULT ( no ) ]
1002
1002
)
1003
1003
1004
- # Define to 1 if std::system or ::wsystem (Windows) is available
1005
1004
AC_DEFINE ( [ HAVE_SYSTEM] , [ HAVE_STD__SYSTEM || HAVE_WSYSTEM] , [ std::system or ::wsystem] )
1006
1005
1007
1006
LEVELDB_CPPFLAGS=
0 commit comments