* builds/unix/configure.raw: Don't show error messages of `which'.
This commit is contained in:
parent
ed372b712f
commit
0318168ea8
@ -1,3 +1,7 @@
|
||||
2014-03-14 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* builds/unix/configure.raw: Don't show error messages of `which'.
|
||||
|
||||
2014-03-09 Alan Coopersmith <alan.coopersmith@oracle.com>
|
||||
|
||||
Fix cppcheck 1.64 warning.
|
||||
|
@ -437,7 +437,7 @@ if test x"$with_png" = xyes -o x"$with_png" = xauto; then
|
||||
else
|
||||
# fall back to config script.
|
||||
AC_MSG_CHECKING([for libpng-config])
|
||||
if which libpng-config > /dev/null; then
|
||||
if which libpng-config > /dev/null 2>&1; then
|
||||
LIBPNG_CFLAGS=`libpng-config --cflags`
|
||||
LIBPNG_LIBS=`libpng-config --ldflags`
|
||||
libpng_libpriv=`libpng-config --static --ldflags`
|
||||
@ -656,7 +656,7 @@ else
|
||||
fi
|
||||
|
||||
|
||||
# Whether to use FileManager which is deprecated since Mac OS X 10.4.
|
||||
# Whether to use FileManager, which is deprecated since Mac OS X 10.4.
|
||||
|
||||
AC_ARG_WITH([fsspec],
|
||||
AS_HELP_STRING([--with-fsspec],
|
||||
@ -765,7 +765,7 @@ elif test x$with_old_mac_fonts = xyes -a x$with_fsref != x; then
|
||||
fi
|
||||
|
||||
|
||||
# Whether to use QuickDraw API in ToolBox which is deprecated since
|
||||
# Whether to use QuickDraw API in ToolBox, which is deprecated since
|
||||
# Mac OS X 10.4.
|
||||
|
||||
AC_ARG_WITH([quickdraw-toolbox],
|
||||
@ -807,7 +807,7 @@ elif test x$with_old_mac_fonts = xyes -a x$with_quickdraw_toolbox != x; then
|
||||
fi
|
||||
|
||||
|
||||
# Whether to use QuickDraw API in Carbon which is deprecated since
|
||||
# Whether to use QuickDraw API in Carbon, which is deprecated since
|
||||
# Mac OS X 10.4.
|
||||
|
||||
AC_ARG_WITH([quickdraw-carbon],
|
||||
|
Loading…
Reference in New Issue
Block a user