diff options
author | wtc%netscape.com <devnull@localhost> | 2003-09-11 18:17:41 +0000 |
---|---|---|
committer | wtc%netscape.com <devnull@localhost> | 2003-09-11 18:17:41 +0000 |
commit | 242e1d15955e58032d6a44bb595f1f614753d84b (patch) | |
tree | 105fa4d5d231e1d91ffd624c1d528f165d87de32 /configure.in | |
parent | 695cb54ac44f4c30bd3734ea82683ef55c25a50a (diff) | |
download | nspr-hg-242e1d15955e58032d6a44bb595f1f614753d84b.tar.gz |
Define _PR_INET6 on Solaris 8 or higher because they have IPv6.
Tag: NSPRPUB_PRE_4_2_CLIENT_BRANCH
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 0411debe..0c5534e3 100644 --- a/configure.in +++ b/configure.in @@ -1731,6 +1731,22 @@ mips-sony-newsos*) fi ;; esac + case "${target_os}" in + solaris2.3*) + ;; + solaris2.4*) + ;; + solaris2.5*) + ;; + solaris2.6*) + ;; + solaris2.7*) + ;; + *) + # Solaris 8 or higher has IPv6. + AC_DEFINE(_PR_INET6) + ;; + esac if test "$OS_TEST" = "sun4u"; then # 64-bit Solaris requires SPARC V9 architecture, so the following # is not needed. |