Skip to content

Commit

Permalink
Fix version, disable {utils,libs} by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
philmb3487 committed Nov 1, 2016
1 parent 67b7b39 commit a68455f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60]) AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0) define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 13) define(_CLIENT_VERSION_MINOR, 1)
define(_CLIENT_VERSION_REVISION, 99) define(_CLIENT_VERSION_REVISION, 99)
define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, false) define(_CLIENT_VERSION_IS_RELEASE, false)
Expand Down Expand Up @@ -218,13 +218,13 @@ AC_ARG_WITH([utils],
[AS_HELP_STRING([--with-utils], [AS_HELP_STRING([--with-utils],
[build bitcoin-cli bitcoin-tx (default=no)])], [build bitcoin-cli bitcoin-tx (default=no)])],
[build_bitcoin_utils=$withval], [build_bitcoin_utils=$withval],
[build_bitcoin_utils=yes]) [build_bitcoin_utils=no])


AC_ARG_WITH([libs], AC_ARG_WITH([libs],
[AS_HELP_STRING([--with-libs], [AS_HELP_STRING([--with-libs],
[build libraries (default=no)])], [build libraries (default=no)])],
[build_bitcoin_libs=$withval], [build_bitcoin_libs=$withval],
[build_bitcoin_libs=yes]) [build_bitcoin_libs=no])


AC_ARG_WITH([daemon], AC_ARG_WITH([daemon],
[AS_HELP_STRING([--with-daemon], [AS_HELP_STRING([--with-daemon],
Expand Down
6 changes: 3 additions & 3 deletions share/qt/Info.plist
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<string>APPL</string> <string>APPL</string>


<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>0.13.99, Copyright © 2009-2016 The Bitcoin Core and ClubCoin developers</string> <string>1.1.99, Copyright © 2009-2016 The Bitcoin Core and ClubCoin developers</string>


<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.13.99</string> <string>1.1.99</string>


<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.13.99</string> <string>1.1.99</string>


<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
Expand Down

0 comments on commit a68455f

Please sign in to comment.