fixed a couple of cut and paste errors in the math functions detection

* configure.in: fixed a couple of cut and paste errors in the
  math functions detection
* libxslt.spec.in: added missing file entry for libxslt.pc
Daniel
This commit is contained in:
Daniel Veillard 2002-01-14 09:36:51 +00:00
parent de86266b87
commit 3d993ecf61
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Mon Jan 14 10:35:27 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: fixed a couple of cut and paste errors in the
math functions detection
* libxslt.spec.in: added missing file entry for libxslt.pc
Tue Jan 8 21:04:17 MST 2002 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.xml, doc/xsltproc.1, doc/xsltproc.html

View File

@ -114,10 +114,10 @@ AC_CHECK_FUNC(isinf, , AC_CHECK_LIB(m, isinf,
AC_CHECK_FUNC(pow, , AC_CHECK_LIB(m, pow,
[M_LIBS="-lm"; AC_DEFINE(HAVE_POW)]))
AC_CHECK_FUNC(floor, , AC_CHECK_LIB(m, pow,
AC_CHECK_FUNC(floor, , AC_CHECK_LIB(m, floor,
[M_LIBS="-lm"; AC_DEFINE(HAVE_FLOOR)]))
AC_CHECK_FUNC(fabs, , AC_CHECK_LIB(m, pow,
AC_CHECK_FUNC(fabs, , AC_CHECK_LIB(m, fabs,
[M_LIBS="-lm"; AC_DEFINE(HAVE_FABS)]))
AC_CHECK_FUNCS(gettimeofday)
AC_CHECK_FUNCS(mktime localtime asctime time gmtime)

View File

@ -88,6 +88,7 @@ rm -rf $RPM_BUILD_ROOT
%{prefix}/lib/*.sh
%{prefix}/include/*
%{prefix}/bin/xslt-config
%{prefix}/lib/pkgconfig/libxslt.pc
%changelog