INSTALL: Slightly update win32 build instructions

ChangeLog: Add and clarify win32-related changes
win32-resource.rc: Bump version number to 2.3.5
This commit is contained in:
Stefan Gehn 2010-09-15 16:14:11 +00:00
parent d72d689c4c
commit a457f7a3e1
4 changed files with 15 additions and 13 deletions

View File

@ -7,7 +7,8 @@ GKrellM Changelog
g_debug(), g_warning(). g_debug(), g_warning().
- Replace sprintf() calls with snprintf(). - Replace sprintf() calls with snprintf().
- Use glib gstdio to replace unix calls: fopen()->g_fopen(), etc. - Use glib gstdio to replace unix calls: fopen()->g_fopen(), etc.
- Use glib mutex functions for portability. - Use glib mutex functions for portability when building with
GnuTLS.
- Fix IMAP login by escaping backslash and double-quotes in - Fix IMAP login by escaping backslash and double-quotes in
username, password and mailbox strings. username, password and mailbox strings.
- Fix initial sending of fstab entries in gkrellmd, fstab was only - Fix initial sending of fstab entries in gkrellmd, fstab was only
@ -17,12 +18,13 @@ GKrellM Changelog
- Makefile: Drop duplicating SMC_LIBS in "netbsd" targets by calling - Makefile: Drop duplicating SMC_LIBS in "netbsd" targets by calling
src/Makefile with "netbsd" target instead of using the generic src/Makefile with "netbsd" target instead of using the generic
"gkrellm" target. "gkrellm" target.
- Make "-d" commandline option the short version for "--detach" - gkrellmd: Make "-d" commandline option the short version
instead of for "--debug-level". for "--detach" instead of for "--debug-level".
- Enable IPv6-support on win32 if target os is windows xp or newer. - Enable IPv6-support on win32 if target os is windows xp or newer.
- Support monitoring of active IPv6 TCP connections on windows vista - Support monitoring of active IPv6 TCP connections on windows vista
or newer. or newer.
- Fix building with mingw-w64 environment. - Fix building with mingw-w64 environment.
- Fix time formatting on win32 for monthly network statistics
* Patch from Stefan Gehn: add searching for linux sensors directly below * Patch from Stefan Gehn: add searching for linux sensors directly below
hwmon dir since kernel is putting newer devices there. hwmon dir since kernel is putting newer devices there.
* Patch from Hajimu Umemoto: FreeBSD memory usage calculation update. * Patch from Hajimu Umemoto: FreeBSD memory usage calculation update.

View File

@ -81,19 +81,19 @@ Note: install_solaris makes gkrellm setgid sys so it can be run non-root, ie:
(see below for additional Solaris install notes) (see below for additional Solaris install notes)
Windows: 2000 SP4 / XP SP1 / Vista SP2 Windows (needs Windows XP or newer)
--------------------------------------- ---------------------------------------
make windows make windows
make INSTALLROOT=C:\gkrellm install_windows make INSTALLROOT=C:\gkrellm install_windows
See: See:
http://www.srcbox.net/projects/gkrellm/ http://www.srcbox.net/projects/gkrellm/
Needed software for building gkrellm on win32 systems: Needed software for building gkrellm on win32 systems:
- MinGW - MinGW
- MSYS (gkrellm Makefiles are NOT compatible with cmd.exe) - MSYS (gkrellm makefiles are NOT compatible with cmd.exe)
- GTK >= 2.4 Development files (see http://www.gtk.org/download-windows.html) - GTK >= 2.4 Development files (see http://www.gtk.org/download-windows.html)
- OpenSSL (optional), GnuTLS is not recommended on win32 - OpenSSL or GnuTLS (optional)
- libntlm (optional) - libntlm (optional)
Note: Installing gkrellm on windows needs INSTALLROOT set, the default path Note: Installing gkrellm on windows needs INSTALLROOT set, the default path

View File

@ -11,7 +11,7 @@
// //
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
1 VERSIONINFO 1 VERSIONINFO
FILEVERSION 2,3,4,0 FILEVERSION 2,3,5,0
PRODUCTVERSION 0,0,0,0 PRODUCTVERSION 0,0,0,0
FILEOS VOS_NT_WINDOWS32 FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP FILETYPE VFT_APP
@ -22,12 +22,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "" VALUE "CompanyName", ""
VALUE "FileDescription", "GKrellM Daemon" VALUE "FileDescription", "GKrellM Daemon"
VALUE "FileVersion", "2.3.4" VALUE "FileVersion", "2.3.5"
VALUE "InternalName", "gkrellmd" VALUE "InternalName", "gkrellmd"
VALUE "LegalCopyright", "Copyright (C) 1999-2010 Bill Wilson" VALUE "LegalCopyright", "Copyright (C) 1999-2010 Bill Wilson"
VALUE "OriginalFilename", "gkrellmd.exe" VALUE "OriginalFilename", "gkrellmd.exe"
VALUE "ProductName", "GKrellM" VALUE "ProductName", "GKrellM"
VALUE "ProductVersion", "2.3.4" VALUE "ProductVersion", "2.3.5"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -18,7 +18,7 @@ IDI_ICON3 ICON "gkrellm.ico"
// //
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
1 VERSIONINFO 1 VERSIONINFO
FILEVERSION 2,3,4,0 FILEVERSION 2,3,5,0
PRODUCTVERSION 0,0,0,0 PRODUCTVERSION 0,0,0,0
FILEOS VOS_NT_WINDOWS32 FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP FILETYPE VFT_APP
@ -29,12 +29,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "" VALUE "CompanyName", ""
VALUE "FileDescription", "GKrellM" VALUE "FileDescription", "GKrellM"
VALUE "FileVersion", "2.3.4" VALUE "FileVersion", "2.3.5"
VALUE "InternalName", "gkrellm" VALUE "InternalName", "gkrellm"
VALUE "LegalCopyright", "Copyright (C) 1999-2010 Bill Wilson" VALUE "LegalCopyright", "Copyright (C) 1999-2010 Bill Wilson"
VALUE "OriginalFilename", "gkrellm.exe" VALUE "OriginalFilename", "gkrellm.exe"
VALUE "ProductName", "GKrellM" VALUE "ProductName", "GKrellM"
VALUE "ProductVersion", "2.3.4" VALUE "ProductVersion", "2.3.5"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"