* src/common/log.c

* src/common/plugin.c
	move defs.h before glib.h to prevent MIN/MAX redefs
This commit is contained in:
Alfons Hoogervorst 2003-06-21 10:06:10 +00:00
parent 25ff6d7e44
commit 6d423cb840
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2003-06-19 [alfons] 0.9.0claws51
* src/common/log.c
* src/common/plugin.c
move defs.h before glib.h to prevent MIN/MAX redefs
2003-06-19 [alfons]
* src/addressbook.c

View file

@ -11,7 +11,7 @@ MINOR_VERSION=9
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=claws50
EXTRA_VERSION=claws51
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target

View file

@ -21,10 +21,11 @@
# include "config.h"
#endif
#include "defs.h"
#include <stdio.h>
#include <glib.h>
#include "defs.h"
#include "utils.h"
#include "log.h"
#include "hooks.h"

View file

@ -19,11 +19,11 @@
#include <stdio.h>
#include "defs.h"
#include <glib.h>
#include <gmodule.h>
#include "intl.h"
#include "defs.h"
#include "utils.h"
#include "plugin.h"
#include "prefs.h"