Mercurial > pidgin.yaz
annotate libpurple/example/Makefile.am @ 31000:8a03508dd6f4
Change the "Manual" browser command pref's name to allow for a relatively simple
migration of an existing value from the path pref to the new string pref. As I
note in the comment in the migration code, I realize this will break things for
and confuse those users who use the same config directory for mutliple versions
of Pidgin, but I'm not inclined to devise a solution that will make that work.
The solution I've implemented fixes the most important case--users who upgrade.
The rest of the world will just have to move on. Refs #12024.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Mon, 20 Sep 2010 03:53:47 +0000 |
parents | 77423ba51dd4 |
children |
rev | line source |
---|---|
16266
a9c75536f0c9
Don't install nullclient by default, it's probably not particularly useful
Stu Tomlinson <stu@nosnilmot.com>
parents:
15881
diff
changeset
|
1 noinst_PROGRAMS = nullclient |
15618
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
2 |
15881
f6b7e893c4f1
Include defines.h in make dist
Stu Tomlinson <stu@nosnilmot.com>
parents:
15618
diff
changeset
|
3 nullclient_SOURCES = defines.h nullclient.c |
f6b7e893c4f1
Include defines.h in make dist
Stu Tomlinson <stu@nosnilmot.com>
parents:
15618
diff
changeset
|
4 nullclient_DEPENDENCIES = |
15618
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
5 nullclient_LDFLAGS = -export-dynamic |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
6 nullclient_LDADD = \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
7 $(DBUS_LIBS) \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
8 $(INTLLIBS) \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
9 $(GLIB_LIBS) \ |
25562
1343ff17b110
The whitespace at the end of the line was giving me errors.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
25545
diff
changeset
|
10 $(LIBXML_LIBS) \ |
15618
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
11 $(top_builddir)/libpurple/libpurple.la |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
12 |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
13 AM_CPPFLAGS = \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
14 -DSTANDALONE \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
15 -DDATADIR=\"$(datadir)\" \ |
16591
ce049678a67b
soname versioning of libpurple. Should help resolve debian bug 421282
Stu Tomlinson <stu@nosnilmot.com>
parents:
16266
diff
changeset
|
16 -DLIBDIR=\"$(libdir)/purple-$(PURPLE_MAJOR_VERSION)/\" \ |
15618
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
17 -DLOCALEDIR=\"$(datadir)/locale\" \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
18 -DSYSCONFDIR=\"$(sysconfdir)\" \ |
22163
caeb452845ef
Fix for $(top_builddir) != $(top_srcdir)
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
16591
diff
changeset
|
19 -I$(top_builddir)/libpurple \ |
caeb452845ef
Fix for $(top_builddir) != $(top_srcdir)
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
16591
diff
changeset
|
20 -I$(top_srcdir)/libpurple \ |
15618
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
21 -I$(top_srcdir) \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
22 $(DEBUG_CFLAGS) \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
23 $(GLIB_CFLAGS) \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
24 $(DBUS_CFLAGS) \ |
7e0c0062c428
Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
25 $(LIBXML_CFLAGS) |