From 440ac2b7523124a8d2e8104ad1468227911d28df Mon Sep 17 00:00:00 2001 From: vijay gopal chilkuri Date: Tue, 22 Jun 2021 20:44:51 +0530 Subject: [PATCH] Added CFLAGS and CPPFLAGS for Chameleon. #20 --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 912cc30..74c6f78 100644 --- a/configure.ac +++ b/configure.ac @@ -112,7 +112,9 @@ case "$with_chameleon" in AC_MSG_ERROR([--with-chameleon path does not point to a directory]) fi LIBCHAMELEON_PATH="-L$with_chameleon/lib" + CFLAGS="$LIBCHAMELEON_CFLAGS $CFLAGS" CXXFLAGS="-I$with_chameleon/include $CXXFLAGS" + CPPFLAGS="$LIBCHAMELEON_CFLAGS $CPPFLAGS" esac ]) AH_TEMPLATE(USE_CHAMELEON,[Chameleon support is available])