From 205c944f748c10a2fc8545d421432c62e12a19db Mon Sep 17 00:00:00 2001 From: "R. Bernstein" Date: Fri, 25 Dec 2009 16:04:25 -0500 Subject: [PATCH] Show whether we are building C++ programs in configure output. --- configure.ac | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 7393f9c6..7d75ac68 100644 --- a/configure.ac +++ b/configure.ac @@ -689,10 +689,11 @@ head -n 254 config.h >> include/cdio/cdio_config.h AC_OUTPUT -echo "Using CD-ROM drivers: $cd_drivers" -echo "Building cd-paranoia: $(test "x$enable_cd_paranoia" = "xyes" && echo yes || echo no)" -echo "Building cd-info : $(test "x$enable_cd_info" = "xyes" && echo yes || echo no)" -echo "Building cd-read : $(test "x$enable_cd_read" = "xyes" && echo yes || echo no)" -echo "Building cdda-player: $(test "x$enable_cdda_player" = "xyes" && echo yes || echo no)" -echo "Building iso-info : $(test "x$enable_iso_info" = "xyes" && echo yes || echo no)" -echo "Building iso-read : $(test "x$enable_iso_read" = "xyes" && echo yes || echo no)" +echo "Using CD-ROM drivers : $cd_drivers" +echo "Building cd-paranoia : $(test "x$enable_cd_paranoia" = "xyes" && echo yes || echo no)" +echo "Building cd-info : $(test "x$enable_cd_info" = "xyes" && echo yes || echo no)" +echo "Building cd-read : $(test "x$enable_cd_read" = "xyes" && echo yes || echo no)" +echo "Building cdda-player : $(test "x$enable_cdda_player" = "xyes" && echo yes || echo no)" +echo "Building iso-info : $(test "x$enable_iso_info" = "xyes" && echo yes || echo no)" +echo "Building iso-read : $(test "x$enable_iso_read" = "xyes" && echo yes || echo no)" +echo "Building C++ programs: $(test "x$enable_cxx" != "xno" && echo yes || echo no)"