Mercurial > pidgin
annotate src/protocols/rendezvous/Makefile.am @ 10873:c522fdb85dbc
[gaim-migrate @ 12561]
sf patch #1189893, from Steven Garrity
"This patch slightly changes the shade of the blue color
of inactive tabs on a group chat when someone uses your
nickname.
The previous blue was a bit too close to the default
black, so it was difficult to notice. This blue is a
little bit brighter and more staturated.
Here's a screenshot to show the difference (current
blue in the left column, blue from this patch in the
right column):
http://actsofvolition.com/images/screenshots/gaim/tab-colors.png
The only thing changes is the HEX for the color, so
this could easily be applied to oldstatus as well."
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Tue, 26 Apr 2005 02:02:43 +0000 |
| parents | 8bc7ba019e96 |
| children | 2cc05a9e944d |
| rev | line source |
|---|---|
| 8489 | 1 EXTRA_DIST = \ |
| 2 Makefile.mingw | |
| 3 | |
| 4 pkgdir = $(libdir)/gaim | |
| 5 | |
| 6 RENDEZVOUSSOURCES = \ | |
| 10549 | 7 direct.c \ |
| 8 direct.h \ | |
| 8489 | 9 mdns.c \ |
| 9252 | 10 mdns.h \ |
| 8738 | 11 mdns_cache.c \ |
| 9252 | 12 mdns_cache.h \ |
| 8489 | 13 rendezvous.c |
| 14 | |
| 15 AM_CFLAGS = $(st) | |
| 16 | |
| 17 librendezvous_la_LDFLAGS = -module -avoid-version | |
| 18 | |
| 19 if STATIC_RENDEZVOUS | |
| 20 | |
| 21 st = -DGAIM_STATIC_PRPL | |
| 22 noinst_LIBRARIES = librendezvous.a | |
| 23 librendezvous_a_SOURCES = $(RENDEZVOUSSOURCES) | |
| 24 librendezvous_a_CFLAGS = $(AM_CFLAGS) | |
| 25 | |
| 26 else | |
| 27 | |
| 28 st = | |
| 29 pkg_LTLIBRARIES = librendezvous.la | |
| 30 librendezvous_la_SOURCES = $(RENDEZVOUSSOURCES) | |
| 31 | |
| 32 endif | |
| 33 | |
| 34 | |
| 35 AM_CPPFLAGS = \ | |
| 36 -I$(top_srcdir)/src \ | |
| 37 $(GLIB_CFLAGS) \ | |
| 38 $(DEBUG_CFLAGS) |
