Index: acinclude.m4 =================================================================== RCS file: /home/cvs/GiNaC/acinclude.m4,v retrieving revision 1.22 diff -u -r1.22 acinclude.m4 --- acinclude.m4 3 Nov 2005 22:19:32 -0000 1.22 +++ acinclude.m4 14 Jul 2006 17:27:13 -0000 @@ -43,6 +43,10 @@ dnl libtermcap is being phased out. AC_DEFUN([GINAC_TERMCAP], [LIBTERMCAP= +case $host_os in +*mingw32*) + ;; dnl no termcap libraries are necessary (need hacked libreadline) +*) AC_CHECK_FUNCS(tgetent) if test "x$ac_cv_func_tgetent" = "xyes"; then : @@ -52,6 +56,8 @@ AC_CHECK_LIB(termcap, tgetent, LIBTERMCAP="-ltermcap") fi fi +;; +esac AC_SUBST(LIBTERMCAP) ]) Index: check/Makefile.am =================================================================== RCS file: /home/cvs/GiNaC/check/Makefile.am,v retrieving revision 1.31 diff -u -r1.31 Makefile.am --- check/Makefile.am 20 Aug 2003 18:01:35 -0000 1.31 +++ check/Makefile.am 14 Jul 2006 17:27:13 -0000 @@ -2,6 +2,7 @@ TESTS = run_exams run_checks run_times check_PROGRAMS = exams checks times +TESTS_ENVIRONMENT = EXEEXT=$(EXEEXT) srcdir=$(srcdir) checks_SOURCES = check_numeric.cpp check_inifcns.cpp check_matrices.cpp \ check_lsolve.cpp genex.cpp checks.cpp checks.h Index: check/run_checks =================================================================== RCS file: /home/cvs/GiNaC/check/run_checks,v retrieving revision 1.4 diff -u -r1.4 run_checks --- check/run_checks 13 Mar 2000 14:14:21 -0000 1.4 +++ check/run_checks 14 Jul 2006 17:27:13 -0000 @@ -1,4 +1,4 @@ #! /bin/sh echo "GiNaC will now run through some rather costly random consistency checks:" -./checks 2>checks.out +./checks${EXEEXT} 2>checks.out cmp ${srcdir}/checks.ref checks.out Index: check/run_exams =================================================================== RCS file: /home/cvs/GiNaC/check/run_exams,v retrieving revision 1.1 diff -u -r1.1 run_exams --- check/run_exams 29 Feb 2000 14:28:23 -0000 1.1 +++ check/run_exams 14 Jul 2006 17:27:13 -0000 @@ -1,4 +1,4 @@ #! /bin/sh echo "GiNaC will now take an exam with specific input (like a pupils' exam):" -./exams 2>exams.out +./exams${EXEEXT} 2>exams.out cmp ${srcdir}/exams.ref exams.out Index: check/run_times =================================================================== RCS file: /home/cvs/GiNaC/check/run_times,v retrieving revision 1.1 diff -u -r1.1 run_times --- check/run_times 29 Feb 2000 14:28:23 -0000 1.1 +++ check/run_times 14 Jul 2006 17:27:13 -0000 @@ -1,4 +1,4 @@ #! /bin/sh echo "GiNaC will now run through some basic timings:" -./times 2>times.out +./times${EXEEXT} 2>times.out cmp ${srcdir}/times.ref times.out