Mercurial > pidgin
annotate src/protocols/simple/Makefile.am @ 14141:5f656a0a82b7
[gaim-migrate @ 16783]
Whitespace and warning fixes:
gtkaccount.c: In function ?icon_select_cb?:
gtkaccount.c:289: warning: passing argument 1 of
?gaim_gtk_buddy_icon_chooser_new? from incompatible pointer type
gtkaccount.c:289: warning: passing argument 2 of
?gaim_gtk_buddy_icon_chooser_new? from incompatible pointer type
gtkstatusbox.c: In function ?icon_box_press_cb?:
gtkstatusbox.c:951: warning: passing argument 2 of
?gaim_gtk_buddy_icon_chooser_new? from incompatible pointer type
gtkstatusbox.c:951: warning: ISO C90 forbids mixed declarations and code
gtkstatusbox.c: In function ?icon_box_enter_cb?:
gtkstatusbox.c:960: warning: passing argument 1 of ?gtk_image_set_from_pixbuf?
from incompatible pointer type
gtkstatusbox.c: In function ?icon_box_leave_cb?:
gtkstatusbox.c:968: warning: passing argument 1 of ?gtk_image_set_from_pixbuf?
from incompatible pointer type
gtkstatusbox.c: In function ?gtk_gaim_status_box_size_allocate?:
gtkstatusbox.c:1183: warning: passing argument 1 of ?gtk_image_set_from_pixbuf?
from incompatible pointer type
gtkstatusbox.c: In function ?gtk_gaim_status_box_set_buddy_icon?:
gtkstatusbox.c:1338: warning: passing argument 1 of ?gtk_image_set_from_pixbuf?
from incompatible pointer type
gtkutils.c: In function ?gaim_gtk_convert_buddy_icon?:
gtkutils.c:2463: warning: ISO C90 forbids mixed declarations and code
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Wed, 16 Aug 2006 06:31:59 +0000 |
| parents | b36235b2f2ec |
| children |
| rev | line source |
|---|---|
|
12544
b36235b2f2ec
[gaim-migrate @ 14861]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12382
diff
changeset
|
1 EXTRA_DIST = \ |
|
b36235b2f2ec
[gaim-migrate @ 14861]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12382
diff
changeset
|
2 Makefile.mingw |
|
b36235b2f2ec
[gaim-migrate @ 14861]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12382
diff
changeset
|
3 |
| 11181 | 4 pkgdir = $(libdir)/gaim |
| 5 | |
| 6 SIMPLESOURCES = \ | |
| 7 simple.c \ | |
| 8 simple.h \ | |
| 9 sipmsg.c \ | |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
11383
diff
changeset
|
10 sipmsg.h |
| 11181 | 11 |
| 11376 | 12 AM_CFLAGS = $(st) |
| 11181 | 13 |
| 14 libsimple_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) | |
| 15 | |
| 16 if STATIC_MSN | |
| 17 | |
| 18 st = -DGAIM_STATIC_PRPL | |
| 19 noinst_LIBRARIES = libsimple.a | |
| 20 libsimple_a_SOURCES = $(SIMPLESOURCES) | |
| 21 libsimple_a_CFLAGS = $(AM_CFLAGS) | |
| 22 | |
| 23 else | |
| 24 | |
| 25 st = | |
| 26 pkg_LTLIBRARIES = libsimple.la | |
| 27 libsimple_la_SOURCES = $(SIMPLESOURCES) | |
| 28 | |
| 29 endif | |
| 30 | |
| 31 AM_CPPFLAGS = \ | |
| 32 -I$(top_srcdir)/src \ | |
| 33 $(GLIB_CFLAGS) \ | |
| 34 $(DEBUG_CFLAGS) |
