1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-08-22 09:06:25 +00:00
Files
Bruno Haible 4cb5b9b43e argp, tsearch tests: Fix file list.
* modules/argp-tests (Files): Add tests/macros.h.
* modules/tsearch-tests (Files): Likewise.
2017-05-20 12:15:04 +02:00

29 lines
558 B
Plaintext

Files:
tests/test-tsearch.sh
tests/test-tsearch.c
tests/signature.h
tests/macros.h
Depends-on:
stdint
configure.ac:
TEST_TSEARCH_LIBM=
AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[[#ifndef __NO_MATH_INLINES
# define __NO_MATH_INLINES 1 /* for glibc */
#endif
#include <math.h>
double x;]],
[[x = log (x);]])],
[],
[TEST_TSEARCH_LIBM=-lm])
AC_SUBST([TEST_TSEARCH_LIBM])
AC_CHECK_FUNCS_ONCE([initstate])
Makefile.am:
TESTS += test-tsearch.sh
check_PROGRAMS += test-tsearch
test_tsearch_LDADD = $(LDADD) @TEST_TSEARCH_LIBM@