File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -321,6 +321,7 @@ David Goodger
321321Hans de Graaff
322322Eddy De Greef
323323Duncan Grisby
324+ Fabian Groffen
324325Eric Groo
325326Dag Gruneau
326327Michael Guravage
Original file line number Diff line number Diff line change @@ -101,6 +101,9 @@ Library
101101Build
102102-----
103103
104+ - Issue #7716: Under Solaris, don't assume existence of /usr/xpg4/bin/grep in
105+ the configure script but use $GREP instead. Patch by Fabian Groffen.
106+
104107- Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD
105108 and DragonFly BSD. Patch by Nicolas Joly.
106109
Original file line number Diff line number Diff line change 11#! /bin/sh
2- # From configure.in Revision: 87639 .
2+ # From configure.in Revision: 87646 .
33# Guess values for system-dependent variables and create Makefiles.
44# Generated by GNU Autoconf 2.65 for python 3.2.
55#
@@ -8976,7 +8976,7 @@ rm -f conftest*
89768976 ;;
89778977 solaris)
89788978 if test -f /etc/netconfig; then
8979- if /usr/xpg4/bin/grep -q tcp6 /etc/netconfig; then
8979+ if $GREP -q tcp6 /etc/netconfig; then
89808980 ipv6type=$i
89818981 ipv6trylibc=yes
89828982 fi
Original file line number Diff line number Diff line change @@ -2350,7 +2350,7 @@ yes
23502350 ;;
23512351 solaris)
23522352 if test -f /etc/netconfig; then
2353- if /usr/xpg4/bin/grep -q tcp6 /etc/netconfig; then
2353+ if $GREP -q tcp6 /etc/netconfig; then
23542354 ipv6type=$i
23552355 ipv6trylibc=yes
23562356 fi
You can’t perform that action at this time.
0 commit comments