* [Buildroot] [PATCH 2/8] Adding gengetopt
2014-12-09 21:23 [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies kiwi
@ 2014-12-09 21:23 ` kiwi
2014-12-09 21:23 ` [Buildroot] [PATCH 3/8] Adding libnice kiwi
` (6 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: kiwi @ 2014-12-09 21:23 UTC (permalink / raw)
To: buildroot
From: Gregory Dymarek <gregd72002@gmail.com>
Signed-off-by: Gregory Dymarek <gregd72002@gmail.com>
---
package/gengetopt/Config.in | 7 +++++++
package/gengetopt/Config.in.host | 7 +++++++
package/gengetopt/gengetopt.mk | 16 ++++++++++++++++
3 files changed, 30 insertions(+)
create mode 100644 package/gengetopt/Config.in
create mode 100644 package/gengetopt/Config.in.host
create mode 100644 package/gengetopt/gengetopt.mk
diff --git a/package/gengetopt/Config.in b/package/gengetopt/Config.in
new file mode 100644
index 0000000..6236029
--- /dev/null
+++ b/package/gengetopt/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_GENGETOPT
+ bool "gengetopt"
+ help
+ Adds GNU Gengetopt
+ Gengetopt is a tool to write command line option parsing code for C programs.
+
+ http://www.gnu.org/software/gengetopt/gengetopt.html
diff --git a/package/gengetopt/Config.in.host b/package/gengetopt/Config.in.host
new file mode 100644
index 0000000..f0de678
--- /dev/null
+++ b/package/gengetopt/Config.in.host
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_HOST_GENGETOPT
+ bool "host gengetopt"
+ help
+ Adds GNU Gengetopt
+ Gengetopt is a tool to write command line option parsing code for C programs.
+
+ http://www.gnu.org/software/gengetopt/gengetopt.html
diff --git a/package/gengetopt/gengetopt.mk b/package/gengetopt/gengetopt.mk
new file mode 100644
index 0000000..692dfe1
--- /dev/null
+++ b/package/gengetopt/gengetopt.mk
@@ -0,0 +1,16 @@
+#############################################################
+#
+# gengetopt
+#
+#############################################################
+GENGETOPT_VERSION = 2.22.6
+GENGETOPT_SITE = ftp://ftp.gnu.org/gnu/gengetopt/
+GENGETOPT_AUTORECONF = YES
+GENGETOPT_LICENSE = GPLv3
+GENGETOPT_LICENSE_FILES = COPYING
+
+GENGETOPT_MAKE=$(MAKE1)
+
+$(eval $(autotools-package))
+$(eval $(host-autotools-package))
+
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [Buildroot] [PATCH 3/8] Adding libnice
2014-12-09 21:23 [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies kiwi
2014-12-09 21:23 ` [Buildroot] [PATCH 2/8] Adding gengetopt kiwi
@ 2014-12-09 21:23 ` kiwi
2014-12-09 21:23 ` [Buildroot] [PATCH 4/8] Adding libsrtp kiwi
` (5 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: kiwi @ 2014-12-09 21:23 UTC (permalink / raw)
To: buildroot
From: Gregory Dymarek <gregd72002@gmail.com>
Signed-off-by: Gregory Dymarek <gregd72002@gmail.com>
---
package/libnice/Config.in | 8 ++++++++
.../libnice/libnice-0001-build-IPV6_RECVERR.patch | 20 ++++++++++++++++++++
package/libnice/libnice.mk | 13 +++++++++++++
3 files changed, 41 insertions(+)
create mode 100644 package/libnice/Config.in
create mode 100644 package/libnice/libnice-0001-build-IPV6_RECVERR.patch
create mode 100644 package/libnice/libnice.mk
diff --git a/package/libnice/Config.in b/package/libnice/Config.in
new file mode 100644
index 0000000..240e3e7
--- /dev/null
+++ b/package/libnice/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LIBNICE
+ bool "libnice"
+ select BR2_PACKAGE_LIBGLIB2
+ help
+ Adds libnice - The GLib ICE implementation
+ Libnice is an implementation of the IETF's Interactive Connectivity Establishment (ICE) standard (RFC 5245) and the Session Traversal Utilities for NAT (STUN) standard (RFC 5389).
+
+ http://nice.freedesktop.org/wiki/
diff --git a/package/libnice/libnice-0001-build-IPV6_RECVERR.patch b/package/libnice/libnice-0001-build-IPV6_RECVERR.patch
new file mode 100644
index 0000000..39ef617
--- /dev/null
+++ b/package/libnice/libnice-0001-build-IPV6_RECVERR.patch
@@ -0,0 +1,20 @@
+diff -rupN libnice-0.1.8.orig/stun/usages/bind.c libnice-0.1.8/stun/usages/bind.c
+--- libnice-0.1.8.orig/stun/usages/bind.c 2014-09-22 18:01:28.000000000 +0100
++++ libnice-0.1.8/stun/usages/bind.c 2014-12-01 13:28:32.144707407 +0000
+@@ -257,12 +257,16 @@ static int stun_socket (int family, int
+ int yes = 1;
+ switch (family)
+ {
++#ifdef IP_RECVERR
+ case AF_INET:
+ setsockopt (fd, SOL_IP, IP_RECVERR, &yes, sizeof (yes));
++#endif
+ break;
++#ifdef IPV6_RECVERR
+ case AF_INET6:
+ setsockopt (fd, SOL_IPV6, IPV6_RECVERR, &yes, sizeof (yes));
+ break;
++#endif
+ default:
+ /* Nothing to do. */
+ break;
diff --git a/package/libnice/libnice.mk b/package/libnice/libnice.mk
new file mode 100644
index 0000000..f3339bb
--- /dev/null
+++ b/package/libnice/libnice.mk
@@ -0,0 +1,13 @@
+#############################################################
+#
+# libnice
+#
+#############################################################
+LIBNICE_VERSION = 0.1.8
+LIBNICE_SITE = http://nice.freedesktop.org/releases/
+LIBNICE_DEPENDENCIES = libglib2
+LIBNICE_INSTALL_STAGING = YES
+LIBNICE_LICENSE = LGPLv2.1+
+LIBNICE_LICENSE_FILE = COPYING.MPL COPYING.LGPL
+
+$(eval $(autotools-package))
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [Buildroot] [PATCH 4/8] Adding libsrtp
2014-12-09 21:23 [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies kiwi
2014-12-09 21:23 ` [Buildroot] [PATCH 2/8] Adding gengetopt kiwi
2014-12-09 21:23 ` [Buildroot] [PATCH 3/8] Adding libnice kiwi
@ 2014-12-09 21:23 ` kiwi
2014-12-09 21:23 ` [Buildroot] [PATCH 5/8] Adding libwebsock kiwi
` (4 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: kiwi @ 2014-12-09 21:23 UTC (permalink / raw)
To: buildroot
From: Gregory Dymarek <gregd72002@gmail.com>
Signed-off-by: Gregory Dymarek <gregd72002@gmail.com>
---
package/libsrtp/Config.in | 6 ++++++
package/libsrtp/libsrtp.mk | 12 ++++++++++++
2 files changed, 18 insertions(+)
create mode 100644 package/libsrtp/Config.in
create mode 100644 package/libsrtp/libsrtp.mk
diff --git a/package/libsrtp/Config.in b/package/libsrtp/Config.in
new file mode 100644
index 0000000..073f811
--- /dev/null
+++ b/package/libsrtp/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_LIBSRTP
+ bool "libsrtp"
+ help
+ Adds libsrtp - Secure RTP (SRTP) Reference Implementation
+
+ https://github.com/cisco/libsrtp
diff --git a/package/libsrtp/libsrtp.mk b/package/libsrtp/libsrtp.mk
new file mode 100644
index 0000000..2af6a02
--- /dev/null
+++ b/package/libsrtp/libsrtp.mk
@@ -0,0 +1,12 @@
+#############################################################
+#
+# libsrtp
+#
+#############################################################
+LIBSRTP_VERSION = v1.5.0
+LIBSRTP_SITE_METHOD = git
+LIBSRTP_INSTALL_STAGING = YES
+LIBSRTP_LICENSE = BSD-3c
+LIBSRTP_LICENSE_FILE = LICENSE
+
+$(eval $(autotools-package))
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [Buildroot] [PATCH 5/8] Adding libwebsock
2014-12-09 21:23 [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies kiwi
` (2 preceding siblings ...)
2014-12-09 21:23 ` [Buildroot] [PATCH 4/8] Adding libsrtp kiwi
@ 2014-12-09 21:23 ` kiwi
2014-12-09 21:23 ` [Buildroot] [PATCH 6/8] Adding sofia-sip kiwi
` (3 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: kiwi @ 2014-12-09 21:23 UTC (permalink / raw)
To: buildroot
From: Gregory Dymarek <gregd72002@gmail.com>
Signed-off-by: Gregory Dymarek <gregd72002@gmail.com>
---
package/libwebsock/Config.in | 7 +++++++
package/libwebsock/libwebsock.mk | 22 ++++++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 package/libwebsock/Config.in
create mode 100644 package/libwebsock/libwebsock.mk
diff --git a/package/libwebsock/Config.in b/package/libwebsock/Config.in
new file mode 100644
index 0000000..7b4b2dc
--- /dev/null
+++ b/package/libwebsock/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_LIBWEBSOCK
+ bool "libwebsock"
+ select BR2_PACKAGE_LIBEVENT
+ help
+ Adds libwebsock - C library for easy WebSockets servers
+
+ https://github.com/payden/libwebsock
diff --git a/package/libwebsock/libwebsock.mk b/package/libwebsock/libwebsock.mk
new file mode 100644
index 0000000..e562630
--- /dev/null
+++ b/package/libwebsock/libwebsock.mk
@@ -0,0 +1,22 @@
+#############################################################
+#
+# libwebsock
+#
+#############################################################
+LIBWEBSOCK_VERSION = 3c1615eeadb0b582b63851073bfe3e5132f31ebc
+LIBWEBSOCK_SITE_METHOD = git
+
+LIBWEBSOCK_SITE = https://github.com/payden/libwebsock.git
+LIBWEBSOCK_DEPENDENCIES = libevent
+# straight out of git - not ./configure
+LIBWEBSOCK_AUTORECONF = YES
+LIBWEBSOCK_INSTALL_STAGING = YES
+LIBWEBSOCK_LICENSE = LGPLv3
+LIBWEBSOCK_LICENSE_FILES = COPYING
+
+LIBWEBSOCK_LIBS += -lpthread -levent
+
+LIBWEBSOCK_CONF_ENV += \
+ LIBS="$(LIBWEBSOCK_LIBS)"
+
+$(eval $(autotools-package))
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [Buildroot] [PATCH 6/8] Adding sofia-sip
2014-12-09 21:23 [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies kiwi
` (3 preceding siblings ...)
2014-12-09 21:23 ` [Buildroot] [PATCH 5/8] Adding libwebsock kiwi
@ 2014-12-09 21:23 ` kiwi
2014-12-10 16:26 ` Björn Kirchner
2014-12-09 21:23 ` [Buildroot] [PATCH 7/8] Adding janus-gateway kiwi
` (2 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: kiwi @ 2014-12-09 21:23 UTC (permalink / raw)
To: buildroot
From: Gregory Dymarek <gregd72002@gmail.com>
Signed-off-by: Gregory Dymarek <gregd72002@gmail.com>
---
package/sofia-sip/Config.in | 6 ++++++
package/sofia-sip/sofia-sip.mk | 18 ++++++++++++++++++
2 files changed, 24 insertions(+)
create mode 100644 package/sofia-sip/Config.in
create mode 100644 package/sofia-sip/sofia-sip.mk
diff --git a/package/sofia-sip/Config.in b/package/sofia-sip/Config.in
new file mode 100644
index 0000000..3d85ffc
--- /dev/null
+++ b/package/sofia-sip/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_SOFIA_SIP
+ bool "sofia-sip"
+ help
+ Adds Sofia-SIP - an open-source SIP User-Agent library, compliant with the IETF RFC3261 specification
+
+ http://sofia-sip.sourceforge.net
diff --git a/package/sofia-sip/sofia-sip.mk b/package/sofia-sip/sofia-sip.mk
new file mode 100644
index 0000000..5258844
--- /dev/null
+++ b/package/sofia-sip/sofia-sip.mk
@@ -0,0 +1,18 @@
+#############################################################
+#
+# sofiasip
+#
+#############################################################
+SOFIA_SIP_VERSION = 1.12.11
+SOFIA_SIP_SITE = http://downloads.sourceforge.net/project/sofia-sip/sofia-sip/$(SOFIA_SIP_VERSION)
+SOFIA_SIP_INSTALL_STAGING = YES
+SOFIA_SIP_LICENSE = LGPLv2.1+
+SOFIA_SIP_LICENSE_FILE = COPYING COPYRIGHTS
+
+ifeq ($(BR2_TOOLCHAIN_BUILDROOT_INET_IPV6),y)
+ SOFIA_SIP_CONF_OPTS = --enable-ip6
+else
+ SOFIA_SIP_CONF_OPTS = --disable-ip6
+endif
+
+$(eval $(autotools-package))
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [Buildroot] [PATCH 6/8] Adding sofia-sip
2014-12-09 21:23 ` [Buildroot] [PATCH 6/8] Adding sofia-sip kiwi
@ 2014-12-10 16:26 ` Björn Kirchner
0 siblings, 0 replies; 16+ messages in thread
From: Björn Kirchner @ 2014-12-10 16:26 UTC (permalink / raw)
To: buildroot
Hello Gregory,
Am Tue, 9 Dec 2014 21:23:26 +0000
schrieb kiwi <gregd72002@gmail.com>:
> From: Gregory Dymarek <gregd72002@gmail.com>
>
> Signed-off-by: Gregory Dymarek <gregd72002@gmail.com>
> ---
> package/sofia-sip/Config.in | 6 ++++++
> package/sofia-sip/sofia-sip.mk | 18 ++++++++++++++++++
> 2 files changed, 24 insertions(+)
> create mode 100644 package/sofia-sip/Config.in
> create mode 100644 package/sofia-sip/sofia-sip.mk
>
there was already a patch to include sofia-sip quite some time ago:
http://lists.busybox.net/pipermail/buildroot/2012-January/049258.html
I don't now why it never got accepted, but I use sofia-sip quite some
time based on this patch, but with an old buildroot version (2012.08).
This patch had additional configuration options to select SSL support
and glib2 support. And there was a patch included which fixed a bug
in an include file introduced with the sofia-sip 1.12.11 release.
Supposedly the above mentioned patch to buildroot will not work out
of the box with a current version of buildroot. Maybe you want to
use this patch as inspiration for your patch to make it better suitable
for a more generic use.
Regards
Bj?rn
> diff --git a/package/sofia-sip/Config.in b/package/sofia-sip/Config.in
> new file mode 100644
> index 0000000..3d85ffc
> --- /dev/null
> +++ b/package/sofia-sip/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_SOFIA_SIP
> + bool "sofia-sip"
> + help
> + Adds Sofia-SIP - an open-source SIP User-Agent library,
> compliant with the IETF RFC3261 specification +
> + http://sofia-sip.sourceforge.net
> diff --git a/package/sofia-sip/sofia-sip.mk
> b/package/sofia-sip/sofia-sip.mk new file mode 100644
> index 0000000..5258844
> --- /dev/null
> +++ b/package/sofia-sip/sofia-sip.mk
> @@ -0,0 +1,18 @@
> +#############################################################
> +#
> +# sofiasip
> +#
> +#############################################################
> +SOFIA_SIP_VERSION = 1.12.11
> +SOFIA_SIP_SITE =
> http://downloads.sourceforge.net/project/sofia-sip/sofia-sip/$(SOFIA_SIP_VERSION)
> +SOFIA_SIP_INSTALL_STAGING = YES +SOFIA_SIP_LICENSE = LGPLv2.1+
> +SOFIA_SIP_LICENSE_FILE = COPYING COPYRIGHTS
> +
> +ifeq ($(BR2_TOOLCHAIN_BUILDROOT_INET_IPV6),y)
> + SOFIA_SIP_CONF_OPTS = --enable-ip6
> +else
> + SOFIA_SIP_CONF_OPTS = --disable-ip6
> +endif
> +
> +$(eval $(autotools-package))
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Buildroot] [PATCH 7/8] Adding janus-gateway
2014-12-09 21:23 [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies kiwi
` (4 preceding siblings ...)
2014-12-09 21:23 ` [Buildroot] [PATCH 6/8] Adding sofia-sip kiwi
@ 2014-12-09 21:23 ` kiwi
2014-12-09 21:23 ` [Buildroot] [PATCH 8/8] Adding entries to Config.in and Config.in.host kiwi
2014-12-10 17:04 ` [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies Vicente Olivert Riera
7 siblings, 0 replies; 16+ messages in thread
From: kiwi @ 2014-12-09 21:23 UTC (permalink / raw)
To: buildroot
From: Gregory Dymarek <gregd72002@gmail.com>
Signed-off-by: Gregory Dymarek <gregd72002@gmail.com>
---
package/janus-gateway/Config.in | 14 +++++++++++
.../janus-gateway-0001-disable-ssp.patch | 12 ++++++++++
package/janus-gateway/janus-gateway.mk | 27 ++++++++++++++++++++++
3 files changed, 53 insertions(+)
create mode 100644 package/janus-gateway/Config.in
create mode 100644 package/janus-gateway/janus-gateway-0001-disable-ssp.patch
create mode 100644 package/janus-gateway/janus-gateway.mk
diff --git a/package/janus-gateway/Config.in b/package/janus-gateway/Config.in
new file mode 100644
index 0000000..fef35f6
--- /dev/null
+++ b/package/janus-gateway/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_JANUS_GATEWAY
+ bool "janus-gateway"
+ select BR2_PACKAGE_LIBMICROHTTPD
+ select BR2_PACKAGE_JANSSON
+ select BR2_PACKAGE_LIBNICE
+ select BR2_PACKAGE_SOFIA_SIP
+ select BR2_PACKAGE_LIBSRTP
+ select BR2_PACKAGE_DING_LIBS
+ select BR2_PACKAGE_LIBWEBSOCK
+ select BR2_TOOLCHAIN_HAS_THREADS
+ help
+ Adds janus-gateway, an open source, general purpose, WebRTC gateway
+
+ https://github.com/meetecho/janus-gateway
diff --git a/package/janus-gateway/janus-gateway-0001-disable-ssp.patch b/package/janus-gateway/janus-gateway-0001-disable-ssp.patch
new file mode 100644
index 0000000..5de8b3b
--- /dev/null
+++ b/package/janus-gateway/janus-gateway-0001-disable-ssp.patch
@@ -0,0 +1,12 @@
+diff -rupN janus-gateway-master.orig/Makefile.am janus-gateway-master/Makefile.am
+--- janus-gateway-master.orig/Makefile.am 2014-11-27 14:36:31.000000000 +0000
++++ janus-gateway-master/Makefile.am 2014-12-01 16:39:50.551935028 +0000
+@@ -14,7 +14,7 @@ AM_CFLAGS += -Wredundant-decls # sophia
+ # some fairly big refactoring though, which can wait.
+ # AM_CFLAGS += -Wshadow -Wstrict-aliasing=2
+
+-AM_CFLAGS += -fstack-protector-all -g -ggdb -fPIC -rdynamic
++AM_CFLAGS += -g -ggdb -fPIC -rdynamic
+
+ # FIXME: make docs work with distcheck
+ DISTCHECK_CONFIGURE_FLAGS = --disable-docs --enable-post-processing
diff --git a/package/janus-gateway/janus-gateway.mk b/package/janus-gateway/janus-gateway.mk
new file mode 100644
index 0000000..277a38c
--- /dev/null
+++ b/package/janus-gateway/janus-gateway.mk
@@ -0,0 +1,27 @@
+#############################################################
+#
+# janus-gateway
+#
+#############################################################
+JANUS_GATEWAY_VERSION = c632c1e9da5ffd8c34df6086a1aa5a8511a2a02d
+JANUS_GATEWAY_SITE_METHOD = git
+JANUS_GATEWAY_SITE = https://github.com/meetecho/janus-gateway.git
+JANUS_GATEWAY_LICENSE = GPLv3
+JANUS_GATEWAY_LICENSE_FILES = COPYING
+
+JANUS_GATEWAY_DEPENDENCIES = host-pkgconf libmicrohttpd jansson libnice sofia-sip libsrtp ding-libs libwebsock host-gengetopt
+
+# Straight out of the repository, no ./configure
+JANUS_GATEWAY_AUTORECONF = YES
+
+define JANUS_GATEWAY_M4
+ mkdir -p $(@D)/m4
+endef
+JANUS_GATEWAY_POST_PATCH_HOOKS += JANUS_GATEWAY_M4
+
+JANUS_GATEWAY_CONF_OPTS = --disable-data-channels \
+ --disable-rabbitmq
+
+JANUS_GATEWAY_MAKE=$(MAKE1)
+
+$(eval $(autotools-package))
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [Buildroot] [PATCH 8/8] Adding entries to Config.in and Config.in.host
2014-12-09 21:23 [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies kiwi
` (5 preceding siblings ...)
2014-12-09 21:23 ` [Buildroot] [PATCH 7/8] Adding janus-gateway kiwi
@ 2014-12-09 21:23 ` kiwi
2014-12-10 17:01 ` Vicente Olivert Riera
2014-12-10 17:04 ` [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies Vicente Olivert Riera
7 siblings, 1 reply; 16+ messages in thread
From: kiwi @ 2014-12-09 21:23 UTC (permalink / raw)
To: buildroot
From: Gregory Dymarek <gregd72002@gmail.com>
Signed-off-by: Gregory Dymarek <gregd72002@gmail.com>
---
package/Config.in | 7 +++++++
package/Config.in.host | 1 +
2 files changed, 8 insertions(+)
diff --git a/package/Config.in b/package/Config.in
index dd3a46e..f3af26c 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -115,6 +115,7 @@ endif
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/gawk/Config.in"
endif
+ source "package/gengetopt/Config.in"
source "package/gettext/Config.in"
source "package/git/Config.in"
source "package/gperf/Config.in"
@@ -821,6 +822,7 @@ menu "Networking"
source "package/libmnl/Config.in"
source "package/libmodbus/Config.in"
source "package/libndp/Config.in"
+ source "package/libnice/Config.in"
source "package/libnetfilter_acct/Config.in"
source "package/libnetfilter_conntrack/Config.in"
source "package/libnetfilter_cthelper/Config.in"
@@ -839,6 +841,7 @@ menu "Networking"
source "package/libshairplay/Config.in"
source "package/libshout/Config.in"
source "package/libsoup/Config.in"
+ source "package/libsrtp/Config.in"
source "package/libstrophe/Config.in"
source "package/libtirpc/Config.in"
source "package/libtorrent/Config.in"
@@ -846,6 +849,7 @@ menu "Networking"
source "package/libupnpp/Config.in"
source "package/liburiparser/Config.in"
source "package/libvncserver/Config.in"
+ source "package/libwebsock/Config.in"
source "package/libwebsockets/Config.in"
source "package/neon/Config.in"
source "package/nss-mdns/Config.in"
@@ -856,6 +860,7 @@ menu "Networking"
source "package/rtmpdump/Config.in"
source "package/slirp/Config.in"
source "package/snmppp/Config.in"
+ source "package/sofia-sip/Config.in"
source "package/thrift/Config.in"
source "package/usbredir/Config.in"
source "package/wvstreams/Config.in"
@@ -874,6 +879,7 @@ menu "Other"
source "package/clapack/Config.in"
source "package/classpath/Config.in"
source "package/cppcms/Config.in"
+ source "package/ding-libs/Config.in"
source "package/eigen/Config.in"
source "package/elfutils/Config.in"
source "package/fftw/Config.in"
@@ -1047,6 +1053,7 @@ endif
source "package/iptraf-ng/Config.in"
source "package/iputils/Config.in"
source "package/iw/Config.in"
+ source "package/janus-gateway/Config.in"
source "package/kismet/Config.in"
source "package/knock/Config.in"
source "package/leafnode2/Config.in"
diff --git a/package/Config.in.host b/package/Config.in.host
index 0b7bc36..dd89bd3 100644
--- a/package/Config.in.host
+++ b/package/Config.in.host
@@ -8,6 +8,7 @@ menu "Host utilities"
source "package/e2tools/Config.in.host"
source "package/genext2fs/Config.in.host"
source "package/genimage/Config.in.host"
+ source "package/gengetopt/Config.in.host"
source "package/genpart/Config.in.host"
source "package/lpc3250loader/Config.in.host"
source "package/mke2img/Config.in.host"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies
2014-12-09 21:23 [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies kiwi
` (6 preceding siblings ...)
2014-12-09 21:23 ` [Buildroot] [PATCH 8/8] Adding entries to Config.in and Config.in.host kiwi
@ 2014-12-10 17:04 ` Vicente Olivert Riera
2014-12-10 17:23 ` Gregory Dymarek
7 siblings, 1 reply; 16+ messages in thread
From: Vicente Olivert Riera @ 2014-12-10 17:04 UTC (permalink / raw)
To: buildroot
Dear Gregory Dymarek,
why not adding a hash file at the same time?
http://buildroot.org/downloads/manual/manual.html#adding-packages-hash
same for the rest of new packages you want to add.
Best regards,
--
Vicente Olivert Riera
Graduate Software Engineer, MIPS Platforms
Imagination Technologies Limited
t: +44 (0)113 2429814
www.imgtec.com
^ permalink raw reply [flat|nested] 16+ messages in thread* [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies
2014-12-10 17:04 ` [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies Vicente Olivert Riera
@ 2014-12-10 17:23 ` Gregory Dymarek
2014-12-10 17:25 ` Vicente Olivert Riera
0 siblings, 1 reply; 16+ messages in thread
From: Gregory Dymarek @ 2014-12-10 17:23 UTC (permalink / raw)
To: buildroot
Hi,
Do you need hashes for GIT/SVN checkouts?
Thanks,
Gregory
On 10 December 2014 at 17:04, Vicente Olivert Riera
<Vincent.Riera@imgtec.com> wrote:
> Dear Gregory Dymarek,
>
> why not adding a hash file at the same time?
>
> http://buildroot.org/downloads/manual/manual.html#adding-packages-hash
>
> same for the rest of new packages you want to add.
>
> Best regards,
> --
> Vicente Olivert Riera
> Graduate Software Engineer, MIPS Platforms
> Imagination Technologies Limited
> t: +44 (0)113 2429814
> www.imgtec.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies
2014-12-10 17:23 ` Gregory Dymarek
@ 2014-12-10 17:25 ` Vicente Olivert Riera
2014-12-10 20:38 ` Thomas Petazzoni
0 siblings, 1 reply; 16+ messages in thread
From: Vicente Olivert Riera @ 2014-12-10 17:25 UTC (permalink / raw)
To: buildroot
Dear Gregory Dymarek,
On 12/10/2014 05:23 PM, Gregory Dymarek wrote:
> Do you need hashes for GIT/SVN checkouts?
Well, you are downloading a tarball which should be always the same, no?
Cheers,
--
Vicente Olivert Riera
Graduate Software Engineer, MIPS Platforms
Imagination Technologies Limited
t: +44 (0)113 2429814
www.imgtec.com
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies
2014-12-10 17:25 ` Vicente Olivert Riera
@ 2014-12-10 20:38 ` Thomas Petazzoni
2014-12-10 22:19 ` Yann E. MORIN
0 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2014-12-10 20:38 UTC (permalink / raw)
To: buildroot
Dear Vicente Olivert Riera,
On Wed, 10 Dec 2014 17:25:28 +0000, Vicente Olivert Riera wrote:
> On 12/10/2014 05:23 PM, Gregory Dymarek wrote:
> > Do you need hashes for GIT/SVN checkouts?
>
> Well, you are downloading a tarball which should be always the same, no?
No, for git and svn you are not downloading a tarball. We are cloning
the Git repository or checkouting the SVN repository, and then making a
tarball out of it. I don't think we have any guarantee that the tarball
created on the different machines will be the same, due to the file
timestamps.
Best regards,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Buildroot] [PATCH 1/8] Adding janus-gateway and dependencies
2014-12-10 20:38 ` Thomas Petazzoni
@ 2014-12-10 22:19 ` Yann E. MORIN
0 siblings, 0 replies; 16+ messages in thread
From: Yann E. MORIN @ 2014-12-10 22:19 UTC (permalink / raw)
To: buildroot
Thomas, All,
On 2014-12-10 21:38 +0100, Thomas Petazzoni spake thusly:
> Dear Vicente Olivert Riera,
>
> On Wed, 10 Dec 2014 17:25:28 +0000, Vicente Olivert Riera wrote:
>
> > On 12/10/2014 05:23 PM, Gregory Dymarek wrote:
> > > Do you need hashes for GIT/SVN checkouts?
> >
> > Well, you are downloading a tarball which should be always the same, no?
>
> No, for git and svn you are not downloading a tarball. We are cloning
> the Git repository or checkouting the SVN repository, and then making a
> tarball out of it.
But inthis case, we're not doing a git-clone, we;re using a snapshot.
Which should by the way be using the github helper, rather than the
manaul _SITE method.
> I don't think we have any guarantee that the tarball
> created on the different machines will be the same, due to the file
> timestamps.
No we do not.
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 16+ messages in thread