Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ if test "x$CUNITDIR" != "x"; then
fi

if test "$FOUND_CUNIT" = "YES"; then
AC_DEFINE([HAVE_CUNIT])
AC_DEFINE([HAVE_CUNIT], [1], [Have CUnit])
CUNIT_STATUS="enabled"
if test $CUNITDIR; then
CUNIT_STATUS="$CUNITDIR"
Expand Down Expand Up @@ -319,7 +319,7 @@ elif test "x$GHTDIR" != "xno"; then
fi

if test "x$FOUND_GHT_H" = "xYES" -a "x$FOUND_GHT_LIB" = "xYES"; then
AC_DEFINE([HAVE_LIBGHT])
AC_DEFINE([HAVE_LIBGHT], [1], [Have libght])
GHT_STATUS="enabled"
if test $GHTDIR; then
GHT_STATUS="$GHTDIR"
Expand Down Expand Up @@ -368,7 +368,7 @@ elif test "x$LAZPERFDIR" != "xno"; then
fi

if test "x$FOUND_LAZPERF" = "xYES"; then
AC_DEFINE([HAVE_LAZPERF])
AC_DEFINE([HAVE_LAZPERF], [1], [Have LAZ perf])
LAZPERF_STATUS="enabled"
if test $LAZPERFDIR; then
LAZPERF_STATUS="$LAZPERFDIR/include/laz-perf"
Expand All @@ -384,7 +384,7 @@ dnl ===========================================================================
dnl Figure out where this script is running

PROJECT_SOURCE_DIR="$( cd "$( dirname $0 )" && pwd )"
AC_DEFINE_UNQUOTED([PROJECT_SOURCE_DIR],"$PROJECT_SOURCE_DIR")
AC_DEFINE_UNQUOTED([PROJECT_SOURCE_DIR], ["$PROJECT_SOURCE_DIR"], [Project source dir])


dnl ===========================================================================
Expand Down