diff options
| author | Gavin Andresen <[email protected]> | 2011-05-01 06:39:31 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-05-01 06:39:31 -0700 |
| commit | 249aff45c205962d97d6b77b220dc26131cc7fd3 (patch) | |
| tree | 659ef3a7b8fd26e5fc5e77fe246684e545a84ad9 | |
| parent | Merge pull request #187 from devrandom/master. (diff) | |
| parent | Remove unnecessary line which creates a dependency on wx's png library. (diff) | |
| download | discoin-249aff45c205962d97d6b77b220dc26131cc7fd3.tar.xz discoin-249aff45c205962d97d6b77b220dc26131cc7fd3.zip | |
Merge pull request #186 from TheBlueMatt/nopng.
Remove unnecessary line which creates a dependency on wx's png library.
| -rw-r--r-- | build-unix.txt | 2 | ||||
| -rw-r--r-- | ui.cpp | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/build-unix.txt b/build-unix.txt index b959f1a2d..d0cbc40fa 100644 --- a/build-unix.txt +++ b/build-unix.txt @@ -73,7 +73,7 @@ tar -xzvf wxWidgets-2.9.0.tar.gz cd wxWidgets-2.9.0 mkdir buildgtk cd buildgtk -../configure --with-gtk --enable-debug --disable-shared --enable-monolithic +../configure --with-gtk --enable-debug --disable-shared --enable-monolithic --without-libpng --disable-svg make sudo su make install @@ -2839,9 +2839,6 @@ bool CMyApp::OnInit() extern int g_isPainting; g_isPainting = 10000; #endif -#ifdef GUI - wxImage::AddHandler(new wxPNGHandler); -#endif #if defined(__WXMSW__ ) || defined(__WXMAC_OSX__) SetAppName("Bitcoin"); #else |