[10:56:04] @aguycalled yeap ;) [10:56:22] https://cdn.discordapp.com/attachments/416000318149754881/463296871289323520/unknown.png [10:56:40] Well it appears to work [10:56:59] I'm going to clone down the branch again and start compiling from scratch to confirm [10:57:06] I'll also have a look at travis to see why it's breaking [10:57:38] I'm going to be on the train/bus for a lot of today so might be a bit sketchy as to if I can manage it before I'm back home [11:09:44] great [11:13:16] For the QT wallet I just need to compile from QT Creator right [13:10:59] nope, the binary its on src/qt/navcoin-qt [13:22:25] ah ok [13:23:51] doesnt seem like it built [13:24:05] I just finished building the wallet from my branch after cloning ti [13:25:52] when you do ./configure you should see if it found the qt libs [13:26:05] and a check to know if navcoin-qt will be built [13:30:39] bash ➜ navcoin-core git:(osx-build-patches) ✗ ./configure | grep qt checking for moc-qt5... no checking for moc... /usr/local/Cellar/qt/5.11.1/bin/moc checking for uic-qt5... no checking for uic... /usr/local/Cellar/qt/5.11.1/bin/uic checking for rcc-qt5... no checking for rcc... /usr/local/Cellar/qt/5.11.1/bin/rcc checking for lrelease-qt5... no checking for lrelease... /usr/local/Cellar/qt/5.11.1/bin/lrelease checking for [13:30:40] lupdate-qt5... no checking for lupdate... /usr/local/Cellar/qt/5.11.1/bin/lupdate configure: WARNING: libprotobuf not found; navcoin-qt frontend will not be built configure: WARNING: libzmq version 4.x or greater not found, disabling configure: WARNING: openssl/ec.h: accepted by the compiler, rejected by the preprocessor! configure: WARNING: openssl/ec.h: proceeding with the compiler's result config.status: creating share/qt/Info.plist [13:31:26] looks like I don't have QT installed haha [13:31:31] or the libs at least [13:32:32] https://github.com/NAVCoin/navcoin-core/blob/master/depends/README.md [13:32:42] your configure is missing the —prefix part [13:33:07] the readme for osx builds doesn't mention that [13:33:10] but I'll add it [13:33:56] ./configure --prefix=pwd/depends/x86_64-apple-darwin11 [13:33:58] so like this [13:34:54] ./configure --prefix=${pwd}/depends/x86_64-apple-darwin11 needs to be this actually [13:37:06] Running make after that doesn't seem to do anything [13:46:46] what does configure says [13:47:35] let me grep it again [13:47:37] 1 min [13:48:00] I should just dump it into a logfile actually [13:48:02] o well [13:48:14] configure: WARNING: libprotobuf not found; navcoin-qt frontend will not be built [13:48:50] interesting because I installed it [13:48:55] brew install automake berkeley-db4 libtool boost --c++11 miniupnpc openssl pkg-config homebrew/core/protobuf260 --c++11 qt5 libevent curl [13:49:00] But it did give a warning [13:49:57] Warning: Use protobuf@2.6 instead of deprecated protobuf260 [13:50:41] I'll reinstall it using brews recommendation [13:55:15] didn't help [13:55:24] I'm going to head out so I'll deal with this later :/ [13:58:50] why do you use ${pwd} [13:58:51] ? [14:31:51] Because pwd didn't work [14:34:46] bash treated it as a string [14:34:48] not a command [14:35:08] configure: error: expected an absolute directory name for --prefix: pwd/depends/x86_64-apple-darwin11 [14:36:51] I'll run it with a proper absolute path [14:38:26] didn't seem to change anything [14:38:32] make didn't crreate the QT stuff [17:39:01] you need to ` [17:39:11] `pwd` [17:39:33] or just write whatever ur working directory is [17:39:39] like /Users/matt/navcoin-core [17:40:06] does not detect qt like this?