Fri, 14 Nov 2008 06:45:16 +0000
propagate from branch 'im.pidgin.pidgin' (head cc1cc6c659d3878f285641153244b04df2f15eb7)
to branch 'im.pidgin.pidgin.next.minor' (head c195415b5fdfa94009870ddc8e23cf4a653ae351)
|
16347
effb9953a80d
Don't install nullclient by default, it's probably not particularly useful
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15942
diff
changeset
|
1 | noinst_PROGRAMS = nullclient |
|
15673
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
2 | |
|
15942
22a8b548b017
Include defines.h in make dist
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15673
diff
changeset
|
3 | nullclient_SOURCES = defines.h nullclient.c |
|
22a8b548b017
Include defines.h in make dist
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15673
diff
changeset
|
4 | nullclient_DEPENDENCIES = |
|
15673
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
5 | nullclient_LDFLAGS = -export-dynamic |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
6 | nullclient_LDADD = \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
7 | $(DBUS_LIBS) \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
8 | $(INTLLIBS) \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
9 | $(GLIB_LIBS) \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
10 | $(LIBXML_LIBS) \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
11 | $(top_builddir)/libpurple/libpurple.la |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
12 | |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
13 | AM_CPPFLAGS = \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
14 | -DSTANDALONE \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
15 | -DBR_PTHREADS=0 \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
16 | -DDATADIR=\"$(datadir)\" \ |
|
16651
218fe51ae7b7
soname versioning of libpurple. Should help resolve debian bug 421282
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16347
diff
changeset
|
17 | -DLIBDIR=\"$(libdir)/purple-$(PURPLE_MAJOR_VERSION)/\" \ |
|
15673
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
18 | -DLOCALEDIR=\"$(datadir)/locale\" \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
19 | -DSYSCONFDIR=\"$(sysconfdir)\" \ |
|
22292
6c52172a2792
Fix for $(top_builddir) != $(top_srcdir)
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
16651
diff
changeset
|
20 | -I$(top_builddir)/libpurple \ |
|
6c52172a2792
Fix for $(top_builddir) != $(top_srcdir)
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
16651
diff
changeset
|
21 | -I$(top_srcdir)/libpurple \ |
|
15673
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
22 | -I$(top_srcdir) \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
23 | $(DEBUG_CFLAGS) \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
24 | $(GLIB_CFLAGS) \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
25 | $(DBUS_CFLAGS) \ |
|
7f2c84ae63b0
Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
26 | $(LIBXML_CFLAGS) |