diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-04-07 08:21:02 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-04-07 08:21:02 +0000 |
commit | fdc84da0dd8ab59b737b7b229cc5bbb9c8ef30f8 (patch) | |
tree | 9a8941b48a51d1ad65567f6038773402d9625cb2 /Build/source/libs/pixman | |
parent | d4448f9f1bca0fdf70360b5f802e0d356a84a350 (diff) |
pixman: Build fix for systems without sqrtf() -- again with correct shell syntax
git-svn-id: svn://tug.org/texlive/trunk@29707 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/pixman')
-rw-r--r-- | Build/source/libs/pixman/ChangeLog | 2 | ||||
-rwxr-xr-x | Build/source/libs/pixman/configure | 2 | ||||
-rw-r--r-- | Build/source/libs/pixman/configure.ac | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/libs/pixman/ChangeLog b/Build/source/libs/pixman/ChangeLog index ce230fc86a1..0faa649f52d 100644 --- a/Build/source/libs/pixman/ChangeLog +++ b/Build/source/libs/pixman/ChangeLog @@ -1,4 +1,4 @@ -2013-04-05 Peter Breitenlohner <peb@mppmu.mpg.de> +2013-04-07 Peter Breitenlohner <peb@mppmu.mpg.de> * configure.ac: Define sqrtf as sqrt on systems without sqrtf(). diff --git a/Build/source/libs/pixman/configure b/Build/source/libs/pixman/configure index 4555f6d53c3..4534ecdfc46 100755 --- a/Build/source/libs/pixman/configure +++ b/Build/source/libs/pixman/configure @@ -12672,7 +12672,7 @@ if test "$ac_res" != no; then : fi -if "x$ac_cv_search_sqrtf" = xno; then +if test "x$ac_cv_search_sqrtf" = xno; then $as_echo "#define sqrtf sqrt" >>confdefs.h diff --git a/Build/source/libs/pixman/configure.ac b/Build/source/libs/pixman/configure.ac index 85ddbfb04ee..511748e10dd 100644 --- a/Build/source/libs/pixman/configure.ac +++ b/Build/source/libs/pixman/configure.ac @@ -54,7 +54,7 @@ dnl add all these to config.h.in but do not define them in config.h fi AC_SEARCH_LIBS([sqrtf], [m]) -if "x$ac_cv_search_sqrtf" = xno; then +if test "x$ac_cv_search_sqrtf" = xno; then AC_DEFINE([sqrtf], [sqrt], [Define to sqrt if you do not have the `sqrtf' function.]) fi |