Bitcoin Forum
April 25, 2024, 02:24:54 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: ZEITCOIN
https://zeit-coin.net
https://zeit-knights.slack.com
https://t.me/zeit_coin

Pages: « 1 ... 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 [95] 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 ... 861 »
  Print  
Author Topic: ★ ZEIT ★ [COMMUNITY & KNIGHTS] [ULTRA LOW INFLATION] [MICRO-PAYMENTS]  (Read 1009202 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (3 posts by 1+ user deleted.)
flipme
Hero Member
*****
Offline Offline

Activity: 2170
Merit: 640


Undeads.com - P2E Runner Game


View Profile
March 02, 2014, 01:53:31 PM
 #1881

NO. This version does not work.

It's impossible, why then 2 people confirmed? I posted 2 links, make sure you downloaded from latest link. There is DMG properly linked.


otool -L Zeitcoin-qt.app/Contents/MacOS/Zeitcoin-qt
Zeitcoin-qt.app/Contents/MacOS/Zeitcoin-qt:
   /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation (compatibility version 300.0.0, current version 945.18.0)
   /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices (compatibility version 1.0.0, current version 45.0.0)
   /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit (compatibility version 45.0.0, current version 1187.40.0)
   /usr/lib/libssl.0.9.8.dylib (compatibility version 0.9.8, current version 47.2.0)
   /usr/lib/libcrypto.0.9.8.dylib (compatibility version 0.9.8, current version 47.2.0)
   @executable_path/../Frameworks/libdb_cxx-4.8.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/libboost_system-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/libboost_filesystem-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/libboost_program_options-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/libboost_thread-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/QtGui.framework/Versions/4/QtGui (compatibility version 4.8.0, current version 4.8.5)
   @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore (compatibility version 4.8.0, current version 4.8.5)
   /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 56.0.0)
   /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0)
   /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1669.0.0)
   /usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 228.0.0)
   /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 744.19.0)
   /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices (compatibility version 1.0.0, current version 57.0.0)

Well, the wallet works, but only if you have the required libraries set up in /usr/lib with HOMEBREW.
MacPorts puts all that into its funky /opt structure.
You have to copy and reference them in the app bundle to make them available in the runtime environment.

Gonna fix that

Try this on your app, you should have a working bundle then

#!/bin/bash
mkdir Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /Library/Frameworks/QtCore.framework Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /Library/Frameworks/QtGui.framework Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /usr/local/lib/libminiupnpc.9.dylib Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /usr/local/opt/openssl/lib/libssl.1.0.0.dylib Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /usr/local/opt/berkeley-db4/lib/libdb_cxx-4.8.dylib Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_system-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_filesystem-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_program_options-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_thread-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks
chmod -R +w Zeitcoin-Qt.app/Contents/Frameworks
install_name_tool -id @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore Zeitcoin-Qt.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore
install_name_tool -id @executable_path/../Frameworks/QtGui.framework/Versions/4/QtGui Zeitcoin-Qt.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui
install_name_tool -id @executable_path/../Frameworks/libminiupnpc.9.dylib Zeitcoin-Qt.app/Contents/Frameworks/libminiupnpc.9.dylib
install_name_tool -id @executable_path/../Frameworks/libssl.1.0.0.dylib Zeitcoin-Qt.app/Contents/Frameworks/libssl.1.0.0.dylib
install_name_tool -id @executable_path/../Frameworks/libcrypto.1.0.0.dylib Zeitcoin-Qt.app/Contents/Frameworks/libcrypto.1.0.0.dylib
install_name_tool -id @executable_path/../Frameworks/libdb_cxx-4.8.dylib Zeitcoin-Qt.app/Contents/Frameworks/libdb_cxx-4.8.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_system-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks/libboost_system-mt.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_filesystem-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks/libboost_filesystem-mt.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_program_options-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks/libboost_program_options-mt.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_thread-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks/libboost_thread-mt.dylib
install_name_tool -change QtCore.framework/Versions/4/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change QtGui.framework/Versions/4/QtGui @executable_path/../Frameworks/QtGui.framework/Versions/4/QtGui Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change QtCore.framework/Versions/4/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore Zeitcoin-Qt.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui
install_name_tool -change /usr/local/lib/libminiupnpc.9.dylib @executable_path/../Frameworks/libminiupnpc.9.dylib Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change /usr/local/opt/openssl/lib/libssl.1.0.0.dylib @executable_path/../Frameworks/libssl.1.0.0.dylib Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib @executable_path/../Frameworks/libcrypto.1.0.0.dylib Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib @executable_path/../Frameworks/libcrypto.1.0.0.dylib Zeitcoin-Qt.app/Contents/Frameworks/libssl.1.0.0.dylib
install_name_tool -change /usr/local/opt/berkeley-db4/lib/libdb_cxx-4.8.dylib @executable_path/../Frameworks/libdb_cxx-4.8.dylib Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change /usr/local/lib/libboost_system-mt.dylib @executable_path/../Frameworks/libboost_system-mt.dylib Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change /usr/local/lib/libboost_system-mt.dylib @executable_path/../Frameworks/libboost_system-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks/libboost_filesystem-mt.dylib
install_name_tool -change /usr/local/lib/libboost_system-mt.dylib @executable_path/../Frameworks/libboost_system-mt.dylib Zeitcoin-Qt.app/Contents/Frameworks/libboost_thread-mt.dylib
install_name_tool -change /usr/local/lib/libboost_filesystem-mt.dylib @executable_path/../Frameworks/libboost_filesystem-mt.dylib Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change /usr/local/lib/libboost_program_options-mt.dylib @executable_path/../Frameworks/libboost_program_options-mt.dylib Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt
install_name_tool -change /usr/local/lib/libboost_thread-mt.dylib @executable_path/../Frameworks/libboost_thread-mt.dylib Zeitcoin-Qt.app/Contents/MacOs/Zeitcoin-Qt

💀|.
   ▄▄▄▄█▄▄              ▄▄█▀▀  ▄▄▄▄▄█      ▄▄    ▄█▄
  ▀▀▀████████▄  ▄██    ███▀ ▄████▀▀▀     ▄███   ▄███
    ███▀▄▄███▀ ███▀   ███▀  ▀█████▄     ▄███   ████▄
  ▄███████▀   ███   ▄███       ▀▀████▄▄███████████▀
▀▀███▀▀███    ███ ▄████       ▄▄████▀▀████   ▄███
 ██▀    ▀██▄  ██████▀▀   ▄▄█████▀▀   ███▀   ▄██▀
          ▀▀█  ▀▀▀▀ ▄██████▀▀       ███▀    █▀
                                      ▀
.
.PLAY2EARN.RUNNER.GAME.
||VIRAL
REF.SYSTEM
GAME
|
████████████████████████████
████████████████████████████
████████████████████████████
██████ ▄▀██████████  ███████
███████▄▀▄▀██████  █████████
█████████▄▀▄▀██  ███████████
███████████▄▀▄ █████████████
███████████  ▄▀▄▀███████████
█████████  ████▄▀▄▀█████████
███████  ████████▄▀ ████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████▀▀▄██████▄▀▀████████
███████  ▀        ▀  ███████
██████                ██████
█████▌   ███    ███   ▐█████
█████▌   ▀▀▀    ▀▀▀   ▐█████
██████                ██████
███████▄  ▀██████▀  ▄███████
████████████████████████████
████████████████████████████
████████████████████████████
1714055094
Hero Member
*
Offline Offline

Posts: 1714055094

View Profile Personal Message (Offline)

Ignore
1714055094
Reply with quote  #2

1714055094
Report to moderator
1714055094
Hero Member
*
Offline Offline

Posts: 1714055094

View Profile Personal Message (Offline)

Ignore
1714055094
Reply with quote  #2

1714055094
Report to moderator
"Bitcoin: the cutting edge of begging technology." -- Giraffe.BTC
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714055094
Hero Member
*
Offline Offline

Posts: 1714055094

View Profile Personal Message (Offline)

Ignore
1714055094
Reply with quote  #2

1714055094
Report to moderator
1714055094
Hero Member
*
Offline Offline

Posts: 1714055094

View Profile Personal Message (Offline)

Ignore
1714055094
Reply with quote  #2

1714055094
Report to moderator
1714055094
Hero Member
*
Offline Offline

Posts: 1714055094

View Profile Personal Message (Offline)

Ignore
1714055094
Reply with quote  #2

1714055094
Report to moderator
BiffyMcBifferstein
Full Member
***
Offline Offline

Activity: 178
Merit: 100


View Profile
March 02, 2014, 01:56:37 PM
 #1882

Finally made OSX Wallet DMG

https://mega.co.nz/#!4EFhBQjD!ViCbOJcAD8Y2yXBTPc_00FWGwpaNol2M45KnqoCPeec

Confirmed, it works on 10.8 and 10.9. Just install and run.

Create config file: nano ~/Library/Application\ Support/Zeitcoin/zeitcoin.conf (directory with your wallet)

And now it's time to add some fucking nodes:

addnode=54.213.62.154
addnode=54.213.81.163
addnode=54.213.195.38
addnode=54.213.243.144
addnode=54.213.174.35
addnode=5.39.68.168:44845
addnode=64.58.130.181:44845
addnode=184.82.131.91:44845
addnode=217.198.117.29:44845
addnode=185.38.248.99:44845
addnode=162.219.6.82:44845
addnode=31.52.214.77:44845
addnode=120.4.238.127:44845
addnode=74.215.82.64:44845
addnode=70.53.108.157:44845
addnode=115.28.226.232:44845
addnode=107.170.22.138:44845

Relax and make me rich MqJHGoiYxwdSQbvErPWH5zTkiRgvDiBTmX

PS: If you are on windows, you can create zeitcoin.conf in your wallet directory.

Ok, this still does not work.  I am on 10.9.2 and it does not work.  It immediately crashes.  This is beyond comical.  How is it I can go and download any other wallet right now, for a coin I am not mining, and those wallets work?

Can the developer(s) please make sure they aren't compiling for 10.6, or 32-bit only, or PPC Tongue, older CPUs (like Core 2)?  If I understood git enough and how to pull and make changes, I'd attempt this myself because I cannot do worse than everyone who has tried to date.

I appreciate all efforts from the community to try and help, especially (r3animation), but nothing has worked.

I'm running a 2010, dual-Core i7 Macbook Pro with 10.9.2, if that matters at this point (and it shouldn't considering every other wallet in existence works).


Zeitcoin - Mm3rSgi34U5RMnrdusjWeK8UuWNmJu1ogq | Bitcoin - 16bpb3FBFbSvfsvXKabf7C4Zwwgwpkc4vn | Litecoin - LKJhuU68SdMPnRC1EAFimS7KNs4dXs3yrf | Dogecoin - DDeez8PhqRJkGVsu1pTF9SZEWXz3ySke56
MrKalipso
Member
**
Offline Offline

Activity: 114
Merit: 10


View Profile
March 02, 2014, 01:58:48 PM
 #1883

hi! How can i register a wallet without mac os,linyx,windows.i have onli ipad with this shit ios( is online wallet ready?

Just send to exchanges and fucking dump it!

how can i send it if i don't have it?
sammy007
Legendary
*
Offline Offline

Activity: 1904
Merit: 1003


View Profile
March 02, 2014, 01:58:53 PM
 #1884


Ok, this still does not work.  I am on 10.9.2 and it does not work.  It immediately crashes.  This is beyond comical.  How is it I can go and download any other wallet right now, for a coin I am not mining, and those wallets work?

Can the developer(s) please make sure they aren't compiling for 10.6, or 32-bit only, or PPC Tongue, older CPUs (like Core 2)?  If I understood git enough and how to pull and make changes, I'd attempt this myself because I cannot do worse than everyone who has tried to date.

I appreciate all efforts from the community to try and help, especially (r3animation), but nothing has worked.

I'm running a 2010, dual-Core i7 Macbook Pro with 10.9.2, if that matters at this point (and it shouldn't considering every other wallet in existence works).


Try this https://mega.co.nz/#!0QlFUBDY!YnluMFfIKDMU_bsyhebz8nUkPcapijHy9QTKw7a2Ry8

PS: I am not fucking developer.
sammy007
Legendary
*
Offline Offline

Activity: 1904
Merit: 1003


View Profile
March 02, 2014, 01:59:30 PM
 #1885

hi! How can i register a wallet without mac os,linyx,windows.i have onli ipad with this shit ios( is online wallet ready?

Just send to exchanges and fucking dump it!

how can i send it if i don't have it?

Transfer directly from pool to your addres @ exchange
MinermanNC
Legendary
*
Offline Offline

Activity: 2198
Merit: 1000



View Profile
March 02, 2014, 01:59:59 PM
 #1886

Zhit Coin it what we have here folks Sad time to move on to a another coin now.

*BTC: 1DiR25SPo84sThzTATr27EZEQZLt6hv6tG
Jeezy911
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
March 02, 2014, 02:02:29 PM
 #1887

Zhit Coin it what we have here folks Sad time to move on to a another coin now.
You don't dump POW/POS coins in the first week, have we not learned anything

Rent_a_Ray
Legendary
*
Offline Offline

Activity: 1311
Merit: 1036



View Profile
March 02, 2014, 02:03:46 PM
 #1888

Now, with latest:

Dyld Error Message:
  Library not loaded: /usr/lib/system/libdnsinfo.dylib
  Referenced from: /Users/Admin/Desktop/Zeitcoin-qt.app/Contents/Frameworks/libSystem.B.dylib
  Reason: image not found
BiffyMcBifferstein
Full Member
***
Offline Offline

Activity: 178
Merit: 100


View Profile
March 02, 2014, 02:04:08 PM
 #1889

NO. This version does not work.

Well, the wallet works, but only if you have the required libraries set up in /usr/lib with HOMEBREW.
MacPorts puts all that into its funky /opt structure.
You have to copy and reference them in the app bundle to make them available in the runtime environment.

Gonna fix that

Update

Try this https://mega.co.nz/#!0QlFUBDY!YnluMFfIKDMU_bsyhebz8nUkPcapijHy9QTKw7a2Ry8

I am wondering why Brew installs to /usr/ it should use /usr/local...

This version goes back to the ORIGINAL error of yesterday...

Zeitcoin-qt cannot be opened because of a problem

Check with the developer to make sure Zeitcoin-qt works with this version of OS X.  You may need to reinstall the application.  Be sure to install any available updates for the application and OS X.



Zeitcoin - Mm3rSgi34U5RMnrdusjWeK8UuWNmJu1ogq | Bitcoin - 16bpb3FBFbSvfsvXKabf7C4Zwwgwpkc4vn | Litecoin - LKJhuU68SdMPnRC1EAFimS7KNs4dXs3yrf | Dogecoin - DDeez8PhqRJkGVsu1pTF9SZEWXz3ySke56
MinermanNC
Legendary
*
Offline Offline

Activity: 2198
Merit: 1000



View Profile
March 02, 2014, 02:04:43 PM
 #1890

Zhit Coin it what we have here folks Sad time to move on to a another coin now.
You don't dump POW/POS coins in the first week, have we not learned anything

I'm just not feeling it with this one lol........this fell flat faster than MAX coin, and that's pretty bad lol

*BTC: 1DiR25SPo84sThzTATr27EZEQZLt6hv6tG
sammy007
Legendary
*
Offline Offline

Activity: 1904
Merit: 1003


View Profile
March 02, 2014, 02:05:29 PM
 #1891

Now, with latest:

Dyld Error Message:
  Library not loaded: /usr/lib/system/libdnsinfo.dylib
  Referenced from: /Users/Admin/Desktop/Zeitcoin-qt.app/Contents/Frameworks/libSystem.B.dylib
  Reason: image not found

I hate this OS.
hamiltino
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500


P2P The Planet!


View Profile
March 02, 2014, 02:11:37 PM
 #1892

Everyone get brainwashed by watching the zeitgesit movies so you can buy zeitcoins,

kthx.

stacking coin
BiffyMcBifferstein
Full Member
***
Offline Offline

Activity: 178
Merit: 100


View Profile
March 02, 2014, 02:13:07 PM
 #1893

Sammy, I never said you were the developer.  I am suggesting the actual developer is *sleeping* on this rather than just asking ANY OTHER COIN DEV what they did to get this working, because the others just simply work.  This dev probably checked the wrong box somewhere (or didn't check a box) when compiling, making this version for some version of the OS that doesn't exist anymore.

I can pick a coin at random, download the wallet, and it'll just work.  Hell, I waited a few days for Rubycoin to finish their wallet (just to deposit a handful of coins) and the wallet just works.  That suggests they tested it, made sure it worked, then released it to the public, without claiming "we don't know Mac..."  They released working wallets for Windows, Mac, Linux.

Zeitcoin - Mm3rSgi34U5RMnrdusjWeK8UuWNmJu1ogq | Bitcoin - 16bpb3FBFbSvfsvXKabf7C4Zwwgwpkc4vn | Litecoin - LKJhuU68SdMPnRC1EAFimS7KNs4dXs3yrf | Dogecoin - DDeez8PhqRJkGVsu1pTF9SZEWXz3ySke56
sammy007
Legendary
*
Offline Offline

Activity: 1904
Merit: 1003


View Profile
March 02, 2014, 02:14:37 PM
 #1894

Sammy, I never said you were the developer.  I am suggesting the actual developer is *sleeping* on this rather than just asking ANY OTHER COIN DEV what they did to get this working, because the others just simply work.  This dev probably checked the wrong box somewhere (or didn't check a box) when compiling, making this version for some version of the OS that doesn't exist anymore.

I can pick a coin at random, download the wallet, and it'll just work.  Hell, I waited a few days for Rubycoin to finish their wallet (just to deposit a handful of coins) and the wallet just works.  That suggests they tested it, made sure it worked, then released it to the public, without claiming "we don't know Mac..."  They released working wallets for Windows, Mac, Linux.


IIRC They don't have OSX. His OSX builds was 2 Mb. It's impossible, they was all linked to /opt/. My version linked, but not awesome linked.
Rocou
Legendary
*
Offline Offline

Activity: 3192
Merit: 1176


View Profile
March 02, 2014, 02:17:12 PM
 #1895


Try this https://mega.co.nz/#!0QlFUBDY!YnluMFfIKDMU_bsyhebz8nUkPcapijHy9QTKw7a2Ry8

No. it still does not work.
sammy007
Legendary
*
Offline Offline

Activity: 1904
Merit: 1003


View Profile
March 02, 2014, 02:19:09 PM
 #1896

NO. This version does not work.

It's impossible, why then 2 people confirmed? I posted 2 links, make sure you downloaded from latest link. There is DMG properly linked.


otool -L Zeitcoin-qt.app/Contents/MacOS/Zeitcoin-qt
Zeitcoin-qt.app/Contents/MacOS/Zeitcoin-qt:
   /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation (compatibility version 300.0.0, current version 945.18.0)
   /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices (compatibility version 1.0.0, current version 45.0.0)
   /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit (compatibility version 45.0.0, current version 1187.40.0)
   /usr/lib/libssl.0.9.8.dylib (compatibility version 0.9.8, current version 47.2.0)
   /usr/lib/libcrypto.0.9.8.dylib (compatibility version 0.9.8, current version 47.2.0)
   @executable_path/../Frameworks/libdb_cxx-4.8.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/libboost_system-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/libboost_filesystem-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/libboost_program_options-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/libboost_thread-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
   @executable_path/../Frameworks/QtGui.framework/Versions/4/QtGui (compatibility version 4.8.0, current version 4.8.5)
   @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore (compatibility version 4.8.0, current version 4.8.5)
   /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 56.0.0)
   /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0)
   /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1669.0.0)
   /usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 228.0.0)
   /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 744.19.0)
   /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices (compatibility version 1.0.0, current version 57.0.0)

Well, the wallet works, but only if you have the required libraries set up in /usr/lib with HOMEBREW.
MacPorts puts all that into its funky /opt structure.
You have to copy and reference them in the app bundle to make them available in the runtime environment.

Just checked out Litecoin:

   /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
   /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 830.0.0)
   /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.11)
   /usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 227.0.0)
   /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 550.44.0)

Everything seems fine.
aideanhao
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
March 02, 2014, 02:19:59 PM
 #1897

why doesnt this wallet sync Huh? Huh Huh
paulus51
Sr. Member
****
Offline Offline

Activity: 616
Merit: 321



View Profile
March 02, 2014, 02:22:12 PM
 #1898

ow man i hope we are not to late to join this zeitcoin,

we would love to accept this coin on our website : http://savegreyhound.hol.es/

we have just open the zeitcoin wallet ( the new one )  our adress : zeitcoin : MqPSaLHJq8HhYDkRqa6zUwZSzaoj6HxnhH    / Galgo Support



if there is a logo we could use please provide it il place it on our website to ,


website will be updated on monday with this new adres


edit : Zeitcoin added to our donation page to !


thanks in advanced


*** Your Support Is Highly appriciated to ! ***

Just sent you some Bitcoin to that address. Best of luck to you..


still nothing recieved yet,
did you use the correct bitcoin adress?  this one : BTC : 16C83hHvFrbHnvMTCAuxWisNuHFH9zUcxd   / Galgo Support


thanks in advanced !


sammy007
Legendary
*
Offline Offline

Activity: 1904
Merit: 1003


View Profile
March 02, 2014, 02:25:08 PM
 #1899

Try this ONE (Litecoin identical linking)

https://mega.co.nz/#!UAUD3ZIC!btAU6MKl2ivQwZA5wzulJOOA8tjp8Qeg6XZSkLbFB7s
BiffyMcBifferstein
Full Member
***
Offline Offline

Activity: 178
Merit: 100


View Profile
March 02, 2014, 02:28:34 PM
 #1900

Where is the actual developer of this?  I'd like to hear them say, "Ok, we've reached out to [pick a coin] developer and they're helping us get the Mac version working!"

So far, I think it's great that the community here has a few people that have tried assisting, either in code or with suggestions, but I'm holding the developer directly responsible for the nonsense.  I'm not abandoning Zeitcoin, so make it work already.

Zeitcoin - Mm3rSgi34U5RMnrdusjWeK8UuWNmJu1ogq | Bitcoin - 16bpb3FBFbSvfsvXKabf7C4Zwwgwpkc4vn | Litecoin - LKJhuU68SdMPnRC1EAFimS7KNs4dXs3yrf | Dogecoin - DDeez8PhqRJkGVsu1pTF9SZEWXz3ySke56
Pages: « 1 ... 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 [95] 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 ... 861 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!