Skip to content

Commit

Permalink
don't enable gd by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonfort committed Apr 9, 2012
1 parent 1c4e225 commit e90ecd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion configure
Expand Up @@ -17316,10 +17316,12 @@ $as_echo "$as_me: checking for GD 2.0.28 or higher..." >&6;}
# Check whether --with-gd was given.
if test "${with_gd+set}" = set; then :
withval=$with_gd;
else
with_gd=no
fi


if test "$with_gd" != "no" ; then
if test "x$with_gd" != "xno" ; then

if test -n "$with_gd" -a "$with_gd" != "yes" ; then

Expand Down
4 changes: 2 additions & 2 deletions configure.in
Expand Up @@ -631,9 +631,9 @@ AC_CHECKING(for GD 2.0.28 or higher)
AC_ARG_WITH(gd,
[ --with-gd[[=[static,]DIR]]
Specify which version of GD to use (DIR is GD's
install dir).],,)
install dir).],,[with_gd=no])

if test "$with_gd" != "no" ; then
if test "x$with_gd" != "xno" ; then

if test -n "$with_gd" -a "$with_gd" != "yes" ; then
dnl
Expand Down

0 comments on commit e90ecd5

Please sign in to comment.