corrected main script for linux

corrected newlib patch
This commit is contained in:
Dave Murphy 2005-09-14 04:13:30 +00:00
parent 60b7acfa5f
commit 90da8281c2
2 changed files with 16 additions and 14 deletions

View File

@ -77,12 +77,13 @@ then
target=psp
toolchain=DEVKITPSP
if test "`svn help`" ; then
SVN="svn"
else
echo "ERROR: Please make sure you have 'subversion (svn)' installed."
exit
fi
if test "`svn help`"
then
SVN="svn"
else
echo "ERROR: Please make sure you have 'subversion (svn)' installed."
exit
fi
fi
@ -103,14 +104,15 @@ do
fi
done
if [ "$DOWNLOAD" -eq 2]
if [ "$DOWNLOAD" -eq 2 ]
then
if test "`wget -V`" ; then
WGET=wget
else
echo "ERROR: Please make sure you have 'wget' installed."
exit
fi
if test "`wget -V`"
then
WGET=wget
else
echo "ERROR: Please make sure you have 'wget' installed."
exit
fi
fi

View File

@ -2649,7 +2649,7 @@ diff -Nbaur newlib-1.13.0/newlib/libc/include/stdio.h newlib-1.13.0-new/newlib/l
int _EXFUN(vfiscanf, (FILE *, const char *, __VALIST));
int _EXFUN(vfscanf, (FILE *, const char *, __VALIST));
int _EXFUN(viscanf, (const char *, __VALIST));
+int _EXFUN(viprintf, (const char *, ...));
+int _EXFUN(viprintf, (const char *, __VALIST));
int _EXFUN(vscanf, (const char *, __VALIST));
int _EXFUN(vsiscanf, (const char *, const char *, __VALIST));
int _EXFUN(vsscanf, (const char *, const char *, __VALIST));