From: Christoph Hohmann Date: Sun, 8 Dec 2002 16:32:17 +0000 (+0000) Subject: 0.8.6claws82 X-Git-Tag: rel_0_8_7~60 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=3bf2e89722b36ef95b8e33c97b3333f25b496bb5 0.8.6claws82 * src/about.c * src/addr_compl.c * src/codeconv.c * src/manual.c * src/undo.c * src/common/utils.c o add missing includes o fix warnings * src/.cvsignore * src/common/.cvsignore * src/common/version.h ** REMOVE ** remove autogenerated file --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 8823be923..2b872b8f8 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,18 @@ +2002-12-08 [christoph] 0.8.6claws82 + + * src/about.c + * src/addr_compl.c + * src/codeconv.c + * src/manual.c + * src/undo.c + * src/common/utils.c + o add missing includes + o fix warnings + * src/.cvsignore + * src/common/.cvsignore + * src/common/version.h ** REMOVE ** + remove autogenerated file + 2002-12-08 [paul] 0.8.6claws81 * src/stringtable.c diff --git a/configure.in b/configure.in index 9f191bf01..e2b3410e2 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws81 +EXTRA_VERSION=claws82 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/.cvsignore b/src/.cvsignore index 9692b5f2d..c0838b1f4 100644 --- a/src/.cvsignore +++ b/src/.cvsignore @@ -12,5 +12,4 @@ quote_fmt_parse.h matcher_parser_lex.c matcher_parser_parse.c matcher_parser_parse.h -version.h ylwrap diff --git a/src/about.c b/src/about.c index 696bf7f40..c2d847c39 100644 --- a/src/about.c +++ b/src/about.c @@ -45,6 +45,7 @@ #include "prefs_common.h" #include "utils.h" #include "version.h" +#include "gtkutils.h" static GtkWidget *window; diff --git a/src/addr_compl.c b/src/addr_compl.c index 32e21c806..0a41a18ab 100644 --- a/src/addr_compl.c +++ b/src/addr_compl.c @@ -40,6 +40,7 @@ # include #endif +#include "addressbook.h" #include "addr_compl.h" #include "utils.h" diff --git a/src/codeconv.c b/src/codeconv.c index 3d1cc5fc4..1be0ffc89 100644 --- a/src/codeconv.c +++ b/src/codeconv.c @@ -44,6 +44,7 @@ #include "base64.h" #include "utils.h" #include "prefs_common.h" +#include "unmime.h" typedef enum { diff --git a/src/common/.cvsignore b/src/common/.cvsignore index 2a6ab490b..88c987731 100644 --- a/src/common/.cvsignore +++ b/src/common/.cvsignore @@ -2,6 +2,7 @@ .libs Makefile Makefile.in +version.h *.o *.lo *.la diff --git a/src/common/utils.c b/src/common/utils.c index 6f7d1ffbb..3b861e422 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -3090,7 +3090,7 @@ gchar *expand_search_string(const gchar *search_string) /* if it's a full command don't process it so users can still do something like from regexpcase "foo" */ for (i = 0; cmds[i].command; i++) { - gchar *tmp_search_string = search_string; + const gchar *tmp_search_string = search_string; cmd_start = cmds[i].command; /* allow logical NOT */ if (*tmp_search_string == '~') diff --git a/src/common/version.h b/src/common/version.h deleted file mode 100644 index a1e85678e..000000000 --- a/src/common/version.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2001 Hiroyuki Yamamoto - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#ifndef __VERSION_H__ -#define __VERSION_H__ - -#define PACKAGE "sylpheed" -#define VERSION "0.8.6claws77" -#define PROG_VERSION "Sylpheed version "VERSION - -#endif /* __VERSION_H__ */ diff --git a/src/manual.c b/src/manual.c index 4eb9060ca..981c73468 100644 --- a/src/manual.c +++ b/src/manual.c @@ -29,6 +29,7 @@ #include "prefs_common.h" #include "manual.h" +#include "utils.h" static gchar *sylpheeddoc_manuals[] = { diff --git a/src/undo.c b/src/undo.c index ee837b992..f14c9e470 100644 --- a/src/undo.c +++ b/src/undo.c @@ -25,7 +25,6 @@ #endif #include -#include "gtkstext.h" #include /* for strlen */ #include /* for mbstowcs */ @@ -33,6 +32,7 @@ #include "undo.h" #include "utils.h" #include "prefs_common.h" +#include "gtkstext.h" typedef struct _UndoInfo UndoInfo;