diff options
author | Thomas G. Lockhart | 1998-11-04 16:22:09 +0000 |
---|---|---|
committer | Thomas G. Lockhart | 1998-11-04 16:22:09 +0000 |
commit | f47bd801e3052dd296534603accec8ddaa53dc2e (patch) | |
tree | 9be90dffc927bd89bb6320432c9506e40400f4dc | |
parent | ccca422abbcd716099a984296aa7707f5f5b3804 (diff) |
Somehow had the solaris template names reversed. Probably was something
fixed in src/configure.in a while ago.
-rwxr-xr-x | src/interfaces/odbc/configure | 5 | ||||
-rw-r--r-- | src/interfaces/odbc/configure.in | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/interfaces/odbc/configure b/src/interfaces/odbc/configure index a1d60d9730f..8bf32c1d02b 100755 --- a/src/interfaces/odbc/configure +++ b/src/interfaces/odbc/configure @@ -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 ;; diff --git a/src/interfaces/odbc/configure.in b/src/interfaces/odbc/configure.in index ded19b9b3d5..eb8bbf17d02 100644 --- a/src/interfaces/odbc/configure.in +++ b/src/interfaces/odbc/configure.in @@ -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 ;; |