update to Python-2.6.2

This commit is contained in:
Stephan Raue 2009-05-18 04:11:55 +02:00
parent 97cb6c3894
commit 802cd995ef
5 changed files with 1151 additions and 1179 deletions

View File

@ -0,0 +1,26 @@
diff --git a/libdrm/nouveau/nouveau_bo.c b/libdrm/nouveau/nouveau_bo.c
index 023c6be..66466e3 100644
--- a/libdrm/nouveau/nouveau_bo.c
+++ b/libdrm/nouveau/nouveau_bo.c
@@ -404,7 +404,8 @@ nouveau_bo_handle_ref(struct nouveau_device *dev, uint32_t handle,
nvbo->size = req.size;
nvbo->handle = req.handle;
}
-
+
+ nvbo->base.handle = nvbo->handle;
return 0;
}
diff --git a/libdrm/nouveau/nouveau_dma.c b/libdrm/nouveau/nouveau_dma.c
index 23da64b..b084f70 100644
--- a/libdrm/nouveau/nouveau_dma.c
+++ b/libdrm/nouveau/nouveau_dma.c
@@ -41,6 +41,7 @@ WRITE_PUT(struct nouveau_channel_priv *nvchan, uint32_t val)
volatile int dum;
NOUVEAU_DMA_BARRIER;
+ dum = nvchan->pushbuf[0];
dum = READ_GET(nvchan);
*nvchan->put = put;

View File

@ -1 +1 @@
http://www.python.org/ftp/python/2.6.1/Python-2.6.1.tar.bz2 http://www.python.org/ftp/python/2.6.2/Python-2.6.2.tar.bz2

View File

@ -4,7 +4,9 @@
$SCRIPTS/build toolchain $SCRIPTS/build toolchain
CFLAGS="$CFLAGS -I$PKG_BUILD/src/xvmc" BUILD_DIR=`ls -d $PKG_BUILD`
CFLAGS="$CFLAGS -I$BUILD_DIR/src/xvmc"
cd $PKG_BUILD cd $PKG_BUILD
./configure --host=$TARGET_NAME \ ./configure --host=$TARGET_NAME \

View File

@ -40,9 +40,9 @@ if [ ! -f $STAMP ]; then
$PKG_DIR/build $@ >&$VERBOSE_OUT $PKG_DIR/build $@ >&$VERBOSE_OUT
if [ "$DEBUG" = no ]; then if [ "$DEBUG" = no ]; then
$STRIP `find $BUILD/$1* -name "*.so"` >& /dev/null || \ $STRIP `find $BUILD/$1* -name "*.so"` >& /dev/null || \
echo "no *.so libs found" echo "Information: no *.so libs found"
$STRIP `find $BUILD/$1* -name "*.so.[0-9]*"` >& /dev/null ||\ $STRIP `find $BUILD/$1* -name "*.so.[0-9]*"` >& /dev/null ||\
echo "no *.so.[0-9]* libs found" echo "Information: no *.so.[0-9]* libs found"
fi fi
for i in `find $SYSROOT_PREFIX/usr/lib/ -name "*.la"`; do \ for i in `find $SYSROOT_PREFIX/usr/lib/ -name "*.la"`; do \
$SED "s:\(['= ]\)/usr:\\1$SYSROOT_PREFIX/usr:g" $i; \ $SED "s:\(['= ]\)/usr:\\1$SYSROOT_PREFIX/usr:g" $i; \