* src/common/log.c
* src/common/plugin.c move defs.h before glib.h to prevent MIN/MAX redefs
This commit is contained in:
parent
25ff6d7e44
commit
6d423cb840
4 changed files with 10 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue