Received: from sog-mx-4.v43.ch3.sourceforge.com ([172.29.43.194] helo=mx.sourceforge.net) by sfs-ml-3.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1RszYI-0000Lt-V1 for bitcoin-development@lists.sourceforge.net; Thu, 02 Feb 2012 16:30:26 +0000 X-ACL-Warn: Received: from zinan.dashjr.org ([173.242.112.54]) by sog-mx-4.v43.ch3.sourceforge.com with esmtp (Exim 4.76) id 1RszYD-0000vy-5w for bitcoin-development@lists.sourceforge.net; Thu, 02 Feb 2012 16:30:26 +0000 Received: from ishibashi.localnet (fl-184-4-164-217.dhcp.embarqhsd.net [184.4.164.217]) (Authenticated sender: luke-jr) by zinan.dashjr.org (Postfix) with ESMTPSA id AAECD560764; Thu, 2 Feb 2012 16:30:15 +0000 (UTC) From: "Luke-Jr" To: Michael =?iso-8859-1?q?Gr=F8nager?= Date: Thu, 2 Feb 2012 11:30:11 -0500 User-Agent: KMail/1.13.7 (Linux/3.1.5-gentoo; KDE/4.7.4; x86_64; ; ) References: <31B4BA03-FE8A-4730-9EFD-9850BC894C3B@ceptacle.com> In-Reply-To: <31B4BA03-FE8A-4730-9EFD-9850BC894C3B@ceptacle.com> X-PGP-Key-Fingerprint: CE5A D56A 36CC 69FA E7D2 3558 665F C11D D53E 9583 X-PGP-Key-ID: 665FC11DD53E9583 X-PGP-Keyserver: x-hkp://subkeys.pgp.net MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <201202021130.12213.luke@dashjr.org> X-Spam-Score: -0.0 (/) X-Spam-Report: Spam Filtering performed by mx.sourceforge.net. See http://spamassassin.org/tag/ for more details. -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay domain X-Headers-End: 1RszYD-0000vy-5w Cc: bitcoin-development@lists.sourceforge.net Subject: Re: [Bitcoin-development] libcoin (HEAD) now supports boost < 1.47 - please test X-BeenThere: bitcoin-development@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 16:30:27 -0000 On Thursday, February 02, 2012 8:46:05 AM Michael Gr=F8nager wrote: > Please test and feed back. I found the problem: you are trying to use static libraries. Best practices= =20 are to use shared libraries (except for specific scenarios like universal=20 "Linux" binaries) and most distros do not have static libraries installed b= y=20 default. The coinQt stuff was also creating a problem. I am able to build with this patch: diff --git a/CMakeLists.txt b/CMakeLists.txt index dea37c4..b876881 100644 =2D-- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -352,7 +352,7 @@ ENDIF(BDB_FOUND) #Note: We need as a minimum Boost 1.47 to support the signal_set used in=20 Server. A backup signal_set has been created, though. SET(Boost_NO_BOOST_CMAKE ON) SET(Boost_ADDITIONAL_VERSIONS "1.47" "1.47.0" "1.48" "1.48.0") =2DSET(Boost_USE_STATIC_LIBS ON) +#SET(Boost_USE_STATIC_LIBS ON) SET(Boost_USE_MULTITHREADED ON) SET(Boost_USE_STATIC_RUNTIME OFF) =20 @@ -804,9 +804,9 @@ SET(PKGCONFIG_FILES # libcoin-coinMine ) =20 =2DIF(QT4_FOUND) =2D SET(PKGCONFIG_FILES ${PKGCONFIG_FILES} libcoin-coinQt) =2DENDIF(QT4_FOUND) +#IF(QT4_FOUND) +# SET(PKGCONFIG_FILES ${PKGCONFIG_FILES} libcoin-coinQt) +#ENDIF(QT4_FOUND) =20 FOREACH(PKGCONFIG_FILE ${PKGCONFIG_FILES}) CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/packaging/pkgconfig/${PKGCONFIG_FIL= E}.pc.in diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0011392..67044d1 100644 =2D-- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -19,9 +19,9 @@ FOREACH( mylibfolder =20 ENDFOREACH() =20 =2DIF (QT4_FOUND AND NOT ANDROID) =2D ADD_SUBDIRECTORY(coinQt) =2DENDIF() +#IF (QT4_FOUND AND NOT ANDROID) +# ADD_SUBDIRECTORY(coinQt) +#ENDIF() =20 IF(ANDROID) configure_file("${LIBCOIN_ANDROID_TEMPLATES}/Android.mk.src.in"=20 "${CMAKE_CURRENT_BINARY_DIR}/Android.mk")