diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-01-29 22:45:00 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-01-29 22:45:00 -0800 |
commit | a452d8d36aafda4a873f8c035a3fe3fd51fabd96 (patch) | |
tree | 17ce42f7a222d165308585f6d8be3e205a5e95f0 /sesman/chansrv | |
parent | 309fca35acfeb776a422d6140ddae8be0b1dbff0 (diff) | |
download | xrdp-proprietary-a452d8d36aafda4a873f8c035a3fe3fd51fabd96.tar.gz xrdp-proprietary-a452d8d36aafda4a873f8c035a3fe3fd51fabd96.zip |
Merge AM_CFLAGS and INCLUDES info AM_CPPFLAGS
AM_CPPFLAGS is for flags passed to the preprocessor, such as defines and
includes. AM_CFLAGS is for flags affecting the compiler, such as debug
and optimization settings.
INCLUDES is an obsolete name. Users can pass INCLUDES and break
compilation. AM_CPPFLAGS is more explicit that the flags come from
Automake and should not be overridden.
Diffstat (limited to 'sesman/chansrv')
-rw-r--r-- | sesman/chansrv/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sesman/chansrv/Makefile.am b/sesman/chansrv/Makefile.am index 755de786..1a0be24c 100644 --- a/sesman/chansrv/Makefile.am +++ b/sesman/chansrv/Makefile.am @@ -31,14 +31,12 @@ EXTRA_DEFINES += -DXRDP_OPUS EXTRA_LIBS += -lopus endif -AM_CFLAGS = \ +AM_CPPFLAGS = \ -DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \ -DXRDP_SBIN_PATH=\"${sbindir}\" \ -DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \ -DXRDP_PID_PATH=\"${localstatedir}/run\" \ - $(EXTRA_DEFINES) - -INCLUDES = \ + $(EXTRA_DEFINES) \ -I$(top_srcdir)/common \ $(EXTRA_INCLUDES) |