Skip to content

Commit

Permalink
depreceated -> deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Monin committed May 19, 2008
1 parent 17c0fce commit 2a2b70b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,18 @@ fi

AM_CONDITIONAL(DEBUG, test x$enable_debug = xyes)

AC_ARG_ENABLE(depreceated, [
AC_HELP_STRING([--enable-depreceated], [turn off checking of depreceated functions [default=yes]])], [],
AC_ARG_ENABLE(deprecated, [
AC_HELP_STRING([--enable-deprecated], [turn off checking of deprecated functions [default=yes]])], [],
[
if test "x${enable_developer}" != "xyes"
then
enable_depreceated="no"
enable_deprecated="no"
else
enable_depreceated="yes"
enable_deprecated="yes"
fi
])

if test "x${enable_depreceated}" != "xno"
if test "x${enable_deprecated}" != "xno"
then
CXXFLAGS="${CXXFLAGS} -DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1"
CFLAGS="${CFLAGS} -DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1"
Expand Down

0 comments on commit 2a2b70b

Please sign in to comment.