Fix m4 quoting due to quoting change rules in autoconf 2.65.

Works with autoconf 2.63, 2.64 and 2.65

If there are problems with early versions, please answer in this thread

SVN revision: 44147
This commit is contained in:
Vincent Torri 2009-12-03 00:22:33 +00:00
parent c15a501be8
commit 721ce91ca8
1 changed files with 2 additions and 2 deletions

View File

@ -312,8 +312,8 @@ dnl use: EVAS_CHECK_IMAGE_LOADER(loader, want_loader, macro)
AC_DEFUN([EVAS_CHECK_IMAGE_LOADER],
[
m4_pushdef([UP], m4_toupper([[$1]]))
m4_pushdef([DOWN], m4_tolower([[$1]]))
m4_pushdef([UP], m4_toupper([$1]))
m4_pushdef([DOWN], m4_tolower([$1]))
want_loader="$2"
want_static_loader="no"