All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib
@ 2011-01-06 18:41 Gustavo Zacarias
  2011-01-06 18:41 ` [Buildroot] [PATCH 2/5] pciutils: SHARED make opt goes for install too Gustavo Zacarias
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2011-01-06 18:41 UTC (permalink / raw)
  To: buildroot

Select alsa-libs instead of depending on them otherwise it's just
"missing" from the menu.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/multimedia/alsa-utils/Config.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/multimedia/alsa-utils/Config.in b/package/multimedia/alsa-utils/Config.in
index 3f30c61..b85ff7e 100644
--- a/package/multimedia/alsa-utils/Config.in
+++ b/package/multimedia/alsa-utils/Config.in
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_ALSA_UTILS
 	bool "alsa-utils"
 	depends on BR2_LARGEFILE
-	depends on BR2_PACKAGE_ALSA_LIB
+	select BR2_PACKAGE_ALSA_LIB
 	help
 	  This package contains the command line utilities for the ALSA
 	  project.
-- 
1.7.2.2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 2/5] pciutils: SHARED make opt goes for install too
  2011-01-06 18:41 [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Gustavo Zacarias
@ 2011-01-06 18:41 ` Gustavo Zacarias
  2011-01-10 13:11   ` Peter Korsgaard
  2011-01-06 18:41 ` [Buildroot] [PATCH 3/5] flac: fix powerpc build Gustavo Zacarias
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 12+ messages in thread
From: Gustavo Zacarias @ 2011-01-06 18:41 UTC (permalink / raw)
  To: buildroot

If we don't pass SHARED when installing we miss the shared library
symlinks (libpci.so & libpci.so.3) thus breaking stuff.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/pciutils/pciutils.mk |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk
index 6e16300..782d348 100644
--- a/package/pciutils/pciutils.mk
+++ b/package/pciutils/pciutils.mk
@@ -39,8 +39,10 @@ endef
 
 # Ditch install-lib if SHARED is an option in the future
 define PCIUTILS_INSTALL_TARGET_CMDS
-	$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr install
-	$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr install-lib
+	$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
+		SHARED=$(PCIUTILS_SHARED) install
+	$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
+		SHARED=$(PCIUTILS_SHARED) install-lib
 endef
 
 $(eval $(call GENTARGETS,package,pciutils))
-- 
1.7.2.2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 3/5] flac: fix powerpc build
  2011-01-06 18:41 [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Gustavo Zacarias
  2011-01-06 18:41 ` [Buildroot] [PATCH 2/5] pciutils: SHARED make opt goes for install too Gustavo Zacarias
@ 2011-01-06 18:41 ` Gustavo Zacarias
  2011-01-10 21:27   ` Peter Korsgaard
  2011-01-06 18:42 ` [Buildroot] [PATCH 4/5] libao: new package Gustavo Zacarias
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 12+ messages in thread
From: Gustavo Zacarias @ 2011-01-06 18:41 UTC (permalink / raw)
  To: buildroot

flac incorrectly assumes every powerpc around has altivec.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/multimedia/flac/flac-no-altivec.patch |   28 +++++++++++++++++++++++++
 package/multimedia/flac/flac.mk               |    2 -
 2 files changed, 28 insertions(+), 2 deletions(-)
 create mode 100644 package/multimedia/flac/flac-no-altivec.patch

diff --git a/package/multimedia/flac/flac-no-altivec.patch b/package/multimedia/flac/flac-no-altivec.patch
new file mode 100644
index 0000000..c6a535b
--- /dev/null
+++ b/package/multimedia/flac/flac-no-altivec.patch
@@ -0,0 +1,28 @@
+FLAC assumes every powerpc around has altivec ABI which is wrong.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+diff -Nura flac-1.2.1/src/libFLAC/Makefile.am flac-1.2.1-noaltivec/src/libFLAC/Makefile.am
+--- flac-1.2.1/src/libFLAC/Makefile.am	2007-09-14 18:06:17.000000000 -0300
++++ flac-1.2.1-noaltivec/src/libFLAC/Makefile.am	2011-01-06 15:14:36.384242614 -0300
+@@ -41,7 +41,7 @@
+ else
+ # Linux-gcc for PPC does not have -force_cpusubtype_ALL, it is Darwin-specific
+ #@@@ PPC optimizations temporarily disabled
+-CPUCFLAGS = -maltivec -mabi=altivec -DFLAC__NO_ASM
++CPUCFLAGS = -DFLAC__NO_ASM
+ endif
+ endif
+ 
+diff -Nura flac-1.2.1/src/libFLAC/Makefile.in flac-1.2.1-noaltivec/src/libFLAC/Makefile.in
+--- flac-1.2.1/src/libFLAC/Makefile.in	2007-09-16 17:05:12.000000000 -0300
++++ flac-1.2.1-noaltivec/src/libFLAC/Makefile.in	2011-01-06 15:14:50.997545602 -0300
+@@ -240,7 +240,7 @@
+ @FLaC__CPU_PPC_TRUE@@FLaC__SYS_DARWIN_TRUE at CPUCFLAGS = -faltivec -force_cpusubtype_ALL -DFLAC__NO_ASM
+ # Linux-gcc for PPC does not have -force_cpusubtype_ALL, it is Darwin-specific
+ #@@@ PPC optimizations temporarily disabled
+- at FLaC__CPU_PPC_TRUE@@FLaC__SYS_DARWIN_FALSE at CPUCFLAGS = -maltivec -mabi=altivec -DFLAC__NO_ASM
++ at FLaC__CPU_PPC_TRUE@@FLaC__SYS_DARWIN_FALSE at CPUCFLAGS = -DFLAC__NO_ASM
+ 
+ AM_CFLAGS = $(DEBUGCFLAGS) $(CPUCFLAGS) @OGG_CFLAGS@
+ @FLaC__CPU_PPC_TRUE@@FLaC__NO_ASM_FALSE at ARCH_SUBDIRS = ppc
diff --git a/package/multimedia/flac/flac.mk b/package/multimedia/flac/flac.mk
index a11924a..dbaf2e9 100644
--- a/package/multimedia/flac/flac.mk
+++ b/package/multimedia/flac/flac.mk
@@ -7,8 +7,6 @@
 FLAC_VERSION = 1.2.1
 FLAC_SOURCE = flac-$(FLAC_VERSION).tar.gz
 FLAC_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/flac/
-FLAC_AUTORECONF = NO
-FLAC_INSTALL_TARGET = YES
 FLAC_INSTALL_STAGING = YES
 
 FLAC_CONF_OPT = \
-- 
1.7.2.2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 4/5] libao: new package
  2011-01-06 18:41 [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Gustavo Zacarias
  2011-01-06 18:41 ` [Buildroot] [PATCH 2/5] pciutils: SHARED make opt goes for install too Gustavo Zacarias
  2011-01-06 18:41 ` [Buildroot] [PATCH 3/5] flac: fix powerpc build Gustavo Zacarias
@ 2011-01-06 18:42 ` Gustavo Zacarias
  2011-01-10 21:30   ` Peter Korsgaard
  2011-01-06 18:42 ` [Buildroot] [PATCH 5/5] vorbis-tools: " Gustavo Zacarias
  2011-01-10 13:10 ` [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Peter Korsgaard
  4 siblings, 1 reply; 12+ messages in thread
From: Gustavo Zacarias @ 2011-01-06 18:42 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/multimedia/Config.in       |    1 +
 package/multimedia/libao/Config.in |    7 +++++++
 package/multimedia/libao/libao.mk  |   15 +++++++++++++++
 3 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 package/multimedia/libao/Config.in
 create mode 100644 package/multimedia/libao/libao.mk

diff --git a/package/multimedia/Config.in b/package/multimedia/Config.in
index da50dbb..5c1111d 100644
--- a/package/multimedia/Config.in
+++ b/package/multimedia/Config.in
@@ -10,6 +10,7 @@ source "package/multimedia/gst-plugins-base/Config.in"
 source "package/multimedia/gst-plugins-good/Config.in"
 source "package/multimedia/gst-plugins-bad/Config.in"
 source "package/multimedia/gst-plugins-ugly/Config.in"
+source "package/multimedia/libao/Config.in"
 source "package/multimedia/libcdaudio/Config.in"
 source "package/multimedia/libdvdread/Config.in"
 source "package/multimedia/libdvdnav/Config.in"
diff --git a/package/multimedia/libao/Config.in b/package/multimedia/libao/Config.in
new file mode 100644
index 0000000..3c99ab9
--- /dev/null
+++ b/package/multimedia/libao/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_LIBAO
+	bool "libao"
+	help
+	  Libao is a cross-platform audio library that allows programs
+	  to output audio using a simple API on a wide variety of platforms.
+
+	  http://www.xiph.org/ao/
diff --git a/package/multimedia/libao/libao.mk b/package/multimedia/libao/libao.mk
new file mode 100644
index 0000000..edbada7
--- /dev/null
+++ b/package/multimedia/libao/libao.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# libao
+#
+#############################################################
+
+LIBAO_VERSION = 1.0.0
+LIBAO_SITE = http://downloads.xiph.org/releases/ao
+LIBAO_INSTALL_STAGING = YES
+
+ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
+LIBAO_DEPENDENCIES += alsa-lib
+endif
+
+$(eval $(call AUTOTARGETS,package/multimedia,libao))
-- 
1.7.2.2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 5/5] vorbis-tools: new package
  2011-01-06 18:41 [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2011-01-06 18:42 ` [Buildroot] [PATCH 4/5] libao: new package Gustavo Zacarias
@ 2011-01-06 18:42 ` Gustavo Zacarias
  2011-01-11 15:38   ` Peter Korsgaard
  2011-01-10 13:10 ` [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Peter Korsgaard
  4 siblings, 1 reply; 12+ messages in thread
From: Gustavo Zacarias @ 2011-01-06 18:42 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/multimedia/Config.in                    |    1 +
 package/multimedia/vorbis-tools/Config.in       |   12 ++++++++++++
 package/multimedia/vorbis-tools/vorbis-tools.mk |   20 ++++++++++++++++++++
 3 files changed, 33 insertions(+), 0 deletions(-)
 create mode 100644 package/multimedia/vorbis-tools/Config.in
 create mode 100644 package/multimedia/vorbis-tools/vorbis-tools.mk

diff --git a/package/multimedia/Config.in b/package/multimedia/Config.in
index 5c1111d..6d2cbc7 100644
--- a/package/multimedia/Config.in
+++ b/package/multimedia/Config.in
@@ -32,4 +32,5 @@ source "package/multimedia/festival/Config.in"
 source "package/multimedia/taglib/Config.in"
 source "package/multimedia/tremor/Config.in"
 source "package/multimedia/vlc/Config.in"
+source "package/multimedia/vorbis-tools/Config.in"
 endmenu
diff --git a/package/multimedia/vorbis-tools/Config.in b/package/multimedia/vorbis-tools/Config.in
new file mode 100644
index 0000000..6092e01
--- /dev/null
+++ b/package/multimedia/vorbis-tools/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_VORBIS_TOOLS
+	bool "vorbis-tools"
+	select BR2_PACKAGE_LIBAO
+	select BR2_PACKAGE_LIBOGG
+	select BR2_PACKAGE_LIBVORBIS
+	select BR2_PACKAGE_LIBCURL
+	help
+	  Standalone player, encoder and decoder for Ogg format files.
+
+	  Works also as a streaming player.
+
+	  http://www.vorbis.com/
diff --git a/package/multimedia/vorbis-tools/vorbis-tools.mk b/package/multimedia/vorbis-tools/vorbis-tools.mk
new file mode 100644
index 0000000..6fd6c2a
--- /dev/null
+++ b/package/multimedia/vorbis-tools/vorbis-tools.mk
@@ -0,0 +1,20 @@
+#############################################################
+#
+# vorbis-tools
+#
+#############################################################
+
+VORBIS_TOOLS_VERSION = 1.4.0
+VORBIS_TOOLS_SITE = http://downloads.xiph.org/releases/vorbis
+VORBIS_TOOLS_DEPENDENCIES = libao libogg libvorbis libcurl
+VORBIS_TOOLS_CONF_OPT = --program-transform-name=''
+
+ifeq ($(BR2_PACKAGE_FLAC),y)
+VORBIS_TOOLS_DEPENDENCIES += flac
+endif
+
+ifeq ($(BR2_PACKAGE_SPEEX),y)
+VORBIS_TOOLS_DEPENDENCIES += speex
+endif
+
+$(eval $(call AUTOTARGETS,package/multimedia,vorbis-tools))
-- 
1.7.2.2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib
  2011-01-06 18:41 [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Gustavo Zacarias
                   ` (3 preceding siblings ...)
  2011-01-06 18:42 ` [Buildroot] [PATCH 5/5] vorbis-tools: " Gustavo Zacarias
@ 2011-01-10 13:10 ` Peter Korsgaard
  4 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2011-01-10 13:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Select alsa-libs instead of depending on them otherwise it's just
 Gustavo> "missing" from the menu.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 2/5] pciutils: SHARED make opt goes for install too
  2011-01-06 18:41 ` [Buildroot] [PATCH 2/5] pciutils: SHARED make opt goes for install too Gustavo Zacarias
@ 2011-01-10 13:11   ` Peter Korsgaard
  2011-01-10 13:15     ` Gustavo Zacarias
  0 siblings, 1 reply; 12+ messages in thread
From: Peter Korsgaard @ 2011-01-10 13:11 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> If we don't pass SHARED when installing we miss the shared library
 Gustavo> symlinks (libpci.so & libpci.so.3) thus breaking stuff.

Really? It works here:

>>> pciutils 3.1.7 Installing to target
..
/usr/bin/make -j2 BUILDDIR=/home/peko/source/buildroot/output3/build/pciutils-3.1.7 -C /home/peko/source/buildroot/output3/build/pciutils-3.1.7 PREFIX=/home/peko/source/buildroot/output3/target/usr install-lib
/usr/bin/make -C lib all
make[3]: Nothing to be done for `all'.
install -d -m 755 /home/peko/source/buildroot/output3/target/usr/include/pci /home/peko/source/buildroot/output3/target/usr/lib /home/peko/source/buildroot/output3/target/usr/lib/pkgconfig
install -c -m 644 lib/config.h lib/header.h lib/pci.h lib/types.h /home/peko/source/buildroot/output3/target/usr/include/pci
install -c -m 644 lib/libpci.so.3.1.7 /home/peko/source/buildroot/output3/target/usr/lib
install -c -m 644 lib/libpci.pc /home/peko/source/buildroot/output3/target/usr/lib/pkgconfig

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 2/5] pciutils: SHARED make opt goes for install too
  2011-01-10 13:11   ` Peter Korsgaard
@ 2011-01-10 13:15     ` Gustavo Zacarias
  0 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2011-01-10 13:15 UTC (permalink / raw)
  To: buildroot

On 01/10/11 10:11, Peter Korsgaard wrote:

>  Gustavo> If we don't pass SHARED when installing we miss the shared library
>  Gustavo> symlinks (libpci.so & libpci.so.3) thus breaking stuff.
> 
> Really? It works here:
> 
>>>> pciutils 3.1.7 Installing to target
> ..
> /usr/bin/make -j2 BUILDDIR=/home/peko/source/buildroot/output3/build/pciutils-3.1.7 -C /home/peko/source/buildroot/output3/build/pciutils-3.1.7 PREFIX=/home/peko/source/buildroot/output3/target/usr install-lib
> /usr/bin/make -C lib all
> make[3]: Nothing to be done for `all'.
> install -d -m 755 /home/peko/source/buildroot/output3/target/usr/include/pci /home/peko/source/buildroot/output3/target/usr/lib /home/peko/source/buildroot/output3/target/usr/lib/pkgconfig
> install -c -m 644 lib/config.h lib/header.h lib/pci.h lib/types.h /home/peko/source/buildroot/output3/target/usr/include/pci
> install -c -m 644 lib/libpci.so.3.1.7 /home/peko/source/buildroot/output3/target/usr/lib
> install -c -m 644 lib/libpci.pc /home/peko/source/buildroot/output3/target/usr/lib/pkgconfig

Oh but you're missing libpci.so and libpci.so.3
See the Makefile, lines 109-113 and 120-122...

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 3/5] flac: fix powerpc build
  2011-01-06 18:41 ` [Buildroot] [PATCH 3/5] flac: fix powerpc build Gustavo Zacarias
@ 2011-01-10 21:27   ` Peter Korsgaard
  0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2011-01-10 21:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> flac incorrectly assumes every powerpc around has altivec.
 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

Have you tried sending it upstream?

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 4/5] libao: new package
  2011-01-06 18:42 ` [Buildroot] [PATCH 4/5] libao: new package Gustavo Zacarias
@ 2011-01-10 21:30   ` Peter Korsgaard
  2011-01-11 13:45     ` Gustavo Zacarias
  0 siblings, 1 reply; 12+ messages in thread
From: Peter Korsgaard @ 2011-01-10 21:30 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 Gustavo> ---
 Gustavo>  package/multimedia/Config.in       |    1 +
 Gustavo>  package/multimedia/libao/Config.in |    7 +++++++
 Gustavo>  package/multimedia/libao/libao.mk  |   15 +++++++++++++++
 Gustavo>  3 files changed, 23 insertions(+), 0 deletions(-)
 Gustavo>  create mode 100644 package/multimedia/libao/Config.in
 Gustavo>  create mode 100644 package/multimedia/libao/libao.mk

 Gustavo> diff --git a/package/multimedia/Config.in b/package/multimedia/Config.in
 Gustavo> index da50dbb..5c1111d 100644
 Gustavo> --- a/package/multimedia/Config.in
 Gustavo> +++ b/package/multimedia/Config.in
 Gustavo> @@ -10,6 +10,7 @@ source "package/multimedia/gst-plugins-base/Config.in"
 Gustavo>  source "package/multimedia/gst-plugins-good/Config.in"
 Gustavo>  source "package/multimedia/gst-plugins-bad/Config.in"
 Gustavo>  source "package/multimedia/gst-plugins-ugly/Config.in"
 Gustavo> +source "package/multimedia/libao/Config.in"
 Gustavo>  source "package/multimedia/libcdaudio/Config.in"
 Gustavo>  source "package/multimedia/libdvdread/Config.in"
 Gustavo>  source "package/multimedia/libdvdnav/Config.in"
 Gustavo> diff --git a/package/multimedia/libao/Config.in b/package/multimedia/libao/Config.in
 Gustavo> new file mode 100644
 Gustavo> index 0000000..3c99ab9
 Gustavo> --- /dev/null
 Gustavo> +++ b/package/multimedia/libao/Config.in
 Gustavo> @@ -0,0 +1,7 @@
 Gustavo> +config BR2_PACKAGE_LIBAO
 Gustavo> +	bool "libao"
 Gustavo> +	help
 Gustavo> +	  Libao is a cross-platform audio library that allows programs
 Gustavo> +	  to output audio using a simple API on a wide variety of platforms.
 Gustavo> +
 Gustavo> +	  http://www.xiph.org/ao/
 Gustavo> diff --git a/package/multimedia/libao/libao.mk b/package/multimedia/libao/libao.mk
 Gustavo> new file mode 100644
 Gustavo> index 0000000..edbada7
 Gustavo> --- /dev/null
 Gustavo> +++ b/package/multimedia/libao/libao.mk
 Gustavo> @@ -0,0 +1,15 @@
 Gustavo> +#############################################################
 Gustavo> +#
 Gustavo> +# libao
 Gustavo> +#
 Gustavo> +#############################################################
 Gustavo> +
 Gustavo> +LIBAO_VERSION = 1.0.0
 Gustavo> +LIBAO_SITE = http://downloads.xiph.org/releases/ao
 Gustavo> +LIBAO_INSTALL_STAGING = YES
 Gustavo> +
 Gustavo> +ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
 Gustavo> +LIBAO_DEPENDENCIES += alsa-lib
 Gustavo> +endif

This seems to atleast need host-pkg-config:

./configure: line 14903: /home/peko/source/buildroot/output2/host/usr/bin/pkg-config: No such file or directory
*** Your version of pkg-config is too old. You need version 0.9.0 or newer.
*** See http://www.freedesktop.org/software/pkgconfig

And configure also picks up a lot of host files, that might cause
problems:

checking for esd-config... /usr/bin/esd-config
checking for ESD - version >= 0.2.8... cross compiling; assumed OK... 
yes
checking sys/soundcard.h usability... yes
checking sys/soundcard.h presence... yes
checking for sys/soundcard.h... yes
checking machine/soundcard.h usability... no
checking machine/soundcard.h presence... no
checking for machine/soundcard.h... no
checking for snd_pcm_open in -lasound... no
checking alsa/asoundlib.h usability... no
checking alsa/asoundlib.h presence... no
checking for alsa/asoundlib.h... no
checking sys/audioio.h usability... no
checking sys/audioio.h presence... no
checking for sys/audioio.h... no
checking sndio.h usability... no
checking sndio.h presence... no
checking for sndio.h... no
checking roaraudio.h usability... no
checking roaraudio.h presence... no
checking for roaraudio.h... no
checking for artsc-config... /usr/bin/artsc-config

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 4/5] libao: new package
  2011-01-10 21:30   ` Peter Korsgaard
@ 2011-01-11 13:45     ` Gustavo Zacarias
  0 siblings, 0 replies; 12+ messages in thread
From: Gustavo Zacarias @ 2011-01-11 13:45 UTC (permalink / raw)
  To: buildroot

On 01/10/11 18:30, Peter Korsgaard wrote:

> This seems to atleast need host-pkg-config:
> 
> ./configure: line 14903: /home/peko/source/buildroot/output2/host/usr/bin/pkg-config: No such file or directory
> *** Your version of pkg-config is too old. You need version 0.9.0 or newer.
> *** See http://www.freedesktop.org/software/pkgconfig
> 
> And configure also picks up a lot of host files, that might cause
> problems:

Missed the pkg-config bit since it was pulled in by other packages i was
testing, doh!
New version follows with disabled everything that the host could provide
and fixed dep.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Buildroot] [PATCH 5/5] vorbis-tools: new package
  2011-01-06 18:42 ` [Buildroot] [PATCH 5/5] vorbis-tools: " Gustavo Zacarias
@ 2011-01-11 15:38   ` Peter Korsgaard
  0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2011-01-11 15:38 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 Gustavo> ---
 Gustavo>  package/multimedia/Config.in                    |    1 +
 Gustavo>  package/multimedia/vorbis-tools/Config.in       |   12 ++++++++++++
 Gustavo>  package/multimedia/vorbis-tools/vorbis-tools.mk |   20 ++++++++++++++++++++
 Gustavo>  3 files changed, 33 insertions(+), 0 deletions(-)
 Gustavo>  create mode 100644 package/multimedia/vorbis-tools/Config.in
 Gustavo>  create mode 100644 package/multimedia/vorbis-tools/vorbis-tools.mk

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2011-01-11 15:38 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-06 18:41 [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Gustavo Zacarias
2011-01-06 18:41 ` [Buildroot] [PATCH 2/5] pciutils: SHARED make opt goes for install too Gustavo Zacarias
2011-01-10 13:11   ` Peter Korsgaard
2011-01-10 13:15     ` Gustavo Zacarias
2011-01-06 18:41 ` [Buildroot] [PATCH 3/5] flac: fix powerpc build Gustavo Zacarias
2011-01-10 21:27   ` Peter Korsgaard
2011-01-06 18:42 ` [Buildroot] [PATCH 4/5] libao: new package Gustavo Zacarias
2011-01-10 21:30   ` Peter Korsgaard
2011-01-11 13:45     ` Gustavo Zacarias
2011-01-06 18:42 ` [Buildroot] [PATCH 5/5] vorbis-tools: " Gustavo Zacarias
2011-01-11 15:38   ` Peter Korsgaard
2011-01-10 13:10 ` [Buildroot] [PATCH 1/5] alsa-utils: select alsa-lib Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.