diff options
author | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-07-30 23:02:49 +0000 |
---|---|---|
committer | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-07-30 23:02:49 +0000 |
commit | a6643f3a78377bb48391fea80ed287b6a75bc318 (patch) | |
tree | 8d5f29938e23de991a373e4dba2c7720a3147ad8 | |
parent | 1c098e1d6c0f0d3452e0a4c184fb0f6c5a10e2e0 (diff) |
Fix autoconf quoting error.vte_0_6_0
* configure.in: Fix autoconf quoting error.
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 0063104..f3da9b2 100644 --- a/configure.in +++ b/configure.in @@ -67,7 +67,7 @@ fi if test x$VTE_DEBUG = x1 ; then AC_DEFINE(VTE_DEBUG,,[Enable debugging messages.]) fi -AC_CHECK_TYPE(wint_t,AC_DEFINE(HAVE_WINT_T,1,[Define if your OS provides a wint_t type and a corresponding %lc format specifier.])) +AC_CHECK_TYPE(wint_t,[AC_DEFINE(HAVE_WINT_T,1,[Define if your OS provides a wint_t type and a corresponding %lc format specifier.])]) AC_MSG_CHECKING([for pygtk-2.0]) if pkg-config --exists pygtk-2.0 ; then |