diff -Naur aMule-2.2.4.orig/src/utils/cas/configfile.c aMule-2.2.4/src/utils/cas/configfile.c --- aMule-2.2.4.orig/src/utils/cas/configfile.c 2008-09-11 22:44:15.000000000 +0200 +++ aMule-2.2.4/src/utils/cas/configfile.c 2009-05-11 16:00:57.000000000 +0200 @@ -44,6 +44,10 @@ "# font_size - size the font\n", "# source_image - image where the text will be writen\n", "# *_line - x,y,[1/0] enabled or disabled\n\n", + "# Mac users can find stat.png and tmp.html in:\n", + "# aMule.app/Contents/SharedSupport/cas\n", + "# and for fonts try for example:\n", + "#font /usr/X11R6/lib/X11/fonts/TTF/Vera.ttf\n\n", "font /usr/share/fonts/corefonts/times.ttf\n", "font_size 10.5\n", "source_image /usr/share/pixmaps/stat.png\n", diff -Naur aMule-2.2.4.orig/src/utils/wxCas/src/wxcascte.cpp aMule-2.2.4/src/utils/wxCas/src/wxcascte.cpp --- aMule-2.2.4.orig/src/utils/wxCas/src/wxcascte.cpp 2008-11-18 23:28:43.000000000 +0100 +++ aMule-2.2.4/src/utils/wxCas/src/wxcascte.cpp 2009-05-11 15:59:29.000000000 +0200 @@ -103,8 +103,13 @@ const bool WxCasCte::DEFAULT_AUTOSTATIMG_ISENABLED = FALSE; +#ifdef __WXMAC__ +const wxString +WxCasCte::DEFAULT_AUTOSTATIMG_PATH ( wxT( "/Users/Shared" ) ); +#else const wxString WxCasCte::DEFAULT_AUTOSTATIMG_PATH ( wxFileName::GetHomeDir () ); +#endif const wxString WxCasCte::DEFAULT_AUTOSTATIMG_TYPE ( wxT( "PNG" ) ); diff -Naur aMule-2.2.4.orig/src/utils/wxCas/src/wxcasframe.cpp aMule-2.2.4/src/utils/wxCas/src/wxcasframe.cpp --- aMule-2.2.4.orig/src/utils/wxCas/src/wxcasframe.cpp 2008-09-06 17:39:00.000000000 +0200 +++ aMule-2.2.4/src/utils/wxCas/src/wxcasframe.cpp 2009-05-11 16:00:32.000000000 +0200 @@ -212,8 +212,10 @@ m_toolbar->AddSeparator (); +#ifndef __WXMAC__ m_toolbar->AddTool ( ID_BAR_SAVE, wxT( "Save" ), m_toolBarBitmaps[ 1 ], _( "Save Online Statistics image" ) ); +#endif m_toolbar->AddTool ( ID_BAR_PRINT, wxT( "Print" ), m_toolBarBitmaps[ 2 ], _( "Print Online Statistics image" ) );