diff options
author | Martin Willi <martin@revosec.ch> | 2013-07-17 14:45:39 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2013-07-18 14:59:19 +0200 |
commit | 19cb07b89050c0e3ea6a11e1914318c4ff1284b5 (patch) | |
tree | 46313e34da73df7e8474c24122d97261f98b1d06 /src/libcharon/plugins/eap_peap/Makefile.am | |
parent | c577b5eb44bb6f515ebbb532b8c2f802968d7771 (diff) | |
download | strongswan-19cb07b89050c0e3ea6a11e1914318c4ff1284b5.tar.bz2 strongswan-19cb07b89050c0e3ea6a11e1914318c4ff1284b5.tar.xz |
automake: replace INCLUDES by AM_CPPFLAGS
INCLUDES are now deprecated and throw warnings when using automake 1.13.
We now also differentiate AM_CPPFLAGS and AM_CFLAGS, where includes and
defines are passed to AM_CPPFLAGS only.
Diffstat (limited to 'src/libcharon/plugins/eap_peap/Makefile.am')
-rw-r--r-- | src/libcharon/plugins/eap_peap/Makefile.am | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/libcharon/plugins/eap_peap/Makefile.am b/src/libcharon/plugins/eap_peap/Makefile.am index 81f2575c7..19410a408 100644 --- a/src/libcharon/plugins/eap_peap/Makefile.am +++ b/src/libcharon/plugins/eap_peap/Makefile.am @@ -1,8 +1,11 @@ +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/libstrongswan \ + -I$(top_srcdir)/src/libhydra \ + -I$(top_srcdir)/src/libcharon \ + -I$(top_srcdir)/src/libtls -INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/libhydra \ - -I$(top_srcdir)/src/libcharon -I$(top_srcdir)/src/libtls - -AM_CFLAGS = -rdynamic +AM_CFLAGS = \ + -rdynamic if MONOLITHIC noinst_LTLIBRARIES = libstrongswan-eap-peap.la |