Mercurial > pidgin
view plugins/ssl/Makefile.am @ 9428:796f510a6e19
[gaim-migrate @ 10247]
Arun A Tharuvai writes:
Slash commands with "w" (and "W") ignore space
between it and the next command. This causes the
trailing space to either: get treated as the first
character of of an immediately following "s" (or "S")
argument, or get treated as the entire contents of any
following "w" (or "W") arguments.
This patch of his, #982083, fixes those issues.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Tue, 29 Jun 2004 21:34:07 +0000 |
parents | c7dc0dba2c2c |
children | 2cc05a9e944d |
line wrap: on
line source
EXTRA_DIST = \ Makefile.mingw plugindir = $(libdir)/gaim ssl_la_LDFLAGS = -module -avoid-version ssl_gnutls_la_LDFLAGS = -module -avoid-version ssl_nss_la_LDFLAGS = -module -avoid-version if PLUGINS plugin_LTLIBRARIES = \ ssl.la \ ssl-gnutls.la \ ssl-nss.la ssl_la_SOURCES = ssl.c ssl_gnutls_la_SOURCES = ssl-gnutls.c ssl_nss_la_SOURCES = ssl-nss.c ssl_gnutls_la_LIBADD = $(GNUTLS_LIBS) ssl_nss_la_LIBADD = $(NSS_LIBS) endif # PLUGINS AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DLIBDIR=\"$(libdir)/gaim/\" \ -I$(top_srcdir)/src \ $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) \ $(PLUGIN_CFLAGS) \ $(NSS_CFLAGS) \ $(GNUTLS_CFLAGS)