commit | 1c07b4b4fbf6c89c6789343e21ea16f52f905f2d | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sat Oct 13 09:00:42 2001 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sat Oct 13 09:00:42 2001 +0000 |
tree | ffd0a29e1a222017100959b99bbc1d955b33315c | |
parent | a38d9169bc9b1a290b403f9b9c82a096af10b4d6 [diff] [blame] |
Test for __sun instead of __sun__, since SUNWspro only defines the latter; gcc defines both.
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index a56a67c..6f79aa0 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c
@@ -118,7 +118,7 @@ #include <term.h> #endif -#if defined(sgi) || defined(__sun__) +#if defined(sgi) || defined(__sun) #define STRICT_SYSV_CURSES /* Don't use ncurses extensions */ typedef chtype attr_t; /* No attr_t type is available */ #endif