Post
Topic
Board Announcements (Altcoins)
Re: [ANN] DIMEcoin l community take over l updated everyday
by
rikkejohn
on 05/06/2014, 23:42:54 UTC
it will be nice see mac os x wallet too( but i do not know how to compile mac wallet(
+1 I am sitting on Mac too , and do not know how to compile too Tongue use cryptsy as a multi wallet Smiley

There was a Mac wallet, but I have no idea what happened to it.

Dime is not easy to compile because the DB is binary Bitcoin, or something.

I managed it in Linux but it took a while to get there.

If anyone wants the source I used leave me a PM and I'll upload it. The guy that made the blockchain made changes, and then I added a build_config.mk to the directory and to the Build folder to make it work (maybe neither did do anything, but it compiled)

I downloaded the deps for Ubuntu (not sure what command you use on a Mac).

I put the dimecoin-master on my desktop and opened it:

CD Desktop/dimecoin-master

sudo apt-get install libqtgui4

sudo apt-get install build-essential libboost-all-dev libcurl4-openssl-dev libdb5.1-dev libdb5.1++-dev qt-sdk make

after that, I compiled with

qmake -qt=qt4 "USE_UPNP=-"
make
_______

After that, I grabbed the conf settings, and made a file with the QT and dimecoin.conf

It didn't synch at first, so I kickstarted it with

addnode dime.altcointech.net onetry

Then it was fine

-_______

Don't knnow if this works for Mac (from the old wallet, which is apparently not working)

Execute the following commands in a terminal to get the dependencies using MacPorts:

::

   sudo port selfupdate
   sudo port install boost db48 miniupnpc

- Execute the following commands in a terminal to get the dependencies using HomeBrew:

::

   brew update
   brew install boost miniupnpc openssl berkeley-db4

- If using HomeBrew,  edit `bitcoin-qt.pro` to account for library location differences. There's a diff in `contrib/homebrew/bitcoin-qt-pro.patch` that shows what you need to change, or you can just patch by doing

        patch -p1 < contrib/homebrew/bitcoin.qt.pro.patch

- Open the bitcoin-qt.pro file in Qt Creator and build as normal (cmd-B)

.. _`Qt Mac OS X SDK`: http://qt-project.org/downloads/
.. _`MacPorts`: http://www.macports.org/install.php
.. _`HomeBrew`: http://mxcl.github.io/homebrew/