Mercurial > pidgin
annotate libgaim/plugins/ssl/Makefile.am @ 14797:aae32cf1caac
[gaim-migrate @ 17562]
SF Patch #1581054 from Jason Lynch
Fixes SF Bug #1581014
'Several switches in the configure script
(startup-notification and gtkspell, among others)
explicitly set the relevant enable_x variable to "no"
in the AC_ARG_ENABLE macro in the "action-if-given"
area, with the side effect that if someone explicitly
passes --enable-feature, the feature will be disabled.
replacing the "no" with "$enableval" as in other
AC_ARG_ENABLE calls fixes the problem.'
The signature is:
AC_ARG_ENABLE (FEATURE, HELP-STRING, [ACTION-IF-GIVEN], [ACTION-IF-NOT-GIVEN])
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Sun, 22 Oct 2006 05:12:28 +0000 |
| parents | 69590c55c748 |
| children |
| rev | line source |
|---|---|
| 14192 | 1 EXTRA_DIST = \ |
| 2 Makefile.mingw | |
| 3 | |
| 4 plugindir = $(libdir)/gaim | |
| 5 | |
| 14674 | 6 ssl_la_LDFLAGS = -module -avoid-version |
| 7 ssl_gnutls_la_LDFLAGS = -module -avoid-version | |
| 8 ssl_nss_la_LDFLAGS = -module -avoid-version | |
| 14192 | 9 |
| 10 if PLUGINS | |
| 11 | |
| 12 plugin_LTLIBRARIES = \ | |
| 13 ssl.la \ | |
| 14 ssl-gnutls.la \ | |
| 15 ssl-nss.la | |
| 16 | |
| 17 ssl_la_SOURCES = ssl.c | |
| 18 ssl_gnutls_la_SOURCES = ssl-gnutls.c | |
| 19 ssl_nss_la_SOURCES = ssl-nss.c | |
| 20 | |
| 14674 | 21 ssl_la_LIBADD = $(GLIB_LIBS) |
| 22 ssl_gnutls_la_LIBADD = $(GLIB_LIBS) $(GNUTLS_LIBS) | |
| 23 ssl_nss_la_LIBADD = $(GLIB_LIBS) $(NSS_LIBS) | |
| 14192 | 24 |
| 25 endif # PLUGINS | |
| 26 | |
| 27 AM_CPPFLAGS = \ | |
| 28 -DDATADIR=\"$(datadir)\" \ | |
| 29 -DLIBDIR=\"$(libdir)/gaim/\" \ | |
| 30 -I$(top_srcdir)/libgaim \ | |
| 31 $(DEBUG_CFLAGS) \ | |
| 32 $(GLIB_CFLAGS) \ | |
| 33 $(PLUGIN_CFLAGS) \ | |
| 34 $(NSS_CFLAGS) \ | |
| 35 $(GNUTLS_CFLAGS) |
