remove extraneous * after specific solaris version in case statements

This commit is contained in:
Mark Andrews
2005-07-11 03:18:34 +00:00
parent 6be278a81c
commit 2e3203a08c
4 changed files with 11 additions and 11 deletions

6
lib/bind/configure vendored
View File

@@ -1,5 +1,5 @@
#! /bin/sh
# From configure.in Revision: 1.104 .
# From configure.in Revision: 1.105 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59.
#
@@ -23113,12 +23113,12 @@ case "$host" in
*-sunos4*)
PORT_NONBLOCK="#define PORT_NONBLOCK O_NDELAY"
PORT_DIR="port/sunos";;
*-solaris2.[01234]*)
*-solaris2.[01234])
BSD_COMP="#define BSD_COMP 1"
SOLARIS_BITTYPES="#define NEED_SOLARIS_BITTYPES 1"
USE_FIONBIO_IOCTL="#define USE_FIONBIO_IOCTL 1"
PORT_DIR="port/solaris";;
*-solaris2.5*)
*-solaris2.5)
BSD_COMP="#define BSD_COMP 1"
SOLARIS_BITTYPES="#define NEED_SOLARIS_BITTYPES 1"
PORT_DIR="port/solaris";;

View File

@@ -13,7 +13,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
AC_REVISION($Revision: 1.104 $)
AC_REVISION($Revision: 1.105 $)
AC_INIT(resolv/herror.c)
AC_PREREQ(2.13)
@@ -1025,12 +1025,12 @@ case "$host" in
*-sunos4*)
PORT_NONBLOCK="#define PORT_NONBLOCK O_NDELAY"
PORT_DIR="port/sunos";;
*-solaris2.[[01234]]*)
*-solaris2.[[01234]])
BSD_COMP="#define BSD_COMP 1"
SOLARIS_BITTYPES="#define NEED_SOLARIS_BITTYPES 1"
USE_FIONBIO_IOCTL="#define USE_FIONBIO_IOCTL 1"
PORT_DIR="port/solaris";;
*-solaris2.5*)
*-solaris2.5)
BSD_COMP="#define BSD_COMP 1"
SOLARIS_BITTYPES="#define NEED_SOLARIS_BITTYPES 1"
PORT_DIR="port/solaris";;