Hi Guenther Roith Nice GTK# Win32 package. I had to make some modifications to get it to work though.
Here are some suggestions I have: 1. Files in mono/install/etc for pango, gtk, etc. need to be included. 2. monobasepath.bat sets the mono base path to c:\mono-0.10\install We are are using mono-0.16, plus, I installed my installation on G:, so mine would be g:\mono-0.16 3. the pkg-config .pc files for glib, gtk, etc. need to be updated for the installation path instead of /cygdrive/c/mono-0.16/install 4. Folders and their contents that is in mono/install/lib need to be included too, such as, pango, glib, gtk, locale Here's a bonus, a batch file to load SqlSharpGtk called sqlsharpgtk.bat gets placed in in mono/install/winwrapper just like the other mono batch files. Of course, sqlsharpgtk.exe will have to be in mono/install/bin @echo off call monobasepath.bat set MONOARGS= :loop if x%1 == x goto :done set MONOARGS=%MONOARGS% %1 shift goto loop :done setlocal set LD_LIBRARY_PATH=%MONO_BASEPATH%\lib;%LD_LIBRARY_PATH% set path=%MONO_BASEPATH%\bin\;%MONO_BASEPATH%\lib\;%LD_LIBRARY_PATH%;%path% ECHO PATH=%PATH% ECHO LD_LIBRARY_PATH=%LD_LIBRARY_PATH% %MONO_BASEPATH%\bin\monomono %MONO_BASEPATH%\bin\sqlsharpgtk.exe %MONOARGS% endlocal -----Original Message----- From: [EMAIL PROTECTED] [mailto:mono-list-admin@;ximian.com]On Behalf Of Guenther Roith Sent: Tuesday, November 05, 2002 11:50 AM To: mono-list Subject: [Mono-list] gtk# 0.5 windows setup released Hello! Thanks to Daniel Morgan's gtk# binaries, I was finally able to do a windows package. It works nicely with the mono setup, found on the mono download page. Note: It throws some error messages, but this has no effect on the work of gtk# applications. http://www.sport-huettn.de/mono/gtk-sharp-0.5-stable.exe Johannes _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
