diff --git a/ChangeLog b/ChangeLog index d04897a3..2f4daff7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-01-02 Enrico Tröger + + * README, src/makefile.win32: + Add -lshfolder to linker flags on Windows. + Add notice for Win9x users to install SHFolder.dll. + + 2008-01-02 Nick Treleaven * tagmanager/c.c: @@ -553,7 +560,7 @@ for a new diff on the same file. Thanks. -2007-11-04 Enrico Tröger +2007-11-04 Enrico Tröger * src/build.c: Fix error in Compile and Build commands on Windows if the command @@ -593,7 +600,7 @@ Remove filetype::style_func_ptr field. -2007-11-02 Enrico Tröger +2007-11-02 Enrico Tröger * src/build.c, src/makefile.win32: Add exit code detection for Windows. * src/keyfile.c: Fix broken window maximization. @@ -669,7 +676,7 @@ Make sure current_dir always has a full path. -2007-10-28 Enrico Tröger +2007-10-28 Enrico Tröger * doc/geany.txt, src/build.c, src/project.c, src/project.h: Add support for relative project base path. @@ -1098,7 +1105,7 @@ Correct prev_translators email address. -2007-09-11 Enrico Tröger +2007-09-11 Enrico Tröger * src/callbacks.c: HTML manual is called Manual.html on Windows, so open this file. @@ -1181,7 +1188,7 @@ argument contains relative path elements or symlinks. -2007-09-03 Enrico Tröger +2007-09-03 Enrico Tröger * src/makefile.win32, src/ui_utils.c, src/win32.c, plugins/makefile.win32: diff --git a/README b/README index d88992d2..69d0f736 100644 --- a/README +++ b/README @@ -69,8 +69,12 @@ Windows Geany runs also under Windows. To download the binary with all necessary files, visit Geany's homepage. But you should know, that the Windows version is not yet well tested and there are some features missing: -- build support (perhaps will be added later, Run command is working) +- build support (implemented but might be still buggy) - embedded terminal emulation (VTE) +- Windows 9x users: in order to run Geany on Windows 95, 98 or ME you + need to install the file SHFolder.dll either in the Geany installation + directory or in your Windows directory. For more information please + visit http://support.microsoft.com/kb/241733. License @@ -94,7 +98,7 @@ file. -- -2005-2007 by Enrico Tröger, Nick Treleaven and Frank Lanitz +2005-2008 by Enrico Tröger, Nick Treleaven and Frank Lanitz enrico.troeger(at)uvena(dot)de nick(dot)treleaven(at)btinternet(dot)com frank(at)frank(dot)uvena(dot)de diff --git a/src/makefile.win32 b/src/makefile.win32 index d5a07adb..94ee9a8b 100644 --- a/src/makefile.win32 +++ b/src/makefile.win32 @@ -49,6 +49,9 @@ else PRINTING_LIBS= endif +WIN_LIBS=-mwindows -lkernel32 -limm32 -lshfolder -lshell32 \ + -lole32 -luuid -lcomdlg32 -lcomctl32 -liberty -lwsock32 + CCFLAGS=-Wall -O2 -g -mms-bitfields $(DEFINES) $(INCLUDEDIRS) OBJS = about.o build.o callbacks.o dialogs.o document.o editor.o encodings.o filetypes.o \ @@ -79,7 +82,7 @@ binclean: $(TARGET): $(OBJS) $(RES) ../scintilla/scintilla.a ../tagmanager/tagmanager.a $(CXX) $(OBJS) $(RES) -o $(TARGET) \ ../scintilla/scintilla.a ../tagmanager/tagmanager.a $(ALL_GTK_LIBS) $(PRINTING_LIBS) \ - -mwindows -lkernel32 -limm32 -lshell32 -lole32 -luuid -lcomdlg32 -lcomctl32 -liberty -lwsock32 + $(WIN_LIBS) deps.mak: $(CC) -MM $(CCFLAGS) *.c >deps.mak