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 /src | |
parent | 4482f8d1f53138f7846c139b6ae2b4bf9cf34dd1 (diff) |
Compatibility for Automake 1.12.4+
Diffstat (limited to 'src')
-rw-r--r-- | src/common/Makefile.am | 2 | ||||
-rw-r--r-- | src/common/dbus/Makefile.am | 2 | ||||
-rw-r--r-- | src/fe-gtk/Makefile.am | 2 | ||||
-rw-r--r-- | src/fe-text/Makefile.am | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 409aa324..289c3fca 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -2,7 +2,7 @@ noinst_LIBRARIES = libxchatcommon.a -INCLUDES = $(COMMON_CFLAGS) +AM_CPPFLAGS = $(COMMON_CFLAGS) EXTRA_DIST = \ cfgfiles.h \ diff --git a/src/common/dbus/Makefile.am b/src/common/dbus/Makefile.am index 46940442..62728e28 100644 --- a/src/common/dbus/Makefile.am +++ b/src/common/dbus/Makefile.am @@ -19,7 +19,7 @@ BUILT_SOURCES = \ CLEANFILES = $(BUILT_SOURCES) -INCLUDES = $(COMMON_CFLAGS) $(DBUS_CFLAGS) +AM_CPPFLAGS = $(COMMON_CFLAGS) $(DBUS_CFLAGS) noinst_PROGRAMS = example example_SOURCES = example.c diff --git a/src/fe-gtk/Makefile.am b/src/fe-gtk/Makefile.am index 868656b5..0136ca84 100644 --- a/src/fe-gtk/Makefile.am +++ b/src/fe-gtk/Makefile.am @@ -2,7 +2,7 @@ localedir = $(datadir)/locale bin_PROGRAMS = hexchat -INCLUDES = $(GUI_CFLAGS) -DG_DISABLE_CAST_CHECKS -DLOCALEDIR=\"$(localedir)\" +AM_CPPFLAGS = $(GUI_CFLAGS) -DG_DISABLE_CAST_CHECKS -DLOCALEDIR=\"$(localedir)\" hexchat_LDADD = ../common/libxchatcommon.a $(GUI_LIBS) diff --git a/src/fe-text/Makefile.am b/src/fe-text/Makefile.am index 28d48060..fd0415ba 100644 --- a/src/fe-text/Makefile.am +++ b/src/fe-text/Makefile.am @@ -4,7 +4,7 @@ bin_PROGRAMS = hexchat-text EXTRA_DIST = README -INCLUDES = $(COMMON_CFLAGS) -DLOCALEDIR=\"$(localedir)\" +AM_CPPFLAGS = $(COMMON_CFLAGS) -DLOCALEDIR=\"$(localedir)\" hexchat_text_LDADD = ../common/libxchatcommon.a $(COMMON_LIBS) hexchat_text_SOURCES = fe-text.c fe-text.h |