autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Possible bug: AC_USE_SYSTEM_EXTENSIONS ignores "AS_IF" conditionals


From: David A. Wheeler
Subject: Possible bug: AC_USE_SYSTEM_EXTENSIONS ignores "AS_IF" conditionals
Date: Sat, 20 Sep 2014 20:19:08 -0400 (EDT)

I *think* that AC_USE_SYSTEM_EXTENSIONS has a bug; it seems to ignore 
conditionals.

E.G., given this configure.ac:
====
AC_PREREQ([2.63])
AC_INIT([bug], [0.01])
AC_CONFIG_HEADERS([config.h])
AS_IF([test 0 = 1 ],
 [AC_USE_SYSTEM_EXTENSIONS])
AC_OUTPUT
====

The file "config.h" still enables extensions, even though the test is false.

I'm trying to conditionally use extensions like this:
 AS_IF([test "$enable_all_system_extensions" = "yes"],
  [AC_USE_SYSTEM_EXTENSIONS])

Am I going about this the wrong way?

Suggestions welcome.

--- David A. Wheeler




reply via email to

[Prev in Thread] Current Thread [Next in Thread]