On Fri, Nov 08, 2013 at 12:02:56AM +0200, Uri Lublin wrote:
> Fixes the following autoreconf (automake) warning:
> Makefile.am:6: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or 
> '*_CPPFLAGS')
> 
> diff --git a/Makefile.am b/Makefile.am
> index da0b5a5..fc017d5 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -3,13 +3,13 @@ MAINTAINERCLEANFILES =
> 
>  DIST_SUBDIRS = spice-protocol
> 
> -INCLUDES =                           \
> +INC =                                        \
>       -I$(top_srcdir)/common          \
>       -I$(top_srcdir)/spice-protocol  \
>       $(NULL)
> 
>  AM_CXXFLAGS = -flto -fwhole-program
> -AM_CPPFLAGS = -DUNICODE -D_UNICODE -DOLDMSVCRT
> +AM_CPPFLAGS = -DUNICODE -D_UNICODE -DOLDMSVCRT $(INC)

Can you make that one
AM_CPPFLAGS =                           \
        -DUNICODE                       \
        -D_UNICODE                      \
        -DOLDMSVCRT                     \
        -I$(top_srcdir)/common          \
        -I$(top_srcdir)/spice-protocol  \
        $(NULL)
and remove INCLUDES/INC?
Imo it's easier to read

Christophe

Attachment: pgpHrhe7VXjHu.pgp
Description: PGP signature

_______________________________________________
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/spice-devel

Reply via email to