* [Buildroot] [pull request] Pull request for branch fixes
@ 2010-02-09 23:46 Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 1/3] Create $(STAGING_DIR)/usr/bin unconditionnally Thomas Petazzoni
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2010-02-09 23:46 UTC (permalink / raw)
To: buildroot
The following changes since commit f0bdacdb5b8fe0fbc276ed510fc58e9a219f5cf8:
Peter Korsgaard (1):
update for 2010.02-rc1
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot fixes
Thomas Petazzoni (3):
Create $(STAGING_DIR)/usr/bin unconditionnally
argus: fix compile breakage
at: fix compile breakage when flex isn't on the target
Makefile | 1 +
.../argus-3.0.0.rc.34-01-use-pcap-header.patch | 27 ++++++++++++++++++++
package/at/at-3.1.12-0007-include-config-h.patch | 16 +++++++++++
3 files changed, 44 insertions(+), 0 deletions(-)
create mode 100644 package/argus/argus-3.0.0.rc.34-01-use-pcap-header.patch
create mode 100644 package/at/at-3.1.12-0007-include-config-h.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 8+ messages in thread* [Buildroot] [PATCH 1/3] Create $(STAGING_DIR)/usr/bin unconditionnally
2010-02-09 23:46 [Buildroot] [pull request] Pull request for branch fixes Thomas Petazzoni
@ 2010-02-09 23:46 ` Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 2/3] argus: fix compile breakage Thomas Petazzoni
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2010-02-09 23:46 UTC (permalink / raw)
To: buildroot
This fixes the build of libcap, with external toolchain, when it is
the first package being built.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
Makefile | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
index a0c18ba..76eeddb 100644
--- a/Makefile
+++ b/Makefile
@@ -371,6 +371,7 @@ ifneq ($(BR2_TOOLCHAIN_EXTERNAL),y)
endif
endif
@mkdir -p $(STAGING_DIR)/usr/include
+ @mkdir -p $(STAGING_DIR)/usr/bin
$(BUILD_DIR)/.root:
mkdir -p $(TARGET_DIR)
--
1.6.3.3
^ permalink raw reply related [flat|nested] 8+ messages in thread* [Buildroot] [PATCH 2/3] argus: fix compile breakage
2010-02-09 23:46 [Buildroot] [pull request] Pull request for branch fixes Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 1/3] Create $(STAGING_DIR)/usr/bin unconditionnally Thomas Petazzoni
@ 2010-02-09 23:46 ` Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 3/3] at: fix compile breakage when flex isn't on the target Thomas Petazzoni
2010-02-17 10:05 ` [Buildroot] [pull request] Pull request for branch fixes Peter Korsgaard
3 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2010-02-09 23:46 UTC (permalink / raw)
To: buildroot
Add a patch that includes pcap.h instead of hardcoding an incorrect
prototype for a function provided by libpcap.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
| 27 ++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
create mode 100644 package/argus/argus-3.0.0.rc.34-01-use-pcap-header.patch
--git a/package/argus/argus-3.0.0.rc.34-01-use-pcap-header.patch b/package/argus/argus-3.0.0.rc.34-01-use-pcap-header.patch
new file mode 100644
index 0000000..2060c93
--- /dev/null
+++ b/package/argus/argus-3.0.0.rc.34-01-use-pcap-header.patch
@@ -0,0 +1,27 @@
+Instead of hardcoding a wrong prototype for a libcap function, include
+the correct header.
+
+Index: argus-3.0.0.rc.34/argus/ArgusSource.c
+===================================================================
+--- argus-3.0.0.rc.34.orig/argus/ArgusSource.c 2010-02-09 22:57:21.000000000 +0100
++++ argus-3.0.0.rc.34/argus/ArgusSource.c 2010-02-09 22:57:29.000000000 +0100
+@@ -53,6 +53,7 @@
+ #define PPP_HDRLEN 4 /* length of PPP header */
+ #endif
+
++#include <pcap.h>
+
+ void ArgusGetInterfaceStatus (struct ArgusSourceStruct *src);
+
+Index: argus-3.0.0.rc.34/argus/ArgusSource.h
+===================================================================
+--- argus-3.0.0.rc.34.orig/argus/ArgusSource.h 2010-02-09 22:57:35.000000000 +0100
++++ argus-3.0.0.rc.34/argus/ArgusSource.h 2010-02-09 22:57:54.000000000 +0100
+@@ -381,7 +381,6 @@
+
+ int ArgusCreatePktFromFddi(const struct fddi_header *, struct ether_header *, int);
+
+-extern char *bpf_image(struct bpf_insn *, int);
+
+
+ #else /* defined(ArgusSource) */
--
1.6.3.3
^ permalink raw reply related [flat|nested] 8+ messages in thread* [Buildroot] [PATCH 3/3] at: fix compile breakage when flex isn't on the target
2010-02-09 23:46 [Buildroot] [pull request] Pull request for branch fixes Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 1/3] Create $(STAGING_DIR)/usr/bin unconditionnally Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 2/3] argus: fix compile breakage Thomas Petazzoni
@ 2010-02-09 23:46 ` Thomas Petazzoni
2010-02-17 10:07 ` Peter Korsgaard
2010-02-17 10:05 ` [Buildroot] [pull request] Pull request for branch fixes Peter Korsgaard
3 siblings, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2010-02-09 23:46 UTC (permalink / raw)
To: buildroot
Add a patch that makes sure config.h gets included in a file that uses
some of the NEEDS_* macros. The yywrap() function was missing when
flex was not available on the target, even though this configuration
is supposed to be supported by at (and handled by NEEDS_YYWRAP).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/at/at-3.1.12-0007-include-config-h.patch | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
create mode 100644 package/at/at-3.1.12-0007-include-config-h.patch
diff --git a/package/at/at-3.1.12-0007-include-config-h.patch b/package/at/at-3.1.12-0007-include-config-h.patch
new file mode 100644
index 0000000..8afc502
--- /dev/null
+++ b/package/at/at-3.1.12-0007-include-config-h.patch
@@ -0,0 +1,16 @@
+Make sure to include config.h so that NEEDS_* macros are properly
+taken into account. This was a problem for NEEDS_YYWRAP, which was set
+to 1 in config.h, but the corresponding code wasn't compiled in.
+
+Index: at-3.1.12/parsetime.l
+===================================================================
+--- at-3.1.12.orig/parsetime.l 2010-02-10 00:17:46.000000000 +0100
++++ at-3.1.12/parsetime.l 2010-02-10 00:18:07.000000000 +0100
+@@ -4,6 +4,7 @@
+ #include <time.h>
+ #include "y.tab.h"
+ #include "parsetime.h"
++#include "config.h"
+
+ char *last_token = NULL;
+ char **my_argv;
--
1.6.3.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [pull request] Pull request for branch fixes
2010-02-09 23:46 [Buildroot] [pull request] Pull request for branch fixes Thomas Petazzoni
` (2 preceding siblings ...)
2010-02-09 23:46 ` [Buildroot] [PATCH 3/3] at: fix compile breakage when flex isn't on the target Thomas Petazzoni
@ 2010-02-17 10:05 ` Peter Korsgaard
3 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2010-02-17 10:05 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit f0bdacdb5b8fe0fbc276ed510fc58e9a219f5cf8:
Thomas> Peter Korsgaard (1):
Thomas> update for 2010.02-rc1
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot fixes
Committed, thanks!
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [pull request] Pull request for branch fixes
@ 2010-02-24 21:16 Thomas Petazzoni
2010-02-24 22:01 ` Peter Korsgaard
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2010-02-24 21:16 UTC (permalink / raw)
To: buildroot
The following changes since commit 4f05a61b33e5d87f23837109fb0dd538a5bd5d62:
Peter Korsgaard (1):
Merge branch 'misc-fixes5' of git://git.busybox.net/~tpetazzoni/git/buildroot
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot fixes
Thomas Petazzoni (10):
netsnmp: use the autoconf built by Buildroot
ipsec-tools: add host-flex dependency
openmotif: remove package
xpdf: remove package
libgtk2: host version needs host-libpng
pango: remove gtk-doc patch
pango: re-enable thai module
pango: remove dependency on host-pango
sylpheed: add dependency on libgtk2
madplay: add patch to switch to the new ALSA API
package/Config.in | 2 -
package/ipsec-tools/ipsec-tools.mk | 2 +-
package/libgtk2/libgtk2.mk | 2 +-
.../madplay-0.15.2b-switch-to-new-alsa-api.patch | 173 ++++
package/netsnmp/netsnmp.mk | 4 +-
package/openmotif/Config.in | 7 -
package/openmotif/README | 2 -
.../openmotif/openmotif-2.3.0-cross-compile.patch | 106 ---
.../openmotif-2.3.0-legacy-bzero-must-die.patch | 758 ------------------
package/openmotif/openmotif.mk | 94 ---
package/pango/pango-gtk-doc.patch | 59 --
package/pango/pango-no-libthai.patch | 10 -
package/pango/pango.mk | 13 +-
package/sylpheed/Config.in | 1 +
package/sylpheed/sylpheed.mk | 2 +-
package/xpdf/Config.in | 9 -
package/xpdf/xpdf-3.02pl1.patch | 33 -
package/xpdf/xpdf-3.02pl2.patch | 823 --------------------
package/xpdf/xpdf.mk | 31 -
19 files changed, 182 insertions(+), 1949 deletions(-)
create mode 100644 package/multimedia/madplay/madplay-0.15.2b-switch-to-new-alsa-api.patch
delete mode 100644 package/openmotif/Config.in
delete mode 100644 package/openmotif/README
delete mode 100644 package/openmotif/openmotif-2.3.0-cross-compile.patch
delete mode 100644 package/openmotif/openmotif-2.3.0-legacy-bzero-must-die.patch
delete mode 100644 package/openmotif/openmotif.mk
delete mode 100644 package/pango/pango-gtk-doc.patch
delete mode 100644 package/pango/pango-no-libthai.patch
delete mode 100644 package/xpdf/Config.in
delete mode 100644 package/xpdf/xpdf-3.02pl1.patch
delete mode 100644 package/xpdf/xpdf-3.02pl2.patch
delete mode 100644 package/xpdf/xpdf.mk
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 8+ messages in thread* [Buildroot] [pull request] Pull request for branch fixes
2010-02-24 21:16 Thomas Petazzoni
@ 2010-02-24 22:01 ` Peter Korsgaard
0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2010-02-24 22:01 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit 4f05a61b33e5d87f23837109fb0dd538a5bd5d62:
Thomas> Peter Korsgaard (1):
Thomas> Merge branch 'misc-fixes5' of git://git.busybox.net/~tpetazzoni/git/buildroot
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot fixes
Thanks! I'm not feeling confident about the pango change (as discussed
on IRC), but the rest has been pulled and pushed.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-02-24 22:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-09 23:46 [Buildroot] [pull request] Pull request for branch fixes Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 1/3] Create $(STAGING_DIR)/usr/bin unconditionnally Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 2/3] argus: fix compile breakage Thomas Petazzoni
2010-02-09 23:46 ` [Buildroot] [PATCH 3/3] at: fix compile breakage when flex isn't on the target Thomas Petazzoni
2010-02-17 10:07 ` Peter Korsgaard
2010-02-17 10:05 ` [Buildroot] [pull request] Pull request for branch fixes Peter Korsgaard
-- strict thread matches above, loose matches on Subject: below --
2010-02-24 21:16 Thomas Petazzoni
2010-02-24 22:01 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox