diff options
| author | Gavin Andresen <[email protected]> | 2012-02-27 16:08:08 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-02-27 16:08:08 -0500 |
| commit | 07ed49a47254b315356b6401c6430d0ade01ea3e (patch) | |
| tree | 27aa4eea33b3faa07fee2b3e2a36f825680541cc /src/qt/qtipcserver.cpp | |
| parent | Merge branch 'nodosbip16' of https://github.com/sipa/bitcoin (diff) | |
| download | discoin-07ed49a47254b315356b6401c6430d0ade01ea3e.tar.xz discoin-07ed49a47254b315356b6401c6430d0ade01ea3e.zip | |
Do not start bitcoin: thread on OSX. fixes #889
Diffstat (limited to 'src/qt/qtipcserver.cpp')
| -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 018461a9b..7f5d04033 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; |