After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 241098 - Build error in camel-pop3-store.c
Build error in camel-pop3-store.c
Status: RESOLVED NOTABUG
Product: evolution
Classification: Applications
Component: Mailer
pre-1.5 (obsolete)
Other All
: Normal enhancement
: ---
Assigned To: evolution-mail-maintainers
Evolution QA team
Depends on:
Blocks: 239034
 
 
Reported: 2003-04-10 14:42 UTC by Patton Gao
Modified: 2004-01-09 19:28 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement


Attachments
add a patch (876 bytes, patch)
2003-04-17 09:33 UTC, philip zhao
none Details | Review

Description Patton Gao 2003-04-10 14:42:47 UTC
When building Evolution on Solaris 9 with Forte, happened error as follows: 

/opt/SUNWspro/bin/cc -DHAVE_CONFIG_H -I. -I. -I../../.. -I.. -I./..
-I./../../.. -I../../../intl -I../../../camel -I../../../e-util
-D_REENTRANT -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
-I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/include/libglade-2.0
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0
-I/usr/openwin/include -I/usr/include/libart-2.0
-I/usr/local/include/gal-2.0 -I/usr/local/include/libgnomeprint-2.2
-I/usr/local/nspr-4.2.2/include -I/usr/local/nss-3.7.1/include
-DG_LOG_DOMAIN=\"camel-pop3-provider\" -DG_DISABLE_DEPRECATED
-I/usr/include -I/usr/local/include -g -I/usr/include -I/usr/local/include
-g -Wp,-MD,.deps/camel-pop3-store.pp -c camel-pop3-store.c  -KPIC -DPIC -o
camel-pop3-store.o
"../../../camel/camel-folder-summary.h", line 71: warning: integer overflow
detected: op "<<"
"camel-pop3-store.c", line 407: warning: argument #1 is incompatible with
prototype:
        prototype: pointer to const char : "/usr/include/iso/string_iso.h",
line 72
        argument : pointer to unsigned char
"camel-pop3-store.c", line 409: warning: argument #1 is incompatible with
prototype:
        prototype: pointer to const char : "/usr/include/iso/string_iso.h",
line 72
        argument : pointer to unsigned char
"camel-pop3-store.c", line 417: warning: argument #1 is incompatible with
prototype:
        prototype: pointer to const char : "/usr/include/iso/string_iso.h",
line 72
        argument : pointer to unsigned char
"camel-pop3-store.c", line 419: warning: argument #2 is incompatible with
prototype:
        prototype: pointer to const char : "../../../camel/camel-sasl.h",
line 64
        argument : pointer to unsigned char
"camel-pop3-store.c", line 419: warning: assignment type mismatch:
        pointer to unsigned char "=" pointer to char
"camel-pop3-store.c", line 529: operands have incompatible types:
         pointer to unsigned char ":" pointer to char
"camel-pop3-store.c", line 595: cannot recover from previous errors
cc: acomp failed for camel-pop3-store.c
make[4]: *** [camel-pop3-store.lo] Error 1
make[4]: Leaving directory
`/export/home/work/work/evolution/camel/providers/pop3'

fixing:
camel-pop3-store.c, line 529
-        store->engine->line ? store->engine->line: _("Unknown error"));
+        store->engine->line );

passed
Comment 1 philip zhao 2003-04-17 09:25:53 UTC
Still exists in 4.16 trunk.
Comment 2 philip zhao 2003-04-17 09:33:28 UTC
Created attachment 42300 [details] [review]
add a patch
Comment 3 Gerardo Marin 2003-04-20 05:59:24 UTC
Please submit your patch to evolution-patches mailing list.
Comment 4 Jeffrey Stedfast 2004-01-09 19:28:01 UTC
that patch doesn't do anything.