configure will set CLDC_CFLAGS from either pkg-config or the environment, but CLDC_CFLAGS was not used as part of INCLUDES in server/Makefile.am. CFLAGS needed to be explicitly set for make, which is resolved by this commit.
Signed-off-by: Matthew Farrellee <[email protected]> --- server/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/Makefile.am b/server/Makefile.am index 02145b0..70fd066 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES = -I$(top_srcdir)/include @GLIB_CFLAGS@ +INCLUDES = -I$(top_srcdir)/include @GLIB_CFLAGS@ @CLDC_CFLAGS@ sbin_PROGRAMS = chunkd -- To unsubscribe from this list: send the line "unsubscribe hail-devel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
