im.pidgin.cpw.rekkanoryo.examples: 32eaeef4f8f43f65f75860e9011742b2835185bd

rekkanoryo at cpw.pidgin.im rekkanoryo at cpw.pidgin.im
Mon Oct 8 22:25:34 EDT 2007


-----------------------------------------------------------------
Revision: 32eaeef4f8f43f65f75860e9011742b2835185bd
Ancestor: 2493fec671875f851e0f4d5c2dc1a3dc76593a1e
Author: rekkanoryo at cpw.pidgin.im
Date: 2007-10-08T23:28:31
Branch: im.pidgin.cpw.rekkanoryo.examples

Modified files:
        libpurple/plugins/Makefile.am

ChangeLog: 

Adding the request API example to Makefile.am.  Also, I'm anal and like to
see consistent spacing in the file, so I fixed some obvious stuff.

-------------- next part --------------
============================================================
--- libpurple/plugins/Makefile.am	062a44d8df3bfe3f9e5756ecf6e7fde29d836736
+++ libpurple/plugins/Makefile.am	fe3063f9bb809d76afb4c4e5b16358475f848b25
@@ -24,39 +24,40 @@ plugindir = $(libdir)/purple-$(PURPLE_MA
 
 plugindir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
 
-autoaccept_la_LDFLAGS       = -module -avoid-version
-buddynote_la_LDFLAGS        = -module -avoid-version
-ciphertest_la_LDFLAGS		= -module -avoid-version
-codeinline_la_LDFLAGS		= -module -avoid-version
-debug_example_la_LDFLAGS    = -module -avoid-version
-helloworld_la_LDFLAGS       = -module -avoid-version
-idle_la_LDFLAGS             = -module -avoid-version
-joinpart_la_LDFLAGS         = -module -avoid-version
-log_reader_la_LDFLAGS       = -module -avoid-version
-newline_la_LDFLAGS          = -module -avoid-version
-notify_example_la_LDFLAGS   = -module -avoid-version
-offlinemsg_la_LDFLAGS       = -module -avoid-version
+autoaccept_la_LDFLAGS         = -module -avoid-version
+buddynote_la_LDFLAGS          = -module -avoid-version
+ciphertest_la_LDFLAGS         = -module -avoid-version
+codeinline_la_LDFLAGS         = -module -avoid-version
+debug_example_la_LDFLAGS      = -module -avoid-version
+helloworld_la_LDFLAGS         = -module -avoid-version
+idle_la_LDFLAGS               = -module -avoid-version
+joinpart_la_LDFLAGS           = -module -avoid-version
+log_reader_la_LDFLAGS         = -module -avoid-version
+newline_la_LDFLAGS            = -module -avoid-version
+notify_example_la_LDFLAGS     = -module -avoid-version
+offlinemsg_la_LDFLAGS         = -module -avoid-version
 pluginpref_example_la_LDFLAGS = -module -avoid-version
-psychic_la_LDFLAGS          = -module -avoid-version
-signals_test_la_LDFLAGS		= -module -avoid-version
-simple_la_LDFLAGS			= -module -avoid-version
-statenotify_la_LDFLAGS      = -module -avoid-version
+psychic_la_LDFLAGS            = -module -avoid-version
+request_example_la_LDFLAGS    = -module -avoid-version
+signals_test_la_LDFLAGS       = -module -avoid-version
+simple_la_LDFLAGS             = -module -avoid-version
+statenotify_la_LDFLAGS        = -module -avoid-version
 
 # this can't be in a conditional otherwise automake 1.4 yells
-dbus_example_la_LDFLAGS     = -module -avoid-version
+dbus_example_la_LDFLAGS       = -module -avoid-version
 
 if PLUGINS
 
 plugin_LTLIBRARIES = \
-	autoaccept.la       \
-	buddynote.la        \
-	idle.la             \
-	joinpart.la         \
-	log_reader.la       \
-	newline.la          \
-	offlinemsg.la       \
-	psychic.la          \
-	statenotify.la      \
+	autoaccept.la \
+	buddynote.la \
+	idle.la \
+	joinpart.la \
+	log_reader.la \
+	newline.la \
+	offlinemsg.la \
+	psychic.la \
+	statenotify.la \
 	$(DBUS_LTLIB)
 
 noinst_LTLIBRARIES = \
@@ -66,42 +67,44 @@ noinst_LTLIBRARIES = \
 	helloworld.la \
 	notify_example.la \
 	pluginpref_example.la \
+	request_example.la \
 	signals_test.la \
 	simple.la
 
-autoaccept_la_SOURCES       = autoaccept.c
-buddynote_la_SOURCES        = buddynote.c
-ciphertest_la_SOURCES		= ciphertest.c
-codeinline_la_SOURCES		= codeinline.c
-debug_example_la_SOURCES = debug_example.c
-helloworld_la_SOURCES       = helloworld.c
-idle_la_SOURCES             = idle.c
-joinpart_la_SOURCES         = joinpart.c
-log_reader_la_SOURCES       = log_reader.c
-newline_la_SOURCES          = newline.c
-notify_example_la_SOURCES   = notify_example.c
-offlinemsg_la_SOURCES       = offlinemsg.c
+autoaccept_la_SOURCES         = autoaccept.c
+buddynote_la_SOURCES          = buddynote.c
+ciphertest_la_SOURCES         = ciphertest.c
+codeinline_la_SOURCES         = codeinline.c
+debug_example_la_SOURCES      = debug_example.c
+helloworld_la_SOURCES         = helloworld.c
+idle_la_SOURCES               = idle.c
+joinpart_la_SOURCES           = joinpart.c
+log_reader_la_SOURCES         = log_reader.c
+newline_la_SOURCES            = newline.c
+notify_example_la_SOURCES     = notify_example.c
+offlinemsg_la_SOURCES         = offlinemsg.c
 pluginpref_example_la_SOURCES = pluginpref_example.c
-psychic_la_SOURCES          = psychic.c
-signals_test_la_SOURCES		= signals-test.c
-simple_la_SOURCES			= simple.c
-statenotify_la_SOURCES      = statenotify.c
+psychic_la_SOURCES            = psychic.c
+request_example_la_SOURCES    = request_example.c
+signals_test_la_SOURCES       = signals-test.c
+simple_la_SOURCES             = simple.c
+statenotify_la_SOURCES        = statenotify.c
 
-autoaccept_la_LIBADD        = $(GLIB_LIBS)
-buddynote_la_LIBADD         = $(GLIB_LIBS)
-ciphertest_la_LIBADD		= $(GLIB_LIBS)
-codeinline_la_LIBADD		= $(GLIB_LIBS)
-idle_la_LIBADD              = $(GLIB_LIBS)
-joinpart_la_LIBADD          = $(GLIB_LIBS)
-log_reader_la_LIBADD        = $(GLIB_LIBS)
-newline_la_LIBADD           = $(GLIB_LIBS)
-notify_example_la_LIBADD    = $(GLIB_LIBS)
-offlinemsg_la_LIBADD        = $(GLIB_LIBS)
+autoaccept_la_LIBADD         = $(GLIB_LIBS)
+buddynote_la_LIBADD          = $(GLIB_LIBS)
+ciphertest_la_LIBADD         = $(GLIB_LIBS)
+codeinline_la_LIBADD         = $(GLIB_LIBS)
+idle_la_LIBADD               = $(GLIB_LIBS)
+joinpart_la_LIBADD           = $(GLIB_LIBS)
+log_reader_la_LIBADD         = $(GLIB_LIBS)
+newline_la_LIBADD            = $(GLIB_LIBS)
+notify_example_la_LIBADD     = $(GLIB_LIBS)
+offlinemsg_la_LIBADD         = $(GLIB_LIBS)
 pluginpref_example_la_LIBADD = $(GLIB_LIBS)
-psychic_la_LIBADD           = $(GLIB_LIBS)
-signals_test_la_LIBADD		= $(GLIB_LIBS)
-simple_la_LIBADD			= $(GLIB_LIBS)
-statenotify_la_LIBADD       = $(GLIB_LIBS)
+psychic_la_LIBADD            = $(GLIB_LIBS)
+signals_test_la_LIBADD       = $(GLIB_LIBS)
+simple_la_LIBADD             = $(GLIB_LIBS)
+statenotify_la_LIBADD        = $(GLIB_LIBS)
 
 if ENABLE_DBUS
 


More information about the Commits mailing list