diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-07-17 11:24:26 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-07-17 11:24:26 +0000 |
commit | 1d3c5e38252733bcc33a6cfeb7d694a088218458 (patch) | |
tree | 0ba089f9b1b345e3e756fc15c4c727f12b230351 /gdb/configure.in | |
parent | 76c42b3e69e943825341118ffffb0d4b1d88e6a3 (diff) | |
download | gdb-1d3c5e38252733bcc33a6cfeb7d694a088218458.tar.gz |
* configure.in: Define _MSE_INT_H on Solaris 9 too.
* configure, config.in: Regenerated.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 3daa12bf8be..ef5f17a73c0 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -369,15 +369,15 @@ AC_CHECK_HEADERS(sys/wait.h wait.h) AC_CHECK_HEADERS(termios.h termio.h sgtty.h) AC_CHECK_HEADERS(unistd.h) -# On Solaris 2.[78], we need to define _MSE_INT_H to avoid a clash +# On Solaris 2.[789], we need to define _MSE_INT_H to avoid a clash # between <widec.h> and <wchar.h> that would cause AC_CHECK_HEADERS to # think that we don't have <curses.h> if we're using GCC. case $host_os in - solaris2.[[78]]) + solaris2.[[789]]) if test "$GCC" = yes; then AC_DEFINE(_MSE_INT_H, 1, [[Define to 1 to avoid a clash between <widec.h> and <wchar.h> on - Solaris 2.[78] when using GCC. ]]) + Solaris 2.[789] when using GCC. ]]) fi ;; esac AC_CHECK_HEADERS(curses.h ncurses.h term.h) |