* configure.in: do not override CC if set.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1832 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9d59b0d1a1
commit
fffeb61121
@ -1,3 +1,7 @@
|
|||||||
|
Tue Nov 13 19:50:30 2001 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in: do not override CC if set.
|
||||||
|
|
||||||
Tue Nov 13 16:49:16 2001 Usaku Nakamura <usa@ruby-lang.org>
|
Tue Nov 13 16:49:16 2001 Usaku Nakamura <usa@ruby-lang.org>
|
||||||
|
|
||||||
* win32/win32.c (mypopen): return error status instead of calling
|
* win32/win32.c (mypopen): return error status instead of calling
|
||||||
|
@ -11,14 +11,14 @@ AC_SUBST(TEENY)
|
|||||||
dnl checks for alternative programs
|
dnl checks for alternative programs
|
||||||
AC_ARG_WITH(gcc, [--without-gcc never use gcc], [
|
AC_ARG_WITH(gcc, [--without-gcc never use gcc], [
|
||||||
case $withval in
|
case $withval in
|
||||||
no) CC=cc
|
no) : ${CC=cc}
|
||||||
without_gcc=yes;;
|
without_gcc=yes;;
|
||||||
yes) CC=gcc
|
yes) : ${CC=gcc}
|
||||||
without_gcc=no;;
|
without_gcc=no;;
|
||||||
*) CC=$withval
|
*) CC=$withval
|
||||||
without_gcc=$withval;;
|
without_gcc=$withval;;
|
||||||
esac], [
|
esac], [
|
||||||
CC=gcc
|
: ${CC=gcc}
|
||||||
without_gcc=no])
|
without_gcc=no])
|
||||||
dnl If the user switches compilers, we can't believe the cache
|
dnl If the user switches compilers, we can't believe the cache
|
||||||
if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
|
if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user