]> Git Repo - VerusCoin.git/commitdiff
build: fix build weirdness after 54372482.
authorCory Fields <[email protected]>
Mon, 23 Jun 2014 18:04:24 +0000 (14:04 -0400)
committerCory Fields <[email protected]>
Mon, 23 Jun 2014 18:04:38 +0000 (14:04 -0400)
bitcoin-config.h moved, but the old file is likely to still exist when
reconfiguring or switching branches. This would've caused files to not rebuild
correctly, and other strange problems.

Make the path explicit so that the old one cannot be found.

Core libs use config/bitcoin-config.h.

Libs (like crypto) which don't want access to bitcoin's headers continue
to use -Iconfig and #include bitcoin-config.h.

17 files changed:
src/Makefile.am
src/clientversion.h
src/compat/glibc_compat.cpp
src/compat/glibc_sanity.cpp
src/init.cpp
src/main.h
src/net.cpp
src/netbase.h
src/qt/addressbookpage.cpp
src/qt/bitcoin.cpp
src/qt/bitcoingui.h
src/qt/notificator.h
src/qt/optionsdialog.cpp
src/qt/optionsmodel.cpp
src/qt/receiverequestdialog.cpp
src/qt/test/test_main.cpp
src/util.h

index 3948ca078089f5ab26d69ac953b11e3203779226..5ecded442c15d349817ec5d697d833abfbf56efd 100644 (file)
@@ -18,7 +18,7 @@ $(LIBLEVELDB) $(LIBMEMENV):
 endif
 
 BITCOIN_CONFIG_INCLUDES=-I$(builddir)/config
-BITCOIN_INCLUDES=-I$(builddir) -I$(builddir)/obj $(BITCOIN_CONFIG_INCLUDES) $(BOOST_CPPFLAGS) $(LEVELDB_CPPFLAGS)
+BITCOIN_INCLUDES=-I$(builddir) -I$(builddir)/obj $(BOOST_CPPFLAGS) $(LEVELDB_CPPFLAGS)
 
 noinst_LIBRARIES = \
   libbitcoin_server.a \
index 29b4aa37642c8279e302f83302339198b2f7e61f..a30bbff06b11f0733e2f367e4fe085a3862f6d81 100644 (file)
@@ -2,7 +2,7 @@
 #define CLIENTVERSION_H
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #else
 //
 // client versioning and copyright year
index bb870c01f8b3b5d98e67a3f57dabd45c646bcc0f..22f82e4259b9473fc2da2ea1222e9623bc8debd7 100644 (file)
@@ -3,7 +3,7 @@
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include <cstddef>
index 6e5bae8a48f15996af87801d4930d651ec3b0d2b..d93602e0fe07c0bc65469f99ad06099494759a7c 100644 (file)
@@ -3,7 +3,7 @@
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include <cstddef>
index 12d2d1bb4428e7596b2b490b355cb4ed1761d499..ff7a9011a527a62fa97269e807e2ad4a1baab4a3 100644 (file)
@@ -4,7 +4,7 @@
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "init.h"
index 7071f0094ffa72dd261b67f0536be26203246261..27041a0026bd665e6b5963eb3d77a43b7b29e525 100644 (file)
@@ -7,7 +7,7 @@
 #define BITCOIN_MAIN_H
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "chainparams.h"
index 71e3e57fa74611b4b290175a5dc77f466996122c..811df43334883922e3d10ce1ce420cee4ae1f2d0 100644 (file)
@@ -4,7 +4,7 @@
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "net.h"
index 23cfb1f158568acca413dedea0da6cab1e6294b9..40a3d2567651acf154b1630a48aad303c2dc3abd 100644 (file)
@@ -6,7 +6,7 @@
 #define BITCOIN_NETBASE_H
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "compat.h"
index 2dc56a510768650861a6f966432fe284a6cd113f..5df8f197291d9f656205c600eee664a0e77261c6 100644 (file)
@@ -3,7 +3,7 @@
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "addressbookpage.h"
index 387f6ede4be85e7cedbb3b87aa577d348ec37ca7..76dddb103cb4eb9bbf6f64f5fdc91216506251f0 100644 (file)
@@ -3,7 +3,7 @@
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "bitcoingui.h"
index 275fa35f3942212f24e049b0ef5d5089f5c058f0..e7a842df9976e88644f2c8a4ea4e2e7ddd6d92f2 100644 (file)
@@ -6,7 +6,7 @@
 #define BITCOINGUI_H
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include <QMainWindow>
index abab986992a6042f9b1a3a6696663abc1565157c..3395e6435098f0d97d18047e369cd2703852ded2 100644 (file)
@@ -6,7 +6,7 @@
 #define NOTIFICATOR_H
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include <QIcon>
index abfd4123e0f549aafc956403bbb038be8697c878..12d54dff6450f73f40b9d3eaecedcc5bde38252f 100644 (file)
@@ -3,7 +3,7 @@
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "optionsdialog.h"
index 4dafd9d2afabd7799fe30f870730a5cd37ce402e..6d985abaf8ea24c629b4e0b0d982a6ecdf78e981 100644 (file)
@@ -3,7 +3,7 @@
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "optionsmodel.h"
index d8dad15c0d5044547367f83dfcada0ba5ba1dcf3..cc2f00916f2bb966272b03ac5dde0838ff51e3a7 100644 (file)
@@ -22,7 +22,7 @@
 #endif
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h" /* for USE_QRCODE */
+#include "config/bitcoin-config.h" /* for USE_QRCODE */
 #endif
 
 #ifdef USE_QRCODE
index 220da28cfef3b74ba87ddc482149910db9d73026..03a2381c0665f6f17c1859f6e634855941f86298 100644 (file)
@@ -1,5 +1,5 @@
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #ifdef ENABLE_WALLET
index da1810a3d35c145b276fa899f30c91f153a01aa4..5eb6f0382635bebb350ff1cf2e38dc6175b78a21 100644 (file)
@@ -7,7 +7,7 @@
 #define BITCOIN_UTIL_H
 
 #if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
 #endif
 
 #include "compat.h"
This page took 0.066755 seconds and 4 git commands to generate.