mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Somehow had the solaris template names reversed. Probably was something
fixed in src/configure.in a while ago.
This commit is contained in:
parent
ccca422abb
commit
f47bd801e3
5
src/interfaces/odbc/configure
vendored
5
src/interfaces/odbc/configure
vendored
@ -6,7 +6,6 @@
|
||||
#
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy, distribute and modify it.
|
||||
#
|
||||
|
||||
# Defaults:
|
||||
ac_help=
|
||||
@ -604,8 +603,8 @@ echo "$ac_t""$host" 1>&6
|
||||
case "$host_os" in
|
||||
solaris*)
|
||||
case "$host_cpu" in
|
||||
sparc) os=sparc_solaris ;;
|
||||
i386) os=i386_solaris ;;
|
||||
sparc) os=solaris_sparc ;;
|
||||
i386) os=solaris_i386 ;;
|
||||
esac ;;
|
||||
sunos*) os=sunos4 ;;
|
||||
aux*) os=aux ;;
|
||||
|
@ -37,8 +37,8 @@ AC_CANONICAL_HOST
|
||||
case "$host_os" in
|
||||
solaris*)
|
||||
case "$host_cpu" in
|
||||
sparc) os=sparc_solaris ;;
|
||||
i386) os=i386_solaris ;;
|
||||
sparc) os=solaris_sparc ;;
|
||||
i386) os=solaris_i386 ;;
|
||||
esac ;;
|
||||
sunos*) os=sunos4 ;;
|
||||
aux*) os=aux ;;
|
||||
|
Loading…
Reference in New Issue
Block a user