configure: Rerun "./autogen.sh --maintainer"

This commit is contained in:
Cosmin Truta 2023-08-02 21:42:10 +03:00
parent 22ad62c25e
commit 5a6ea1822b
2 changed files with 142 additions and 61 deletions

View File

@ -16,7 +16,7 @@
# Makefile.am, the source file for Makefile.in (and hence Makefile), is # Makefile.am, the source file for Makefile.in (and hence Makefile), is
# #
# Copyright (c) 2018 Cosmin Truta # Copyright (c) 2018-2023 Cosmin Truta
# Copyright (c) 2004-2016 Glenn Randers-Pehrson # Copyright (c) 2004-2016 Glenn Randers-Pehrson
# #
# This code is released under the libpng license. # This code is released under the libpng license.
@ -100,11 +100,13 @@ PRE_UNINSTALL = :
POST_UNINSTALL = : POST_UNINSTALL = :
build_triplet = @build@ build_triplet = @build@
host_triplet = @host@ host_triplet = @host@
check_PROGRAMS = pngtest$(EXEEXT) pngunknown$(EXEEXT) \ @ENABLE_TESTS_TRUE@check_PROGRAMS = pngtest$(EXEEXT) \
pngstest$(EXEEXT) pngvalid$(EXEEXT) pngimage$(EXEEXT) \ @ENABLE_TESTS_TRUE@ pngunknown$(EXEEXT) pngstest$(EXEEXT) \
pngcp$(EXEEXT) $(am__EXEEXT_1) @ENABLE_TESTS_TRUE@ pngvalid$(EXEEXT) pngimage$(EXEEXT) \
@HAVE_CLOCK_GETTIME_TRUE@am__append_1 = timepng @ENABLE_TESTS_TRUE@ pngcp$(EXEEXT) $(am__EXEEXT_1)
bin_PROGRAMS = pngfix$(EXEEXT) png-fix-itxt$(EXEEXT) @ENABLE_TESTS_TRUE@@HAVE_CLOCK_GETTIME_TRUE@am__append_1 = timepng
@ENABLE_TOOLS_TRUE@bin_PROGRAMS = pngfix$(EXEEXT) \
@ENABLE_TOOLS_TRUE@ png-fix-itxt$(EXEEXT)
@PNG_ARM_NEON_TRUE@am__append_2 = arm/arm_init.c\ @PNG_ARM_NEON_TRUE@am__append_2 = arm/arm_init.c\
@PNG_ARM_NEON_TRUE@ arm/filter_neon.S arm/filter_neon_intrinsics.c \ @PNG_ARM_NEON_TRUE@ arm/filter_neon.S arm/filter_neon_intrinsics.c \
@PNG_ARM_NEON_TRUE@ arm/palette_neon_intrinsics.c @PNG_ARM_NEON_TRUE@ arm/palette_neon_intrinsics.c
@ -147,7 +149,8 @@ am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" \
"$(DESTDIR)$(bindir)" "$(DESTDIR)$(man3dir)" \ "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man3dir)" \
"$(DESTDIR)$(man5dir)" "$(DESTDIR)$(pkgconfigdir)" \ "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(pkgconfigdir)" \
"$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pkgincludedir)"
@HAVE_CLOCK_GETTIME_TRUE@am__EXEEXT_1 = timepng$(EXEEXT) @ENABLE_TESTS_TRUE@@HAVE_CLOCK_GETTIME_TRUE@am__EXEEXT_1 = \
@ENABLE_TESTS_TRUE@@HAVE_CLOCK_GETTIME_TRUE@ timepng$(EXEEXT)
PROGRAMS = $(bin_PROGRAMS) PROGRAMS = $(bin_PROGRAMS)
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \ am__vpath_adj = case $$p in \
@ -216,33 +219,56 @@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LINK = $(LIBTOOL) $(AM_V_lt) \
$(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS) $(LDFLAGS) -o \ $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS) $(LDFLAGS) -o \
$@ $@
am_png_fix_itxt_OBJECTS = contrib/tools/png-fix-itxt.$(OBJEXT) am__png_fix_itxt_SOURCES_DIST = contrib/tools/png-fix-itxt.c
@ENABLE_TOOLS_TRUE@am_png_fix_itxt_OBJECTS = \
@ENABLE_TOOLS_TRUE@ contrib/tools/png-fix-itxt.$(OBJEXT)
png_fix_itxt_OBJECTS = $(am_png_fix_itxt_OBJECTS) png_fix_itxt_OBJECTS = $(am_png_fix_itxt_OBJECTS)
png_fix_itxt_LDADD = $(LDADD) png_fix_itxt_LDADD = $(LDADD)
am_pngcp_OBJECTS = contrib/tools/pngcp.$(OBJEXT) am__pngcp_SOURCES_DIST = contrib/tools/pngcp.c
@ENABLE_TESTS_TRUE@am_pngcp_OBJECTS = contrib/tools/pngcp.$(OBJEXT)
pngcp_OBJECTS = $(am_pngcp_OBJECTS) pngcp_OBJECTS = $(am_pngcp_OBJECTS)
pngcp_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngcp_DEPENDENCIES = \
am_pngfix_OBJECTS = contrib/tools/pngfix.$(OBJEXT) @ENABLE_TESTS_TRUE@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
am__pngfix_SOURCES_DIST = contrib/tools/pngfix.c
@ENABLE_TOOLS_TRUE@am_pngfix_OBJECTS = contrib/tools/pngfix.$(OBJEXT)
pngfix_OBJECTS = $(am_pngfix_OBJECTS) pngfix_OBJECTS = $(am_pngfix_OBJECTS)
pngfix_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TOOLS_TRUE@pngfix_DEPENDENCIES = \
am_pngimage_OBJECTS = contrib/libtests/pngimage.$(OBJEXT) @ENABLE_TOOLS_TRUE@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
am__pngimage_SOURCES_DIST = contrib/libtests/pngimage.c
@ENABLE_TESTS_TRUE@am_pngimage_OBJECTS = \
@ENABLE_TESTS_TRUE@ contrib/libtests/pngimage.$(OBJEXT)
pngimage_OBJECTS = $(am_pngimage_OBJECTS) pngimage_OBJECTS = $(am_pngimage_OBJECTS)
pngimage_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngimage_DEPENDENCIES = \
am_pngstest_OBJECTS = contrib/libtests/pngstest.$(OBJEXT) @ENABLE_TESTS_TRUE@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
am__pngstest_SOURCES_DIST = contrib/libtests/pngstest.c
@ENABLE_TESTS_TRUE@am_pngstest_OBJECTS = \
@ENABLE_TESTS_TRUE@ contrib/libtests/pngstest.$(OBJEXT)
pngstest_OBJECTS = $(am_pngstest_OBJECTS) pngstest_OBJECTS = $(am_pngstest_OBJECTS)
pngstest_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngstest_DEPENDENCIES = \
am_pngtest_OBJECTS = pngtest.$(OBJEXT) @ENABLE_TESTS_TRUE@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
am__pngtest_SOURCES_DIST = pngtest.c
@ENABLE_TESTS_TRUE@am_pngtest_OBJECTS = pngtest.$(OBJEXT)
pngtest_OBJECTS = $(am_pngtest_OBJECTS) pngtest_OBJECTS = $(am_pngtest_OBJECTS)
pngtest_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngtest_DEPENDENCIES = \
am_pngunknown_OBJECTS = contrib/libtests/pngunknown.$(OBJEXT) @ENABLE_TESTS_TRUE@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
am__pngunknown_SOURCES_DIST = contrib/libtests/pngunknown.c
@ENABLE_TESTS_TRUE@am_pngunknown_OBJECTS = \
@ENABLE_TESTS_TRUE@ contrib/libtests/pngunknown.$(OBJEXT)
pngunknown_OBJECTS = $(am_pngunknown_OBJECTS) pngunknown_OBJECTS = $(am_pngunknown_OBJECTS)
pngunknown_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngunknown_DEPENDENCIES = \
am_pngvalid_OBJECTS = contrib/libtests/pngvalid.$(OBJEXT) @ENABLE_TESTS_TRUE@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
am__pngvalid_SOURCES_DIST = contrib/libtests/pngvalid.c
@ENABLE_TESTS_TRUE@am_pngvalid_OBJECTS = \
@ENABLE_TESTS_TRUE@ contrib/libtests/pngvalid.$(OBJEXT)
pngvalid_OBJECTS = $(am_pngvalid_OBJECTS) pngvalid_OBJECTS = $(am_pngvalid_OBJECTS)
pngvalid_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngvalid_DEPENDENCIES = \
am_timepng_OBJECTS = contrib/libtests/timepng.$(OBJEXT) @ENABLE_TESTS_TRUE@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
am__timepng_SOURCES_DIST = contrib/libtests/timepng.c
@ENABLE_TESTS_TRUE@am_timepng_OBJECTS = \
@ENABLE_TESTS_TRUE@ contrib/libtests/timepng.$(OBJEXT)
timepng_OBJECTS = $(am_timepng_OBJECTS) timepng_OBJECTS = $(am_timepng_OBJECTS)
timepng_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@timepng_DEPENDENCIES = \
@ENABLE_TESTS_TRUE@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
SCRIPTS = $(bin_SCRIPTS) SCRIPTS = $(bin_SCRIPTS)
AM_V_P = $(am__v_P_@AM_V@) AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
@ -320,9 +346,11 @@ SOURCES = $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES) \
$(pngunknown_SOURCES) $(pngvalid_SOURCES) $(timepng_SOURCES) $(pngunknown_SOURCES) $(pngvalid_SOURCES) $(timepng_SOURCES)
DIST_SOURCES = \ DIST_SOURCES = \
$(am__libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES_DIST) \ $(am__libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES_DIST) \
$(png_fix_itxt_SOURCES) $(pngcp_SOURCES) $(pngfix_SOURCES) \ $(am__png_fix_itxt_SOURCES_DIST) $(am__pngcp_SOURCES_DIST) \
$(pngimage_SOURCES) $(pngstest_SOURCES) $(pngtest_SOURCES) \ $(am__pngfix_SOURCES_DIST) $(am__pngimage_SOURCES_DIST) \
$(pngunknown_SOURCES) $(pngvalid_SOURCES) $(timepng_SOURCES) $(am__pngstest_SOURCES_DIST) $(am__pngtest_SOURCES_DIST) \
$(am__pngunknown_SOURCES_DIST) $(am__pngvalid_SOURCES_DIST) \
$(am__timepng_SOURCES_DIST)
am__can_run_installinfo = \ am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \ case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \ n|no|NO) false;; \
@ -719,43 +747,43 @@ ACLOCAL_AMFLAGS = -I scripts
# result in the installed (system) pnglibconf.h being used and the result is # result in the installed (system) pnglibconf.h being used and the result is
# always wrong and always very confusing. # always wrong and always very confusing.
BUILT_SOURCES = pnglibconf.h BUILT_SOURCES = pnglibconf.h
pngtest_SOURCES = pngtest.c @ENABLE_TESTS_TRUE@pngtest_SOURCES = pngtest.c
pngtest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngtest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
pngvalid_SOURCES = contrib/libtests/pngvalid.c @ENABLE_TESTS_TRUE@pngvalid_SOURCES = contrib/libtests/pngvalid.c
pngvalid_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngvalid_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
pngstest_SOURCES = contrib/libtests/pngstest.c @ENABLE_TESTS_TRUE@pngstest_SOURCES = contrib/libtests/pngstest.c
pngstest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngstest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
pngunknown_SOURCES = contrib/libtests/pngunknown.c @ENABLE_TESTS_TRUE@pngunknown_SOURCES = contrib/libtests/pngunknown.c
pngunknown_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngunknown_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
pngimage_SOURCES = contrib/libtests/pngimage.c @ENABLE_TESTS_TRUE@pngimage_SOURCES = contrib/libtests/pngimage.c
pngimage_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngimage_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
timepng_SOURCES = contrib/libtests/timepng.c @ENABLE_TESTS_TRUE@timepng_SOURCES = contrib/libtests/timepng.c
timepng_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@timepng_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
pngfix_SOURCES = contrib/tools/pngfix.c @ENABLE_TESTS_TRUE@pngcp_SOURCES = contrib/tools/pngcp.c
pngfix_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TESTS_TRUE@pngcp_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
png_fix_itxt_SOURCES = contrib/tools/png-fix-itxt.c @ENABLE_TOOLS_TRUE@pngfix_SOURCES = contrib/tools/pngfix.c
pngcp_SOURCES = contrib/tools/pngcp.c @ENABLE_TOOLS_TRUE@pngfix_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
pngcp_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la @ENABLE_TOOLS_TRUE@png_fix_itxt_SOURCES = contrib/tools/png-fix-itxt.c
# Generally these are single line shell scripts to run a test with a particular # Generally these are single line shell scripts to run a test with a particular
# set of parameters: # set of parameters:
TESTS = \ @ENABLE_TESTS_TRUE@TESTS = \
tests/pngtest-all\ @ENABLE_TESTS_TRUE@ tests/pngtest-all\
tests/pngvalid-gamma-16-to-8 tests/pngvalid-gamma-alpha-mode\ @ENABLE_TESTS_TRUE@ tests/pngvalid-gamma-16-to-8 tests/pngvalid-gamma-alpha-mode\
tests/pngvalid-gamma-background tests/pngvalid-gamma-expand16-alpha-mode\ @ENABLE_TESTS_TRUE@ tests/pngvalid-gamma-background tests/pngvalid-gamma-expand16-alpha-mode\
tests/pngvalid-gamma-expand16-background\ @ENABLE_TESTS_TRUE@ tests/pngvalid-gamma-expand16-background\
tests/pngvalid-gamma-expand16-transform tests/pngvalid-gamma-sbit\ @ENABLE_TESTS_TRUE@ tests/pngvalid-gamma-expand16-transform tests/pngvalid-gamma-sbit\
tests/pngvalid-gamma-threshold tests/pngvalid-gamma-transform\ @ENABLE_TESTS_TRUE@ tests/pngvalid-gamma-threshold tests/pngvalid-gamma-transform\
tests/pngvalid-progressive-size\ @ENABLE_TESTS_TRUE@ tests/pngvalid-progressive-size\
tests/pngvalid-progressive-interlace-standard\ @ENABLE_TESTS_TRUE@ tests/pngvalid-progressive-interlace-standard\
tests/pngvalid-transform\ @ENABLE_TESTS_TRUE@ tests/pngvalid-transform\
tests/pngvalid-progressive-standard tests/pngvalid-standard\ @ENABLE_TESTS_TRUE@ tests/pngvalid-progressive-standard tests/pngvalid-standard\
tests/pngstest-1.8 tests/pngstest-1.8-alpha tests/pngstest-linear\ @ENABLE_TESTS_TRUE@ tests/pngstest-1.8 tests/pngstest-1.8-alpha tests/pngstest-linear\
tests/pngstest-linear-alpha tests/pngstest-none tests/pngstest-none-alpha\ @ENABLE_TESTS_TRUE@ tests/pngstest-linear-alpha tests/pngstest-none tests/pngstest-none-alpha\
tests/pngstest-sRGB tests/pngstest-sRGB-alpha tests/pngunknown-IDAT\ @ENABLE_TESTS_TRUE@ tests/pngstest-sRGB tests/pngstest-sRGB-alpha tests/pngunknown-IDAT\
tests/pngunknown-discard tests/pngunknown-if-safe tests/pngunknown-sAPI\ @ENABLE_TESTS_TRUE@ tests/pngunknown-discard tests/pngunknown-if-safe tests/pngunknown-sAPI\
tests/pngunknown-sTER tests/pngunknown-save tests/pngunknown-vpAg\ @ENABLE_TESTS_TRUE@ tests/pngunknown-sTER tests/pngunknown-save tests/pngunknown-vpAg\
tests/pngimage-quick tests/pngimage-full @ENABLE_TESTS_TRUE@ tests/pngimage-quick tests/pngimage-full
# man pages # man pages

53
configure vendored
View File

@ -694,6 +694,10 @@ HAVE_SOLARIS_LD_TRUE
HAVE_CLOCK_GETTIME_FALSE HAVE_CLOCK_GETTIME_FALSE
HAVE_CLOCK_GETTIME_TRUE HAVE_CLOCK_GETTIME_TRUE
PNG_COPTS PNG_COPTS
ENABLE_TOOLS_FALSE
ENABLE_TOOLS_TRUE
ENABLE_TESTS_FALSE
ENABLE_TESTS_TRUE
DFNCPP DFNCPP
LT_SYS_LIBRARY_PATH LT_SYS_LIBRARY_PATH
OTOOL64 OTOOL64
@ -836,6 +840,8 @@ enable_fast_install
with_aix_soname with_aix_soname
with_sysroot with_sysroot
enable_libtool_lock enable_libtool_lock
enable_tests
enable_tools
enable_werror enable_werror
with_zlib_prefix with_zlib_prefix
with_pkgconfigdir with_pkgconfigdir
@ -1504,6 +1510,9 @@ Optional Features:
--enable-fast-install[=PKGS] --enable-fast-install[=PKGS]
optimize for fast installation [default=yes] optimize for fast installation [default=yes]
--disable-libtool-lock avoid locking (might break parallel builds) --disable-libtool-lock avoid locking (might break parallel builds)
--disable-tests do not build the test programs (default is to build)
--disable-tools do not build the auxiliary tools (default is to
build)
--enable-werror[=OPT] Pass -Werror or the given argument to the compiler --enable-werror[=OPT] Pass -Werror or the given argument to the compiler
if it is supported if it is supported
--enable-unversioned-links --enable-unversioned-links
@ -13452,6 +13461,42 @@ fi
DFNCPP="$CPP" DFNCPP="$CPP"
# Check whether --enable-tests was given.
if test ${enable_tests+y}
then :
enableval=$enable_tests; enable_tests="$enableval"
else $as_nop
enable_tests=yes
fi
if test "$enable_tests" != "no"; then
ENABLE_TESTS_TRUE=
ENABLE_TESTS_FALSE='#'
else
ENABLE_TESTS_TRUE='#'
ENABLE_TESTS_FALSE=
fi
# Check whether --enable-tools was given.
if test ${enable_tools+y}
then :
enableval=$enable_tools; enable_tools="$enableval"
else $as_nop
enable_tools=yes
fi
if test "$enable_tools" != "no"; then
ENABLE_TOOLS_TRUE=
ENABLE_TOOLS_FALSE='#'
else
ENABLE_TOOLS_TRUE='#'
ENABLE_TOOLS_FALSE=
fi
# -Werror cannot be passed to GCC in CFLAGS because configure will fail # -Werror cannot be passed to GCC in CFLAGS because configure will fail
# (it checks the compiler with a program that generates a warning). # (it checks the compiler with a program that generates a warning).
# Add the following option to deal with this: # Add the following option to deal with this:
@ -14460,6 +14505,14 @@ if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then
as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined. as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi fi
if test -z "${ENABLE_TESTS_TRUE}" && test -z "${ENABLE_TESTS_FALSE}"; then
as_fn_error $? "conditional \"ENABLE_TESTS\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_TOOLS_TRUE}" && test -z "${ENABLE_TOOLS_FALSE}"; then
as_fn_error $? "conditional \"ENABLE_TOOLS\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${HAVE_CLOCK_GETTIME_TRUE}" && test -z "${HAVE_CLOCK_GETTIME_FALSE}"; then if test -z "${HAVE_CLOCK_GETTIME_TRUE}" && test -z "${HAVE_CLOCK_GETTIME_FALSE}"; then
as_fn_error $? "conditional \"HAVE_CLOCK_GETTIME\" was never defined. as_fn_error $? "conditional \"HAVE_CLOCK_GETTIME\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5