diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-27 16:08:08 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-27 16:08:08 -0500 |
commit | 07ed49a47254b315356b6401c6430d0ade01ea3e (patch) | |
tree | 27aa4eea33b3faa07fee2b3e2a36f825680541cc /src | |
parent | 21503e4556f1dba968bb6ff611cc3d0702993d61 (diff) |
Do not start bitcoin: thread on OSX. fixes #889
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/qtipcserver.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/qtipcserver.cpp b/src/qt/qtipcserver.cpp index 018461a9b2..7f5d040338 100644 --- a/src/qt/qtipcserver.cpp +++ b/src/qt/qtipcserver.cpp @@ -44,6 +44,11 @@ void ipcThread(void* parg) void ipcInit() { +#ifdef MAC_OSX + // TODO: implement bitcoin: URI handling the Mac Way + return; +#endif + message_queue* mq; char strBuf[257]; size_t nSize; |