From 1592d7cb1d5342d74db96849eb834fd5e32a877a Mon Sep 17 00:00:00 2001 From: mrdominuzq Date: Thu, 6 Oct 2011 09:49:57 +0300 Subject: [PATCH 01/10] libplist: updated to 1.4 and change download site --- packages/devel/libplist/meta | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/devel/libplist/meta b/packages/devel/libplist/meta index b575f8de4f..ae22690e96 100644 --- a/packages/devel/libplist/meta +++ b/packages/devel/libplist/meta @@ -19,12 +19,12 @@ ################################################################################ PKG_NAME="libplist" -PKG_VERSION="1.3" +PKG_VERSION="1.4" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://matt.colyer.name/projects/iphone-linux/" -PKG_URL="http://github.com/downloads/JonathanBeck/libplist/$PKG_NAME-$PKG_VERSION.tar.bz2" +PKG_URL="http://www.libimobiledevice.org/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2" PKG_DEPENDS="libxml2 glib" PKG_BUILD_DEPENDS="toolchain libxml2 glib" PKG_PRIORITY="optional" From 77ee536ab9a230eb40d7ed1b85f4e8fd7afb5191 Mon Sep 17 00:00:00 2001 From: Henning Dickten Date: Thu, 6 Oct 2011 23:49:24 +0200 Subject: [PATCH 02/10] [Fusion] fixed xorg-fglrx.conf to get GPU-temp --- .../x11/driver/xf86-video-fglrx/config/xorg-fglrx.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/x11/driver/xf86-video-fglrx/config/xorg-fglrx.conf b/packages/x11/driver/xf86-video-fglrx/config/xorg-fglrx.conf index 60f6205784..1ce2e85a0b 100644 --- a/packages/x11/driver/xf86-video-fglrx/config/xorg-fglrx.conf +++ b/packages/x11/driver/xf86-video-fglrx/config/xorg-fglrx.conf @@ -1,7 +1,11 @@ +Section "ServerLayout" + Identifier "aticonfig Layout" + Screen 0 "screen" 0 0 +EndSection + Section "Device" Identifier "fglrx" Driver "fglrx" - Option "HWCursor" "false" EndSection @@ -14,7 +18,7 @@ Section "Screen" Device "fglrx" DefaultDepth 24 SubSection "Display" - Depth 24 + Depth 24 EndSubSection EndSection From 0207b461889391f2928494e9ec1bfb52d2690745 Mon Sep 17 00:00:00 2001 From: Henning Dickten Date: Fri, 7 Oct 2011 00:08:45 +0200 Subject: [PATCH 03/10] gputemp: added ability to use own xorg.conf (fglrx) --- packages/mediacenter/xbmc/scripts/gputemp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/mediacenter/xbmc/scripts/gputemp b/packages/mediacenter/xbmc/scripts/gputemp index 7ce4fce138..7767e885a9 100755 --- a/packages/mediacenter/xbmc/scripts/gputemp +++ b/packages/mediacenter/xbmc/scripts/gputemp @@ -27,7 +27,12 @@ if lspci -n | grep 0300 | grep -q 10de; then fi if lspci -n | grep 0300 | grep -q 1002; then - [ -f /usr/bin/aticonfig ] && TEMP=`/usr/bin/aticonfig --od-gettemperature | grep Temperature | cut -f 2 -d "-" | cut -f 1 -d "." | sed -e "s, ,,"` + if [ -f /storage/.config/xorg.conf ]; then + XORG="/storage/.config/xorg.conf" + else + XORG="/etc/X11/xorg-fglrx.conf" + fi + [ -f /usr/bin/aticonfig ] && TEMP=`/usr/bin/aticonfig -i $XORG --od-gettemperature | grep Temperature | cut -f 2 -d "-" | cut -f 1 -d "." | sed -e "s, ,,"` fi echo "${TEMP} C" From d26869853b8208c4952ab89b2996e2cfff5fb802 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Fri, 7 Oct 2011 19:17:38 +0200 Subject: [PATCH 04/10] xwiimote: update to xwiimote-0b79d97 Signed-off-by: Stephan Raue --- packages/sysutils/remote/xwiimote/install | 4 +- packages/sysutils/remote/xwiimote/meta | 2 +- .../patches/xwiimote-0b79d97-makefile.patch | 45 ++++++++++++++++ .../patches/xwiimote-7341491-makefile.patch | 52 ------------------- 4 files changed, 47 insertions(+), 56 deletions(-) create mode 100644 packages/sysutils/remote/xwiimote/patches/xwiimote-0b79d97-makefile.patch delete mode 100644 packages/sysutils/remote/xwiimote/patches/xwiimote-7341491-makefile.patch diff --git a/packages/sysutils/remote/xwiimote/install b/packages/sysutils/remote/xwiimote/install index 369a0b7509..63fac13375 100755 --- a/packages/sysutils/remote/xwiimote/install +++ b/packages/sysutils/remote/xwiimote/install @@ -23,13 +23,11 @@ . config/options $1 mkdir -p $INSTALL/usr/bin - cp $PKG_BUILD/tools/xwii $INSTALL/usr/bin - cp $PKG_BUILD/tools/xwiiconn $INSTALL/usr/bin cp $PKG_BUILD/tools/xwiidump $INSTALL/usr/bin cp $PKG_BUILD/tools/xwiishow $INSTALL/usr/bin mkdir -p $INSTALL/usr/lib - cp $PKG_BUILD/libxwiimote.so* $INSTALL/usr/lib + cp $PKG_BUILD/lib/libxwiimote.so* $INSTALL/usr/lib mkdir -p $INSTALL/usr/share/X11/xorg.conf.d cp $PKG_BUILD/res/50-xorg-disable-wiimote.conf $INSTALL/usr/share/X11/xorg.conf.d diff --git a/packages/sysutils/remote/xwiimote/meta b/packages/sysutils/remote/xwiimote/meta index 9f0f767a4d..e07c7fc0e8 100644 --- a/packages/sysutils/remote/xwiimote/meta +++ b/packages/sysutils/remote/xwiimote/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="xwiimote" -PKG_VERSION="7341491" +PKG_VERSION="0b79d97" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/sysutils/remote/xwiimote/patches/xwiimote-0b79d97-makefile.patch b/packages/sysutils/remote/xwiimote/patches/xwiimote-0b79d97-makefile.patch new file mode 100644 index 0000000000..a0d51e1695 --- /dev/null +++ b/packages/sysutils/remote/xwiimote/patches/xwiimote-0b79d97-makefile.patch @@ -0,0 +1,45 @@ +diff -Naur xwiimote-0b79d97/lib/Makefile xwiimote-0b79d97.patch/lib/Makefile +--- xwiimote-0b79d97/lib/Makefile 2011-10-07 01:24:24.000000000 +0200 ++++ xwiimote-0b79d97.patch/lib/Makefile 2011-10-07 01:32:17.403217723 +0200 +@@ -4,13 +4,15 @@ + # Dedicated to the Public Domain + # + ++CC ?= gcc ++ + SFSPATH=../../misc/libmisc/libsfs + + all: libxwiimote.so + + # build xwiimote library + libxwiimote.so: event.c udev.c sfs.c xwiimote.h libsfs.h +- gcc -o $@ $^ -ludev -Wall -shared -fPIC ++ $(CC) -o $@ $^ -ludev -Wall -shared -fPIC + + # + # The copy rule is only used by maintainers to copy the most recent version of +diff -Naur xwiimote-0b79d97/tools/Makefile xwiimote-0b79d97.patch/tools/Makefile +--- xwiimote-0b79d97/tools/Makefile 2011-10-07 01:24:24.000000000 +0200 ++++ xwiimote-0b79d97.patch/tools/Makefile 2011-10-07 01:32:53.053681433 +0200 +@@ -4,6 +4,8 @@ + # Dedicated to the Public Domain + # + ++CC ?= gcc ++ + .PHONY: all clean + + all: xwiishow xwiidump +@@ -12,10 +14,10 @@ + @rm -fv xwiishow xwiidump + + xwiishow: xwiishow.c ../lib/libxwiimote.so +- gcc -o xwiishow xwiishow.c -Wall ../lib/libxwiimote.so -I../lib ++ $(CC) -o xwiishow xwiishow.c -Wall -L../lib/ -lxwiimote -I../lib + + xwiidump: xwiidump.c +- gcc -o xwiidump xwiidump.c -Wall ++ $(CC) -o xwiidump xwiidump.c -Wall + + ../lib/libxwiimote.so: + @echo Making library diff --git a/packages/sysutils/remote/xwiimote/patches/xwiimote-7341491-makefile.patch b/packages/sysutils/remote/xwiimote/patches/xwiimote-7341491-makefile.patch deleted file mode 100644 index 485887a9f7..0000000000 --- a/packages/sysutils/remote/xwiimote/patches/xwiimote-7341491-makefile.patch +++ /dev/null @@ -1,52 +0,0 @@ -diff -Naur xwiimote-7341491-old/makefile xwiimote-7341491-new/makefile ---- xwiimote-7341491-old/makefile 2011-08-02 10:16:15.000000000 -0700 -+++ xwiimote-7341491-new/makefile 2011-08-02 10:20:01.000000000 -0700 -@@ -4,12 +4,14 @@ - # Dedicated to the Public Domain - # - -+CC ?= gcc -+ - .PHONY: build clean - - build: libxwiimote.so - - libxwiimote.so: lib/*.c -- gcc -shared -o libxwiimote.so lib/*.c -fPIC -Wall -O2 -ludev -+ $(CC) -shared -o libxwiimote.so lib/*.c -fPIC -Wall -O2 -ludev $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) - - clean: - @rm -fv libxwiimote.so -diff -Naur xwiimote-7341491-old/tools/makefile xwiimote-7341491-new/tools/makefile ---- xwiimote-7341491-old/tools/makefile 2011-08-02 10:16:15.000000000 -0700 -+++ xwiimote-7341491-new/tools/makefile 2011-08-02 10:21:44.000000000 -0700 -@@ -4,6 +4,8 @@ - # Dedicated to the Public Domain - # - -+CC ?= gcc -+ - .PHONY: all clean - - all: xwiiconn xwii xwiishow xwiidump -@@ -12,16 +14,16 @@ - @rm -fv xwiiconn xwii xwiishow xwiidump - - xwiiconn: xwiiconn.c -- gcc -o xwiiconn xwiiconn.c -Wall -O0 -g -lbluetooth `pkg-config --libs --cflags dbus-glib-1 glib-2.0` -+ $(CC) -o xwiiconn xwiiconn.c -Wall -O0 -g -lbluetooth `pkg-config --libs --cflags dbus-glib-1 glib-2.0` $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) - - xwii: xwii.c ../libxwiimote.so -- gcc -o xwii xwii.c -Wall -O0 -g ../libxwiimote.so -I../lib -+ $(CC) -o xwii xwii.c -Wall -O0 -g -L../ -lxwiimote -I../lib $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) - - xwiishow: xwiishow.c ../libxwiimote.so -- gcc -o xwiishow xwiishow.c -Wall -O0 -g ../libxwiimote.so -I../lib -+ $(CC) -o xwiishow xwiishow.c -Wall -O0 -g -L../ -lxwiimote -I../lib $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) - - xwiidump: xwiidump.c -- gcc -o xwiidump xwiidump.c -Wall -O0 -g -+ $(CC) -o xwiidump xwiidump.c -Wall -O0 -g $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) - - ../libxwiimote.so: - @echo Making library From 61452f0578b8e103882b37cc52202a326c166921 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Fri, 7 Oct 2011 19:23:28 +0200 Subject: [PATCH 05/10] fakeroot: update to fakeroot-1.18.1 Signed-off-by: Stephan Raue --- packages/toolchain/devel/fakeroot/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/toolchain/devel/fakeroot/meta b/packages/toolchain/devel/fakeroot/meta index 7b88e4f7a7..b347aac6fe 100644 --- a/packages/toolchain/devel/fakeroot/meta +++ b/packages/toolchain/devel/fakeroot/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="fakeroot" -PKG_VERSION="1.18" +PKG_VERSION="1.18.1" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL3" From bf9a560d4ee5437d0d0e12a6305b927463605501 Mon Sep 17 00:00:00 2001 From: Tai Lee Date: Sun, 9 Oct 2011 18:36:07 +1100 Subject: [PATCH 06/10] build saa7164 driver as kernel module. --- projects/Fusion/linux/linux.i386.conf | 2 +- projects/Fusion/linux/linux.x86_64.conf | 2 +- projects/Generic/linux/linux.i386.conf | 2 +- projects/Generic_OSS/linux/linux.i386.conf | 2 +- projects/ION/linux/linux.i386.conf | 2 +- projects/ION/linux/linux.x86_64.conf | 2 +- projects/Intel/linux/linux.i386.conf | 2 +- projects/Intel/linux/linux.x86_64.conf | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/projects/Fusion/linux/linux.i386.conf b/projects/Fusion/linux/linux.i386.conf index 8a024a0426..2d09c09b79 100644 --- a/projects/Fusion/linux/linux.i386.conf +++ b/projects/Fusion/linux/linux.i386.conf @@ -1763,7 +1763,7 @@ CONFIG_MEDIA_ALTERA_CI=m # CONFIG_VIDEO_AU0828 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CX18 is not set -# CONFIG_VIDEO_SAA7164 is not set +CONFIG_VIDEO_SAA7164=m # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_NOON010PC30 is not set diff --git a/projects/Fusion/linux/linux.x86_64.conf b/projects/Fusion/linux/linux.x86_64.conf index 2ec494d23f..c5e88353b4 100644 --- a/projects/Fusion/linux/linux.x86_64.conf +++ b/projects/Fusion/linux/linux.x86_64.conf @@ -1721,7 +1721,7 @@ CONFIG_MEDIA_ALTERA_CI=m # CONFIG_VIDEO_AU0828 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CX18 is not set -# CONFIG_VIDEO_SAA7164 is not set +CONFIG_VIDEO_SAA7164=m # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_NOON010PC30 is not set diff --git a/projects/Generic/linux/linux.i386.conf b/projects/Generic/linux/linux.i386.conf index a3f1e103bf..3519422de0 100644 --- a/projects/Generic/linux/linux.i386.conf +++ b/projects/Generic/linux/linux.i386.conf @@ -1905,7 +1905,7 @@ CONFIG_MEDIA_ALTERA_CI=m # CONFIG_VIDEO_AU0828 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CX18 is not set -# CONFIG_VIDEO_SAA7164 is not set +CONFIG_VIDEO_SAA7164=m # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_NOON010PC30 is not set diff --git a/projects/Generic_OSS/linux/linux.i386.conf b/projects/Generic_OSS/linux/linux.i386.conf index 0576a42f5f..e9c2a476a4 100644 --- a/projects/Generic_OSS/linux/linux.i386.conf +++ b/projects/Generic_OSS/linux/linux.i386.conf @@ -1906,7 +1906,7 @@ CONFIG_MEDIA_ALTERA_CI=m # CONFIG_VIDEO_AU0828 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CX18 is not set -# CONFIG_VIDEO_SAA7164 is not set +CONFIG_VIDEO_SAA7164=m # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_NOON010PC30 is not set diff --git a/projects/ION/linux/linux.i386.conf b/projects/ION/linux/linux.i386.conf index ed5bf8aa6c..b0105a620a 100644 --- a/projects/ION/linux/linux.i386.conf +++ b/projects/ION/linux/linux.i386.conf @@ -1766,7 +1766,7 @@ CONFIG_MEDIA_ALTERA_CI=m # CONFIG_VIDEO_AU0828 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CX18 is not set -# CONFIG_VIDEO_SAA7164 is not set +CONFIG_VIDEO_SAA7164=m # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_NOON010PC30 is not set diff --git a/projects/ION/linux/linux.x86_64.conf b/projects/ION/linux/linux.x86_64.conf index 522ae6f443..492208f8db 100644 --- a/projects/ION/linux/linux.x86_64.conf +++ b/projects/ION/linux/linux.x86_64.conf @@ -1716,7 +1716,7 @@ CONFIG_MEDIA_ALTERA_CI=m # CONFIG_VIDEO_AU0828 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CX18 is not set -# CONFIG_VIDEO_SAA7164 is not set +CONFIG_VIDEO_SAA7164=m # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_NOON010PC30 is not set diff --git a/projects/Intel/linux/linux.i386.conf b/projects/Intel/linux/linux.i386.conf index 63b3205973..8e8c8317f3 100644 --- a/projects/Intel/linux/linux.i386.conf +++ b/projects/Intel/linux/linux.i386.conf @@ -1807,7 +1807,7 @@ CONFIG_MEDIA_ALTERA_CI=m # CONFIG_VIDEO_AU0828 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CX18 is not set -# CONFIG_VIDEO_SAA7164 is not set +CONFIG_VIDEO_SAA7164=m # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_NOON010PC30 is not set diff --git a/projects/Intel/linux/linux.x86_64.conf b/projects/Intel/linux/linux.x86_64.conf index 8a766d7d77..734d7220a4 100644 --- a/projects/Intel/linux/linux.x86_64.conf +++ b/projects/Intel/linux/linux.x86_64.conf @@ -1761,7 +1761,7 @@ CONFIG_MEDIA_ALTERA_CI=m # CONFIG_VIDEO_AU0828 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CX18 is not set -# CONFIG_VIDEO_SAA7164 is not set +CONFIG_VIDEO_SAA7164=m # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_NOON010PC30 is not set From 7b4579d059b2913049dc24a7b8a6a1db0cc59775 Mon Sep 17 00:00:00 2001 From: Tai Lee Date: Sun, 9 Oct 2011 18:40:08 +1100 Subject: [PATCH 07/10] update URL for alsa-lib and alsa-utils source --- packages/audio/alsa-lib/meta | 2 +- packages/audio/alsa-utils/meta | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/audio/alsa-lib/meta b/packages/audio/alsa-lib/meta index 64c4264c3e..e97f0bbba3 100644 --- a/packages/audio/alsa-lib/meta +++ b/packages/audio/alsa-lib/meta @@ -24,7 +24,7 @@ PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://www.alsa-project.org/" -PKG_URL="http://dl.ambiweb.de/mirrors/ftp.alsa-project.org/lib/$PKG_NAME-$PKG_VERSION.tar.bz2" +PKG_URL="ftp://ftp.alsa-project.org/pub/lib/$PKG_NAME-$PKG_VERSION.tar.bz2" PKG_DEPENDS="" PKG_BUILD_DEPENDS="toolchain" PKG_PRIORITY="optional" diff --git a/packages/audio/alsa-utils/meta b/packages/audio/alsa-utils/meta index b81c1f125b..421f1ba063 100644 --- a/packages/audio/alsa-utils/meta +++ b/packages/audio/alsa-utils/meta @@ -24,7 +24,7 @@ PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://www.alsa-project.org/" -PKG_URL="http://dl.ambiweb.de/mirrors/ftp.alsa-project.org/utils/$PKG_NAME-$PKG_VERSION.tar.bz2" +PKG_URL="ftp://ftp.alsa-project.org/pub/utils/$PKG_NAME-$PKG_VERSION.tar.bz2" PKG_DEPENDS="alsa-lib" PKG_BUILD_DEPENDS="toolchain alsa-lib" PKG_PRIORITY="optional" From 506a21aed7aee052a6f51cc6d2834a1b83b0b31e Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 9 Oct 2011 12:55:34 +0200 Subject: [PATCH 08/10] dvb-firmware: update to dvb-firmware-0.0.11 Signed-off-by: Stephan Raue --- packages/linux-firmware/dvb-firmware/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/linux-firmware/dvb-firmware/meta b/packages/linux-firmware/dvb-firmware/meta index 88cce17371..75851543e9 100644 --- a/packages/linux-firmware/dvb-firmware/meta +++ b/packages/linux-firmware/dvb-firmware/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="dvb-firmware" -PKG_VERSION="0.0.10" +PKG_VERSION="0.0.11" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="Free-to-use" From b407f771ca348b51238fdcc529e55c104224c549 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 9 Oct 2011 14:24:14 +0200 Subject: [PATCH 09/10] dvb-firmware: update to dvb-firmware-0.0.12 Signed-off-by: Stephan Raue --- packages/linux-firmware/dvb-firmware/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/linux-firmware/dvb-firmware/meta b/packages/linux-firmware/dvb-firmware/meta index 75851543e9..34d721b55a 100644 --- a/packages/linux-firmware/dvb-firmware/meta +++ b/packages/linux-firmware/dvb-firmware/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="dvb-firmware" -PKG_VERSION="0.0.11" +PKG_VERSION="0.0.12" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="Free-to-use" From 9b07e53591bea513ff49d6da8342313113665e96 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 9 Oct 2011 18:34:22 +0200 Subject: [PATCH 10/10] Mesa: build shared libglapi Signed-off-by: Stephan Raue --- packages/graphics/Mesa/build | 2 +- packages/graphics/Mesa/install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/graphics/Mesa/build b/packages/graphics/Mesa/build index 51888af2ad..98de9c053c 100755 --- a/packages/graphics/Mesa/build +++ b/packages/graphics/Mesa/build @@ -71,7 +71,7 @@ DRI_DRIVER_SEARCH_DIR="$XORG_PATH_DRI" \ --disable-gbm \ --disable-gallium-egl \ --disable-gallium-gbm \ - --disable-shared-glapi \ + --enable-shared-glapi \ --enable-xcb \ --disable-shared-dricore \ --disable-egl \ diff --git a/packages/graphics/Mesa/install b/packages/graphics/Mesa/install index 6fd67ce905..45caf0386a 100755 --- a/packages/graphics/Mesa/install +++ b/packages/graphics/Mesa/install @@ -27,7 +27,7 @@ mkdir -p $INSTALL/usr/lib ln -sf libGL.so.1 $INSTALL/usr/lib/libGL.so ln -sf /var/lib/libGL.so $INSTALL/usr/lib/libGL.so.1 cp -P $PKG_BUILD/lib/libGLU.so* $INSTALL/usr/lib -# cp -P $PKG_BUILD/lib/libglapi.so* $INSTALL/usr/lib + cp -P $PKG_BUILD/lib/libglapi.so* $INSTALL/usr/lib mkdir -p $INSTALL/usr/lib/dri # cp -P $PKG_BUILD/lib/libdricore.so $INSTALL/usr/lib