Merge branch 'master' of git://factorcode.org/git/factor

db4
Slava Pestov 2008-03-21 14:10:02 -05:00
commit ea95cc017e
3 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,7 @@ then
elif [ \( `uname -s` = NetBSD \) -a \( `uname -p` = i386 \) ]
then
echo netbsd-x86-32
elif [ \( `uname -s` = NetBSD \) -a \( `uname -p` = amd64 \) ]
elif [ \( `uname -s` = NetBSD \) -a \( `uname -p` = x86_64 \) ]
then
echo netbsd-x86-64
elif [ \( `uname -s` = Darwin \) -a \( `uname -p` = powerpc \) ]

View File

@ -1,5 +1,5 @@
USING: kernel system io.files.unique.backend
windows.kernel32 io.windows io.nonblocking ;
windows.kernel32 io.windows io.nonblocking windows ;
IN: io.windows.files.unique
M: windows-io (make-unique-file) ( path -- )

View File

@ -88,6 +88,9 @@ set_md5sum() {
set_gcc() {
case $OS in
openbsd) ensure_program_installed egcc; CC=egcc;;
netbsd) if [[ $WORD -eq 64 ]] ; then
CC=/usr/pkg/gcc34/bin/gcc
fi ;;
*) CC=gcc;;
esac
}