forked from ElementsProject/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add warnings for autogen.sh. Fix AC_CONFIG_SRCDIR.
- Loading branch information
randy-waterhouse
authored and
kiwigb
committed
Sep 16, 2014
1 parent
6fc1dc1
commit e543811
Showing
2 changed files
with
3 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ define(_CLIENT_VERSION_BUILD, 0) | |
define(_CLIENT_VERSION_IS_RELEASE, false) | ||
define(_COPYRIGHT_YEAR, 2014) | ||
AC_INIT([Bitcoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[[email protected]],[bitcoin]) | ||
AC_CONFIG_SRCDIR([src/main.cpp]) | ||
AC_CONFIG_HEADERS([src/config/bitcoin-config.h]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AC_CONFIG_MACRO_DIR([build-aux/m4]) | ||
LT_INIT([disable-shared]) | ||
|
@@ -140,10 +142,6 @@ AC_ARG_ENABLE([glibc-back-compat], | |
|
||
AC_ARG_WITH([protoc-bindir],[AS_HELP_STRING([--with-protoc-bindir=BIN_DIR],[specify protoc bin path])], [protoc_bin_path=$withval], []) | ||
|
||
|
||
AC_CONFIG_SRCDIR([src]) | ||
AC_CONFIG_HEADERS([src/config/bitcoin-config.h]) | ||
|
||
# Enable debug | ||
AC_ARG_ENABLE([debug], | ||
[AS_HELP_STRING([--enable-debug], | ||
|