pike.git
/
src
/
configure.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/configure.in:1:
-
AC_REVISION("$Id: configure.in,v 1.
945
2006/04/
10
16
:
58
:
52
jonasw
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
946
2006/04/
14
08
:
39
:
37
grubba
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h) rm -f config.warnings 2>/dev/null if_autoconf(2,50,[ if test "x$cache_file" = "x/dev/null"; then cache_file=./config.cache if test -r "$cache_file"; then echo "loading cache $cache_file"
pike.git/src/configure.in:2184:
############################################################################# # Script to translate from POSIX paths to native paths. echo "Creating posix_to_native.sh..." if test "x$PIKE_PATH_TRANSLATE" = "x"; then if test "x$pike_cv_is_mingw" = "xyes"; then # MinGW system. cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
945
2006/04/
10
16
:
58
:
52
jonasw
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
946
2006/04/
14
08
:
39
:
37
grubba
Exp $.
# MinGW-version. Do NOT edit. posix_name="`cat`" posix_prefix="/" native_prefix="/" case "$posix_name" in /*) ;; *) posix_name="`pwd`/$posix_name" ;; esac case "$posix_name" in EOF
pike.git/src/configure.in:2222:
cat <<\EOF esac echo "$posix_name" | \ sed -e "s,^$posix_prefix,$native_prefix," | \ sed -e 's/\/\//\//g' EOF else # Native POSIX system. cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
945
2006/04/
10
16
:
58
:
52
jonasw
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
946
2006/04/
14
08
:
39
:
37
grubba
Exp $.
# POSIX-version. Do NOT edit. cat EOF fi else # rntcl-style cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
945
2006/04/
10
16
:
58
:
52
jonasw
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
946
2006/04/
14
08
:
39
:
37
grubba
Exp $.
# RNTCL-version. Do NOT edit. sed -e "$PIKE_PATH_TRANSLATE" EOF fi >posix_to_native.sh chmod a+x posix_to_native.sh ############################################################################# if test ! -d modules/. ; then
pike.git/src/configure.in:7760:
rm -f "$f.pike.patch" else echo " Changed." echo " Diff:" >&AC_FD_CC diff "$f" "$f.pike.patch" >&AC_FD_CC 2>&AC_FD_CC mv -f "$f.pike.patch" "$f" || exit 1 fi done fi
+
# Do we need to patch the assembler files?
+
if test "$pike_cv_sys_os:$pike_cv_com_arch" = "Darwin:i386"; then
+
# as/Darwin complains about alignments > 15.
+
# Nettle uses alignment 16...
+
find . -type f -name '*.asm' -print | while read asm; do
+
if egrep '^[ ]*.align[ ]*16' "$asm" >/dev/null; then
+
echo "Patching alignment in $asm..."
+
if sed -e 's/^\([ ]*.align[ ]*\)16/\18/' \
+
<"$asm" >"$asm.new"; then
+
mv "$asm" "$asm.orig"
+
mv -f "$asm.new" "$asm"
+
else
+
PIKE_MSG_WARN(Patching of bundle assembler file $asm failed.)
+
fi
+
fi
+
done
+
fi
+
# Compile bundle. echo "Compiling bundle $bundle in `pwd`..." ${MAKE-make} || exit 1 # Install bundle. echo "Installing bundle $bundle in ${pike_bundle_prefix}..." ${MAKE-make} install || exit 1 # Mark bundle as installed. touch "${pike_bundle_prefix}/installed/$bundle"