mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-14 14:01:48 +03:00
28 lines
543 B
Plaintext
28 lines
543 B
Plaintext
Files:
|
|
tests/test-tsearch.sh
|
|
tests/test-tsearch.c
|
|
tests/signature.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@
|