comparison libgaim/Makefile.am @ 14520:82b59abcaee4

[gaim-migrate @ 17240] SF Patch #1492561 from Lars T. Mikkelsen "This patch adds gaim-url-handler, a URL handler for most protocols in Gaim. The gaim-url-handler is similar to (and based on) gaim-remote, however, it uses the native URL format of each protocol. Furthermore, the patch includes a GConf schema, which allows Gnome applications to use the URL handler." With this and gaim-send/gaim-send-async, we should be able to drop gaim-remote. Please let me know if you object, or I'll remove gaim-remote shortly. For the record, I know this doesn't support 100% of the ChatZilla IRC URL spec, and I haven't investigated the XMPP URL spec beyond a casual first look. We can tweak these things later -- I figured it was important to get the bulk of the code in place. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 11 Sep 2006 02:30:59 +0000
parents bb99380c67c3
children 565f90ad0c84
comparison
equal deleted inserted replaced
14519:e548832f0e82 14520:82b59abcaee4
3 dbus-analyze-types.py \ 3 dbus-analyze-types.py \
4 gaim-notifications-example \ 4 gaim-notifications-example \
5 gaim-remote \ 5 gaim-remote \
6 gaim-send \ 6 gaim-send \
7 gaim-send-async \ 7 gaim-send-async \
8 gaim-url-handler \
8 Makefile.mingw \ 9 Makefile.mingw \
9 win32/global.mak \ 10 win32/global.mak \
10 win32/libc_interface.c \ 11 win32/libc_interface.c \
11 win32/libc_interface.h \ 12 win32/libc_interface.h \
12 win32/libc_internal.h \ 13 win32/libc_internal.h \
15 win32/targets.mak \ 16 win32/targets.mak \
16 win32/wgaimerror.h \ 17 win32/wgaimerror.h \
17 win32/win32dep.c \ 18 win32/win32dep.c \
18 win32/win32dep.h 19 win32/win32dep.h
19 20
20 SUBDIRS = plugins protocols 21 if USE_GCONFTOOL
22 GCONF_DIR=gconf
23 endif
24
25 SUBDIRS = $(GCONF_DIR) plugins protocols
21 26
22 gaim_coresources = \ 27 gaim_coresources = \
23 account.c \ 28 account.c \
24 accountopt.c \ 29 accountopt.c \
25 blist.c \ 30 blist.c \
185 190
186 gaim-client-example.$(OBJEXT): gaim-client-bindings.h 191 gaim-client-example.$(OBJEXT): gaim-client-bindings.h
187 192
188 # scripts 193 # scripts
189 194
190 bin_SCRIPTS = gaim-notifications-example gaim-remote gaim-send gaim-send-async 195 bin_SCRIPTS = gaim-notifications-example gaim-remote gaim-send gaim-send-async gaim-url-handler
191 196
192 endif 197 endif
193 198
194 lib_LTLIBRARIES = libgaim.la $(libgaim_client_lib) 199 lib_LTLIBRARIES = libgaim.la $(libgaim_client_lib)
195 200