pike.git
/
src
/
configure.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/configure.in:633:
if test "x${SDL_CONFIG}" = "x"; then SDL_CONFIG=`which ${ac_tool_prefix}sdl11-config` export SDL_CONFIG fi ;; esac # Skip if user does not wish to use smartlink binary. if test "x$force_smartlink_script_only" = "x"; then # Strip smartlink and arguments from $CC
-
REALCC="`echo $CC|sed -e 's/.*smartlink *//' -e 's/ .*//g'`"
+
REALCC="`echo $CC|sed -e 's/.*smartlink *//'
`";
+
RAWCC="`echo
$REALCC|sed
-e 's/ .*//g'`"
# FIXME: Add proper tests AC_MSG_CHECKING([for ld.so run path method]) AC_CACHE_VAL(pike_cv_ld_so_run_path_method, [ case "$UNAME" in OSF1\ V4.*|OSF1\ V5.*|OSF1\ V6.*) pike_cv_run_path_method=rpath ;; HPUX\ 11.*)
pike.git/src/configure.in:779:
AC_MSG_CHECKING(for smartlink build script) SMARTLINK="$BINDIR/smartlink" REALCC="$CC" AC_MSG_RESULT($SMARTLINK) fi # force_smartlink_script_only CC="$SMARTLINK $REALCC" pike_cv_prog_CC="$CC" # Strip smartlink and arguments from $CXX
-
REALCXX="`echo $CXX|sed -e 's/.*smartlink *//' -e 's/ .*//g'`"
+
REALCXX="`echo $CXX|sed -e 's/.*smartlink *//'
`"
+
RAWCXX="`echo
$REALCXX|sed
-e 's/ .*//g'`"
CXX="$SMARTLINK $REALCXX" pike_cv_prog_CXX="$CXX" AC_SUBST(SMARTLINK) AC_SUBST(REALCC) AC_SUBST(REALCXX) export CC CXX REALCC REALCXX SMARTLINK AC_MSG_CHECKING([for a fallback compiler]) # Strip smartlink and arguments from $FALLBACK_CC
-
FALLBACK_CC="`echo $FALLBACK_CC|sed -e 's/.*smartlink *//'
-e 's/ .*//g'
`"
+
FALLBACK_CC="`echo $FALLBACK_CC|sed -e 's/.*smartlink *//'`"
if test "x$FALLBACK_CC" = "x"; then AC_MSG_RESULT(no) else FALLBACK_CC="$SMARTLINK $FALLBACK_CC" AC_MSG_RESULT($FALLBACK_CC) fi AC_SUBST(FALLBACK_CC) export FALLBACK_CC #############################################################################
pike.git/src/configure.in:8028:
pike_cv_prog_CC="${CC}" ############################################################################# # Autoconf 2.50 and later stupidity... if_autoconf(2,50,[ # Ensure that the propagated CC (if any) is up to date. # Otherwise the sub-configures will attempt to use eg # -R with the raw compiler, which only works on Solaris.
-
ac_configure_args=`echo " $ac_configure_args " | sed -e "s% 'CC=$REALCC' % 'CC=$CC' %g"`
+
ac_configure_args=`echo " $ac_configure_args " | sed -e "s% 'CC=$REALCC' % 'CC=$CC' %g"
-e "s% 'CC=$RAWCC' % 'CC=$CC' %g"
`
]) AC_CONFIG_SUBDIRS(modules post_modules) AC_SUBST_FILE(dependencies) dependencies=$srcdir/dependencies AC_SUBST(YACC) AC_SUBST(INSTALL) AC_SUBST(ac_configure_args)