diff options
author | TingPing <tingping@fedoraproject.org> | 2014-09-06 08:04:52 -0400 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2014-12-15 11:07:46 -0500 |
commit | 0e4164ad0c8744efcbcceda2d7c1d70aa5e1d71a (patch) | |
tree | 3a161f148302a6797ae532357048aac465b14275 /plugins/fishlim | |
parent | 94568bc5179b5e04354eaf2b40d36e0c53bf9405 (diff) |
configure: Improve various build flags
- Store openssl flags in own vars - Share some common flags for plugins - Fix building plugins on win32 - Store all glib flags in one var - Don't link against every lib for each plugin - Don't hardcode ldflags for sysinfo
Diffstat (limited to 'plugins/fishlim')
-rw-r--r-- | plugins/fishlim/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/fishlim/Makefile.am b/plugins/fishlim/Makefile.am index 255ea0c3..c57a4de9 100644 --- a/plugins/fishlim/Makefile.am +++ b/plugins/fishlim/Makefile.am @@ -4,6 +4,6 @@ libdir = $(hexchatlibdir) lib_LTLIBRARIES = fishlim.la fishlim_la_SOURCES = fish.c irc.c keystore.c misc.c plugin_hexchat.c -fishlim_la_LDFLAGS = -avoid-version -module -fishlim_la_LIBADD = -AM_CPPFLAGS = $(COMMON_CFLAGS) -I$(srcdir)/../../src/common +fishlim_la_LDFLAGS = $(PLUGIN_LDFLAGS) -module +fishlim_la_LIBADD = $(GLIB_LIBS) $(OPENSSL_LIBS) +fishlim_la_CFLAGS = $(GLIB_CFLAGS) $(OPENSSL_CFLAGS) -I$(top_srcdir)/src/common |