[new file] app/dialogs/Makefile.am : added to EXTRA_DIST
2004-09-21 Hans Breuer <hans@breuer.org> * app/dialogs/makefile.msc : [new file] app/dialogs/Makefile.am : added to EXTRA_DIST * **/makefile.msc app/gimpcore.def : updated * app/gimp.rc : let wilber be first * app/widgets/gimppropwidgets.c : msvc6 can't cast uint64 either * libgimpbase/gimpwin32-io.h : make up recent loss of ftruncate in GLib * libgimpthumbnail/gimpthumbnail.c : <process.h> for getpid() on win32 * plug-ins/helpbrowser/dialog.c : include gimpwin32-io.h * plug-ins/script-fu/siodwrapper.c plug-ins/script-fu/scrip-fu.c : there is no script-fu-server on win32
This commit is contained in:
@ -70,6 +70,17 @@ G_BEGIN_DECLS
|
||||
#define X_OK 0 /* not really */
|
||||
#endif
|
||||
|
||||
/*
|
||||
2004-09-15 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gwin32.h: Don't define ftruncate as a macro. Was never a
|
||||
good idea, and it clashes with newest mingw headers, which have a
|
||||
ftruncate implementation as an inline function. Thanks to Dominik R.
|
||||
*/
|
||||
/* needs coorection for msvc though ;( */
|
||||
#ifdef _MSC_VER
|
||||
#define ftruncate(f,s) g_win32_ftruncate(f,s)
|
||||
#endif
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
Reference in New Issue
Block a user