Mercurial > pidgin.yaz
annotate pidgin/plugins/disco/Makefile.am @ 29028:f1437342cc0e
Include 'internal.h' before all other headers to make some non-gcc compilers happy.
This in particular impacts Solaris8, where the system headers set
_FILE_OFFSET_BITS to 32, even when it's detected by the config scripts
as 64.
Refs #10523
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Fri, 27 Nov 2009 07:12:35 +0000 |
parents | 470507fec7fa |
children |
rev | line source |
---|---|
27058
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
1 plugindir = $(libdir)/pidgin |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
2 |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
3 xmppdisco_la_LDFLAGS = -module -avoid-version |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
4 |
28304
470507fec7fa
Include Makefile.mingw in the dist.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
27253
diff
changeset
|
5 EXTRA_DIST = \ |
470507fec7fa
Include Makefile.mingw in the dist.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
27253
diff
changeset
|
6 Makefile.mingw |
470507fec7fa
Include Makefile.mingw in the dist.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
27253
diff
changeset
|
7 |
27058
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
8 if PLUGINS |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
9 |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
10 plugin_LTLIBRARIES = xmppdisco.la |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
11 |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
12 xmppdisco_la_SOURCES = \ |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
13 gtkdisco.c \ |
27253
bd47fd3f3b6b
Need to include header files here in order for them to show up in the
Mark Doliner <mark@kingant.net>
parents:
27058
diff
changeset
|
14 gtkdisco.h \ |
bd47fd3f3b6b
Need to include header files here in order for them to show up in the
Mark Doliner <mark@kingant.net>
parents:
27058
diff
changeset
|
15 xmppdisco.c \ |
bd47fd3f3b6b
Need to include header files here in order for them to show up in the
Mark Doliner <mark@kingant.net>
parents:
27058
diff
changeset
|
16 xmppdisco.h |
27058
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
17 |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
18 xmppdisco_la_LIBADD = $(GTK_LIBS) |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
19 |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
20 endif |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
21 |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
22 AM_CPPFLAGS = \ |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
23 -DDATADIR=\"$(datadir)\" \ |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
24 -I$(top_srcdir)/libpurple \ |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
25 -I$(top_builddir)/libpurple \ |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
26 -I$(top_srcdir)/pidgin \ |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
27 $(DEBUG_CFLAGS) \ |
08964b4b2fe4
Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff
changeset
|
28 $(GTK_CFLAGS) |