view pidgin/plugins/musicmessaging/Makefile.am @ 28979:c31707e63726

Fix reset-formatting for some cases. When 'wbfo' (whole buffer formatting only) is set for an imhtml: - always reset formatting of all the text in the imhtml When 'wbfo' is not set: - if some text is selected, reset formatting for the selected text - if no text is selected, reset formatting for the current location (insert) only, and leave the rest of the text alone. We were doing this last thing wrong. Fixes #4499.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Fri, 20 Nov 2009 08:02:10 +0000
parents e33a91b8b8f6
children
line wrap: on
line source

EXTRA_DIST = \
	music.png

musicmessagingdir = $(libdir)/pidgin

musicmessaging_la_LDFLAGS = -module -avoid-version

if PLUGINS
if ENABLE_DBUS

musicmessagingpixdir = $(datadir)/pixmaps/pidgin/buttons
musicmessagingpix_DATA = music.png

musicmessaging_LTLIBRARIES = musicmessaging.la

musicmessaging_la_SOURCES = \
	musicmessaging.c

musicmessaging_la_LIBADD = $(GTK_LIBS) $(DBUS_LIBS)

CLEANFILES              = music-messaging-bindings.c

.PHONY: always

$(top_builddir)/libpurple/dbus-types.h: always
	cd $(@D) && $(MAKE) $(AM_MAKEFLAGS) $(@F)

music-messaging-bindings.c: $(top_srcdir)/libpurple/dbus-analyze-functions.py $(musicmessaging_la_SOURCES)
	cat $(srcdir)/$(musicmessaging_la_SOURCES) | \
	$(PYTHON) $(top_srcdir)/libpurple/dbus-analyze-functions.py --export-only > $@

$(musicmessaging_la_OBJECTS) musicmessaging.so: music-messaging-bindings.c $(top_builddir)/libpurple/dbus-types.h

endif
endif

AM_CPPFLAGS = \
	-DDATADIR=\"$(datadir)\" \
	-I$(top_builddir)/libpurple \
	-I$(top_srcdir)/libpurple \
	-I$(top_srcdir)/pidgin \
	$(DEBUG_CFLAGS) \
	$(GTK_CFLAGS) \
	$(DBUS_CFLAGS)