comparison configure.in @ 12842:f5e4db7e8197

(CFLAGS): When computing CFLAGS and REAL_CFLAGS from config.h, use SPECIFIED_CFLAGS to get what the user specified. (alpha-*-linux*): New configuration.
author Richard M. Stallman <rms@gnu.org>
date Sat, 12 Aug 1995 23:27:18 +0000
parents 5569b3a43323
children 4948ca294167
comparison
equal deleted inserted replaced
12841:639f9d12f0f8 12842:f5e4db7e8197
162 ;; 162 ;;
163 i860-alliant-* ) 163 i860-alliant-* )
164 machine=alliant-2800 opsys=bsd4-3 164 machine=alliant-2800 opsys=bsd4-3
165 ;; 165 ;;
166 166
167 ;; Alpha (DEC) machines.
167 alpha-dec-osf* ) 168 alpha-dec-osf* )
168 machine=alpha opsys=osf1 169 machine=alpha opsys=osf1
170 ;;
171
172 alpha-*-linux* )
173 machine=alpha opsys=linux
169 ;; 174 ;;
170 175
171 ## Altos 3068 176 ## Altos 3068
172 m68*-altos-sysv* ) 177 m68*-altos-sysv* )
173 machine=altos opsys=usg5-2 178 machine=altos opsys=usg5-2
1093 1098
1094 #ifdef THIS_IS_CONFIGURE 1099 #ifdef THIS_IS_CONFIGURE
1095 1100
1096 /* Get the CFLAGS for tests in configure. */ 1101 /* Get the CFLAGS for tests in configure. */
1097 #ifdef __GNUC__ 1102 #ifdef __GNUC__
1098 configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${CFLAGS}' 1103 configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
1099 #else 1104 #else
1100 configure___ CFLAGS=C_DEBUG_SWITCH '${CFLAGS}' 1105 configure___ CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
1101 #endif 1106 #endif
1102 1107
1103 #else /* not THIS_IS_CONFIGURE */ 1108 #else /* not THIS_IS_CONFIGURE */
1104 1109
1105 /* Get the CFLAGS for real compilation. */ 1110 /* Get the CFLAGS for real compilation. */
1106 #ifdef __GNUC__ 1111 #ifdef __GNUC__
1107 configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${CFLAGS}' 1112 configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
1108 #else 1113 #else
1109 configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${CFLAGS}' 1114 configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
1110 #endif 1115 #endif
1111 1116
1112 #endif /* not THIS_IS_CONFIGURE */ 1117 #endif /* not THIS_IS_CONFIGURE */
1113 ' > ${tempcname} 1118 ' > ${tempcname}
1114 1119