9764 Commits

Author SHA1 Message Date
florian
0918445fde mdnsresponder: ensure dns-sd is linked with the right options
Some toolchains (e.g: ARM with VFP) require us to specify the ABI to use,
update the dns-sd linking command-line for this.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39811 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:57:04 +00:00
florian
0014d62691 libptmalloc3: override CFLAGS correctly
SYS_CFLAGS has no effect for our build targets, OPT_CFLAGS is what we intended
to use.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39810 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:57:02 +00:00
florian
e70a58092f imsnif: use TARGET_CFLAGS
TARGET_CFLAGS contains all the ABI specific information we might need, make
sure this gets passed to the g++ compiler

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39809 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:59 +00:00
florian
eaa7a3474e jtg: pass our CFLAGS
Remove the custom Build/Compile as the default is providing the same thing
but make sure that our CFLAGS are correctly used.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39808 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:57 +00:00
florian
d66afdd8f3 libfreenect: do not override CFLAGS
Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39807 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:55 +00:00
florian
286aaa2eb5 ftplib: pass TARGET_CFLAGS to package build
Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39806 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:52 +00:00
florian
4b348df3dd libowfat: fix build
libowfat build was failing due to the CFLAGS being overriden in the Makefile
which will make all the preliminary tests to fail.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39805 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:50 +00:00
florian
a6c27cf02c empcd: pass our CFLAGS and LDFLAGS
The package Makefile already provides some CFLAGS and LDFLAGS but
we want to use ours.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39804 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:47 +00:00
florian
a876275450 e169-stats: rework makefile patch to be more general
Allow the makefile patch to pass CFLAGS, CPPFLAGS, and LDFLAGS

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39803 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:45 +00:00
florian
632b8c1325 dialog: fix configure test against ncurses
When building on x86_64 hosts, the configure script will try to add /lib64 from
the host to the linker command, which will usually result in failing the
ncurses library test, fix this by checking whether we are cross-compiling or
not.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39802 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:42 +00:00
florian
46c2e926d1 flow-tools: do not hardcode CFLAGS
configure script hardcodes CFLAGS, fix that so we can get ours to be used.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39801 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:39 +00:00
florian
4029b82cf8 libnet-1.0.x: remove CFLAGS hardcoding
configure.in contains a test which overrides CFLAGS with CCOPTS when it
determines that the compiler is GCC, this breaks build on most platforms where
the ABI has to be explicitely specified (e.g: ARM VFP).

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39800 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:37 +00:00
florian
29313f8316 cksfv: add missing inttypes.h inclusion
Build was failing because inttypes.h did not provide a declaration for uint32_t
and friends

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39799 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:34 +00:00
florian
5a6c7580b0 bonnie++: pass TARGET_CXXFLAGS correctly
bonnie++ was not compiled using the TARGET_CXXFLAGS we passed, which will result
in build failures on e.g: ARM VFP toolchains, fix that.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39798 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:32 +00:00
florian
6b657b6639 libdbi: remove CFLAGS override
libdbi's configure.in is hardcoding CFLAGS and does not allow the configure
script environment to override those. Remove the hardcoded CFLAGS as they are
completely bogus and do not allow for any configuration. Fixes the build on ARM
VFP toolchains.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39797 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:29 +00:00
florian
c66bb863c5 ruby: disable documentation for host build
Building the documentation for the host requires a bunch of tools that systems
might not have, simply disable it which also speeds up the build time.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39796 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:27 +00:00
florian
bad6c653d3 orbit2: remove patch remove aclocal.m4
The autoreconf fixup already removes that file for us.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39795 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:24 +00:00
florian
6814e4740b libidn: remove patch removing aclocal.m4
The autoreconf fixup is already removing that file for us, drop that patch

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39794 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:22 +00:00
florian
de343aaf79 stunnel: remove patch removing aclocal.m4
autoreconf fixup is doing this already for us.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39793 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:19 +00:00
kaloz
d4626d6048 [freeradius2]: move into it's own submenu, add option to build without openssl
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39790 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-07 14:33:38 +00:00
tripolar
bde34d9c18 [packages] pulseaudio: set PKG_RELEASE to 1
Signed-off-by: Peter Wagner <tripolar@gmx.at>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39788 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-07 10:08:01 +00:00
tripolar
288229dfa6 [packages] pulseaudio: update to 5.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39787 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-07 10:05:28 +00:00
kaloz
9afd985ecb [freeradius2]: split the common files from the server package
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39784 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-06 13:43:35 +00:00
nbd
c536441ef1 strongswan: add missing dependencies for eap-mschapv2 (#15135)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39776 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-05 10:46:38 +00:00
tripolar
a97a671ac3 [packages] tor-alpha: update to 0.2.5.2-alpha
Signed-off-by: Peter Wagner <tripolar@gmx.at>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39774 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-02 21:27:52 +00:00
tripolar
a4f97cba39 [packages] tor: update to 0.2.4.21
Signed-off-by: Peter Wagner <tripolar@gmx.at>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39773 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-02 21:25:03 +00:00
tripolar
31b86a1449 [packages] git: update to 1.9.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39772 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-02 06:51:07 +00:00
tripolar
4b325417bd [packages] dovecot: update to 2.2.12
Signed-off-by: Peter Wagner <tripolar@gmx.at>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39771 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-02 06:49:16 +00:00
hauke
70b70c5829 tor-alpha: update to 0.2.4.20
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39669 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 22:44:44 +00:00
hauke
2105c96162 tor-alpha: added mirror site
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39668 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 22:44:28 +00:00
hauke
05bb2c69dc wview: added missing dependency on libopenssl
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39667 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 22:33:52 +00:00
hauke
2c6bdb4f53 gst-plugins-base: use upstream fix for ivorbis plugin build fail
Previously, I submitted a patch "[PATCH v2][packages]gst-plugins-base: disable building ivorbis plugin" that disables ivorbis plugin build. Michel Stempin pointed out an upstream patch that fixes the issue directly in the vorbis decoder header. I had missed this patch in my previous searches.

This patch reverts the disabling of ivorbis and adds the upstream fix. I have tested this patch and it fixes the build issue. Thanks to Michel Stempin for bringing this to my attention and pointing me to the upstream fix.

Signed-off-by John Vogel <jvogel4@stny.rr.com>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39666 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 22:25:58 +00:00
hauke
9719ae860c gpsd: update to 3.10
From: Dave Taht <dave.taht@bufferbloat.net>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39665 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 22:12:33 +00:00
hauke
782869675e taskwarrior: added missing dependency on libgnutls
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39664 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 21:41:11 +00:00
hauke
001060e07a libfreefare: bumped version for 0.2.3 to 0.4.0
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39663 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 21:31:27 +00:00
hauke
082490e71c keepalived: fixed build configuration
/build_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/linux-ramips_rt305x/linux-3.10.28/uapi/" ; fi; )
bash: ac_cv_file__store_buildbot_slave_ramips_build_build_dir_target_mipsel_24kec+dsp_uClibc_0_9_33_2_linux_ramips_rt305x_linux_3_10_28_net_core_link_watch_c=yes: command not found
make[2]: *** [build/build_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/keepalived-1.1.19/.configured_] Error 127

Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39662 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 21:24:53 +00:00
hauke
b5ce5f8111 imagemagick: disbale lzma support
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39661 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 21:14:00 +00:00
hauke
0a42a5fb44 tiff: remove apple-opengl-framework config option
This config option was removed

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39660 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 21:13:42 +00:00
hauke
f1330f609c tiff: disable linking to liblzma
This package requires liblzma as dependency if liblzma is selected.
This patch disables linking to liblzma in its configure script.

Signed-off-by: Jiri Slachta <slachta@cesnet.cz>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39659 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 21:13:14 +00:00
hauke
930124e2c5 icecast: added missing dependency on libopenssl
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39658 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 20:52:51 +00:00
hauke
9d35b39418 gw6c: fixed sed separator
On my ramips RT5350 HAME-MPR1 target, my build directory is:
"build_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2", thus the problem.

Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39657 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 20:46:47 +00:00
hauke
5f244f80db fxload: fix build
should fix broken_package reported by buildbots

since Kernel 3.7 headers are located in UAPI directory

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39656 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 20:38:35 +00:00
hauke
c1a832549b elfutils: disable lzma support
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39655 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 20:33:34 +00:00
hauke
0040792b4c debootstrap: bumped version from 1.0.55 to 1.0.55~bpo70+1
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39654 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 20:26:41 +00:00
hauke
897a584836 aalib: fixed build configuration
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39653 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-21 20:15:32 +00:00
cyrus
b550b5570a mdnsresponder: fix loss of unicast packets (thx Markus Stenberg)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@39645 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-20 18:43:10 +00:00
cyrus
060ed2e622 mdnsresponder: bump to 544 (thanks Markus Stenberg)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@39603 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-17 13:32:56 +00:00
tripolar
9edb6d07b8 [packages] git: update to 1.8.5.5
Signed-off-by: Peter Wagner <tripolar@gmx.at>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39599 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-16 22:52:55 +00:00
hauke
7549fe8590 lttng-tools: fix build and add md5sum
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39553 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-09 15:04:05 +00:00
hauke
d2e0ed2a5b alpine: alpine depends on libpam
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@39552 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-02-09 15:01:58 +00:00