Mercurial > pidgin.yaz
annotate plugins/gestures/Makefile.am @ 10466:151498407e23
[gaim-migrate @ 11744]
sf patch #1094369, from Kevin Stange
"This change to internal.h fixes the fact that glib
seems to provide the wrong printf formatting for
gint64/guint64 integers. It's kinda nasty, but it
eliminates some warnings compiling the MSN stuff that
uses guint64s.
This can be applied to both HEAD and oldstatus.
I am going to have to look into why glib (or something)
sets G_GINT64_MODIFIER to capital 'I' because that
isn't a valid formatting character. At least not in
gcc 3.3..."
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 02 Jan 2005 17:38:05 +0000 |
parents | 8f94cce8faa5 |
children | 2cc05a9e944d |
rev | line source |
---|---|
4390 | 1 plugindir = $(libdir)/gaim |
2 | |
3 gestures_la_LDFLAGS = -module -avoid-version | |
4 | |
5 if PLUGINS | |
6 | |
7 plugin_LTLIBRARIES = gestures.la | |
8 | |
9 gestures_la_SOURCES = \ | |
10 gestures.c \ | |
11 gstroke.h \ | |
12 gstroke-internal.h \ | |
13 stroke.c \ | |
14 stroke-draw.c | |
15 | |
16 endif | |
17 | |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
18 AM_CPPFLAGS = \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
19 -DDATADIR=\"$(datadir)\" \ |
4390 | 20 -DVERSION=\"$(VERSION)\" \ |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
21 -I$(top_srcdir)/src \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
22 $(DEBUG_CFLAGS) \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
23 $(GTK_CFLAGS) |