diff options
| -rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index be103519787..7f4af864cbf 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -163,7 +163,7 @@ case "${canonical}" in | |||
| 163 | *-*-netbsd* ) | 163 | *-*-netbsd* ) |
| 164 | opsys=netbsd | 164 | opsys=netbsd |
| 165 | case "${canonical}" in | 165 | case "${canonical}" in |
| 166 | alpha-*-netbsd*) machine=alpha ;; | 166 | alpha*-*-netbsd*) machine=alpha ;; |
| 167 | i[3456]86-*-netbsd*) machine=intel386 ;; | 167 | i[3456]86-*-netbsd*) machine=intel386 ;; |
| 168 | m68k-*-netbsd*) | 168 | m68k-*-netbsd*) |
| 169 | # This is somewhat bogus. | 169 | # This is somewhat bogus. |
| @@ -179,7 +179,7 @@ case "${canonical}" in | |||
| 179 | *-*-openbsd* ) | 179 | *-*-openbsd* ) |
| 180 | opsys=openbsd | 180 | opsys=openbsd |
| 181 | case "${canonical}" in | 181 | case "${canonical}" in |
| 182 | alpha-*-openbsd*) machine=alpha ;; | 182 | alpha*-*-openbsd*) machine=alpha ;; |
| 183 | i386-*-openbsd*) machine=intel386 ;; | 183 | i386-*-openbsd*) machine=intel386 ;; |
| 184 | m68k-*-openbsd*) machine=hp9000s300 ;; | 184 | m68k-*-openbsd*) machine=hp9000s300 ;; |
| 185 | mipsel-*-openbsd*) machine=pmax ;; | 185 | mipsel-*-openbsd*) machine=pmax ;; |
| @@ -229,14 +229,14 @@ case "${canonical}" in | |||
| 229 | ;; | 229 | ;; |
| 230 | 230 | ||
| 231 | ## Alpha (DEC) machines. | 231 | ## Alpha (DEC) machines. |
| 232 | alpha-dec-osf* ) | 232 | alpha*-dec-osf* ) |
| 233 | machine=alpha opsys=osf1 | 233 | machine=alpha opsys=osf1 |
| 234 | # This is needed to find X11R6.1 libraries for certain tests. | 234 | # This is needed to find X11R6.1 libraries for certain tests. |
| 235 | NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib | 235 | NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib |
| 236 | GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib | 236 | GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib |
| 237 | ;; | 237 | ;; |
| 238 | 238 | ||
| 239 | alpha-*-linux-gnu* ) | 239 | alpha*-*-linux-gnu* ) |
| 240 | machine=alpha opsys=gnu-linux | 240 | machine=alpha opsys=gnu-linux |
| 241 | ;; | 241 | ;; |
| 242 | 242 | ||