Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#28041 closed defect (fixed)

gtk-chtheme post-libpng-revbump: lvalue required as left operand of assignment

Reported by: geekosaur Owned by: alexandernx@…
Priority: Normal Milestone:
Component: ports Version: 1.9.2
Keywords: Cc: alexander.zimmermann@…, mayace.cysque@…
Port: gtk-chtheme

Description

(looks like an undefined Gtk macro, actually)

Logfile attached; the key part appears to be

cc   -Wall -D_REENTRANT -I/opt/local/include/gtk-2.0 -I/opt/local/lib/gtk-2.0/include -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/pango-1.0 -I/opt/local/include/gio-unix-2.0/ -I/opt/local/include -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/libpng14   -DGTK_DISABLE_BROKEN -DGTK_DISABLE_DEPRECATED -DPROJNAME='"Gtk+ 2.0 Change Theme"' -DVERSION='"0.3.1"'   -c -o util.o util.c
util.c: In function 'unfocussable':
util.c:22: warning: implicit declaration of function 'GTK_OBJECT_FLAGS'
util.c:22: error: lvalue required as left operand of assignment
make: *** [util.o] Error 1

Attachments (1)

main.log (4.9 KB) - added by geekosaur 13 years ago.
log from build

Download all attachments as: .zip

Change History (7)

Changed 13 years ago by geekosaur

Attachment: main.log added

log from build

comment:1 Changed 13 years ago by ryandesign (Ryan Carsten Schmidt)

Owner: changed from macports-tickets@… to alexandernx@…

comment:2 Changed 13 years ago by alexander.zimmermann@…

Cc: alexander.zimmermann@… added

Cc Me!

comment:3 Changed 13 years ago by mayace.cysque@…

Cc: mayace.cysque@… added

Cc Me!

comment:4 Changed 13 years ago by joergahrens (Jörg Ahrens)

In util.c line 22 change

GTK_WIDGET_UNSET_FLAGS(w, GTK_CAN_FOCUS);

to

gtk_widget_set_can_focus(w, FALSE);

comment:5 Changed 13 years ago by raimue (Rainer Müller)

Resolution: fixed
Status: newclosed

Fixed in r75399.

comment:6 Changed 13 years ago by raimue (Rainer Müller)

Fix redone in 75401 with correct boolean logic.

Note: See TracTickets for help on using tickets.