diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-13 22:26:35 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-13 22:26:35 +0200 |
commit | 84c536e4ea7a5f517822c9928222f066f2faf3fe (patch) | |
tree | a40eed544b6840c375de3004c04d85d44377d515 /plugins | |
parent | 4482f8d1f53138f7846c139b6ae2b4bf9cf34dd1 (diff) |
Compatibility for Automake 1.12.4+
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/checksum/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/doat/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/fishlim/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/perl/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/python/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/sasl/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/tcl/Makefile.am | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/plugins/checksum/Makefile.am b/plugins/checksum/Makefile.am index 747d5de4..7c0eb686 100644 --- a/plugins/checksum/Makefile.am +++ b/plugins/checksum/Makefile.am @@ -6,4 +6,4 @@ lib_LTLIBRARIES = checksum.la checksum_la_SOURCES = checksum.c checksum_la_LDFLAGS = -avoid-version -module checksum_la_LIBADD = -INCLUDES = $(COMMON_CFLAGS) -I$(srcdir)/.. +AM_CPPFLAGS = $(COMMON_CFLAGS) -I$(srcdir)/.. diff --git a/plugins/doat/Makefile.am b/plugins/doat/Makefile.am index 8be75450..5ed0ba7a 100644 --- a/plugins/doat/Makefile.am +++ b/plugins/doat/Makefile.am @@ -6,5 +6,5 @@ lib_LTLIBRARIES = doat.la doat_la_SOURCES = doat.c doat_la_LDFLAGS = -avoid-version -module doat_la_LIBADD = -INCLUDES = $(COMMON_CFLAGS) -I$(srcdir)/.. +AM_CPPFLAGS = $(COMMON_CFLAGS) -I$(srcdir)/.. diff --git a/plugins/fishlim/Makefile.am b/plugins/fishlim/Makefile.am index 951af6cd..0f1189de 100644 --- a/plugins/fishlim/Makefile.am +++ b/plugins/fishlim/Makefile.am @@ -6,4 +6,4 @@ lib_LTLIBRARIES = fishlim.la fishlim_la_SOURCES = fish.c irc.c keystore.c misc.c plugin_xchat.c fishlim_la_LDFLAGS = -avoid-version -module fishlim_la_LIBADD = -INCLUDES = $(COMMON_CFLAGS) -I$(srcdir)/.. +AM_CPPFLAGS = $(COMMON_CFLAGS) -I$(srcdir)/.. diff --git a/plugins/perl/Makefile.am b/plugins/perl/Makefile.am index eefb785b..a8b3a297 100644 --- a/plugins/perl/Makefile.am +++ b/plugins/perl/Makefile.am @@ -12,7 +12,7 @@ perl_la_LDFLAGS = -avoid-version -module perl_la_LIBADD = $(PERL_LDFLAGS) BUILT_SOURCES = xchat.pm.h irc.pm.h #CFLAGS = @CFLAGS@ -Wno-unused -INCLUDES = $(PERL_CFLAGS) $(COMMON_CFLAGS) -I$(srcdir)/.. +AM_CPPFLAGS = $(PERL_CFLAGS) $(COMMON_CFLAGS) -I$(srcdir)/.. CLEANFILES = xchat.pm.h irc.pm.h xchat.pm.h irc.pm.h: lib/Xchat.pm lib/Xchat/Embed.pm \ lib/Xchat/List/Network.pm lib/Xchat/List/Network/Entry.pm \ diff --git a/plugins/python/Makefile.am b/plugins/python/Makefile.am index 89d5f15f..078db44b 100644 --- a/plugins/python/Makefile.am +++ b/plugins/python/Makefile.am @@ -6,5 +6,5 @@ lib_LTLIBRARIES = python.la python_la_SOURCES = python.c python_la_LDFLAGS = -avoid-version -module python_la_LIBADD = $(PY_LIBS) -INCLUDES = $(PY_CFLAGS) $(COMMON_CFLAGS) -I$(srcdir)/.. +AM_CPPFLAGS = $(PY_CFLAGS) $(COMMON_CFLAGS) -I$(srcdir)/.. diff --git a/plugins/sasl/Makefile.am b/plugins/sasl/Makefile.am index d6f74797..0a9d169f 100644 --- a/plugins/sasl/Makefile.am +++ b/plugins/sasl/Makefile.am @@ -6,5 +6,5 @@ lib_LTLIBRARIES = sasl.la sasl_la_SOURCES = sasl.c sasl_la_LDFLAGS = -avoid-version -module sasl_la_LIBADD = -INCLUDES = $(COMMON_CFLAGS) -I$(srcdir)/.. +AM_CPPFLAGS = $(COMMON_CFLAGS) -I$(srcdir)/.. diff --git a/plugins/tcl/Makefile.am b/plugins/tcl/Makefile.am index da2eb74b..aaf1b698 100644 --- a/plugins/tcl/Makefile.am +++ b/plugins/tcl/Makefile.am @@ -7,4 +7,4 @@ lib_LTLIBRARIES = tcl.la tcl_la_SOURCES = tclplugin.c tcl_la_LDFLAGS = -avoid-version -module tcl_la_LIBADD = $(TCL_LIBS) -INCLUDES = $(TCL_CFLAGS) $(COMMON_CFLAGS) -I$(srcdir)/.. +AM_CPPFLAGS = $(TCL_CFLAGS) $(COMMON_CFLAGS) -I$(srcdir)/.. |