* INCOMPATIBLE CHANGE: default port changed to 6696
* New option: 'diversity'
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28119 3c298f89-4303-0410-b956-a3cf2f4a3e73
THe simplejson is a json encoder/decoder for python it is a lot faster
(close to 10x) than the json module that ships with python.
A special thanks to Jan Willies for the feedback on the distribute package.
Signed-off-by: Roberto Riggio <roberto.riggio@create-net.org>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28105 3c298f89-4303-0410-b956-a3cf2f4a3e73
The update is required as the old filename
usb-modeswitch-data-20110705.tar.bz2 is no longer hosted on
http://www.draisberghof.de/usb_modeswitch/
BTW, the two openwrt.org backup servers do not hold either the old
usb-modeswitch-data-20110705.tar.bz2 nor the new
usb-modeswitch-data-20110805.tar.bz2
In effect there is a dependency on one external server. If they decide
to change to a new version and not continue hosting the old, the
compilation breaks. The sources on the openwrt,org servers should
therefore be urgently updated.
Signed-off-by: Hanno Schupp <hanno.schupp@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28103 3c298f89-4303-0410-b956-a3cf2f4a3e73
I'm the developer of axTLS. I've got an update to use the latest
version. Hopefully nothing too dramatic here.
Signed-off-by: Cameron Rich <camster444@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28100 3c298f89-4303-0410-b956-a3cf2f4a3e73
Remove unneeded configure flags and add support for parallel build.
No need to bump the PKG_RELEASE.
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28099 3c298f89-4303-0410-b956-a3cf2f4a3e73
Upgrade to new version, add menu, refresh patches and reorganize
Makefile.
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28098 3c298f89-4303-0410-b956-a3cf2f4a3e73
Reorganize siproxd package, add better plugins support and revert to
shared plugins.
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28097 3c298f89-4303-0410-b956-a3cf2f4a3e73
Trying to fix some issues with php5 I discoverd that php5's mysql extension doesn't load:
<snip>
root@OpenWrt:/tmp# php-cli -m
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/mysql.so' - File not found in Unknown on line 0
[PHP Modules]
Core
ctype
curl
date
ereg
gettext
json
openssl
pcntl
pcre
posix
Reflection
session
sockets
SPL
sqlite3
standard
sysvmsg
sysvsem
sysvshm
zlib
[Zend Modules]
</snap>
After installing uclibcxx, the extension loads fine:
<snip>
root@OpenWrt:/tmp# opkg install uclibcxx
Installing uclibcxx (0.2.2-3) to root...
Downloading http://192.168.1.2:8081/brcm47xx/packages/uclibcxx_0.2.2-3_brcm47xx.ipk.
Configuring uclibcxx.
root@OpenWrt:/tmp# php-cli -m
[PHP Modules]
<...>
mysql
<...>
[Zend Modules]
</snap>
So the mysqlclient library needs uclibcxx, not only mysql-server. But since
mysql-server is depended of the mysqlclient library we can shorten its dependencies.
I also cross-checked that e.g. a mysql-enabled lighttpd shows the same behaviour
when uclibcxx is not installed.
<snip>
root@OpenWrt:/tmp/log/lighttpd# lighttpd -f /etc/lighttpd/lighttpd.conf
1970-01-01 05:07:30: (plugin.c.169) dlopen() failed for: /usr/lib/lighttpd/mod_mysql_vhost.so File not found
1970-01-01 05:07:30: (server.c.650) loading plugins finally failed
</snap>
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28083 3c298f89-4303-0410-b956-a3cf2f4a3e73
- values containing exactly six octets are treated as type 3 (DUID-LL)
- values containing seven and more octets get the length tag added in native endianess
- all other values are treated as invalid
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28079 3c298f89-4303-0410-b956-a3cf2f4a3e73
Also split init script into lib and init script as suggested by
Filippo Sallemi to allow including the lib from a hotplug script.
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28066 3c298f89-4303-0410-b956-a3cf2f4a3e73
FFmpeg 0.8.2 Version Bump (#8831)
Dropped configure options:
--disable-ipv6: IPv6 is no longer a separate switch. It's network aware or isn't.
--disable-libfaad: This switch isn't listed as part of ./configure --help.
--disable-vhook: vhook is no longer a part of ffmpeg.
Added configure options:
--disable-doc: Disables documentation
--disable-dxva2: Disables Microsoft's DirectX Video Acceleration v2
--enable-version3: Builds GPLv3 code
--disable-filters: Disables audio/video stream processing filters
--disable-hwaccels: Disables hardware video playback acceleration
--disable-ffplay: FFplay is a SDL(?) based media player.
Dropped formats:
oss is not listed in ./configure --list-muxers
mpeg4aac is not listed in ./configure --list-decoders
Configure options were reordered to roughly be:
Generic program configure switches
Libav* feature options
Binary selection
All of the libav* feature disabling was done at once. This is to keep from second guessing FFmpeg's internal dependency checking when we start enabling options.
Added options to keep from mass disabling encoders/muxers and decoders/demuxers. This should address #8831's issue.
Added option to build FFprobe. FFprobe is a command line media identification tool, very similar to the output of a bare ffmpeg -i.
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28063 3c298f89-4303-0410-b956-a3cf2f4a3e73
This updates to VIPS 7.24.5 and includes the im_bufjpeg2vips function,
backported from Git master.
Signed-off-by: W. Michael Petullo <mike at flyn.org>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28062 3c298f89-4303-0410-b956-a3cf2f4a3e73
Adjust minidlna for inotify becoming part of the default kernel.
minidlna.init: stop forcing a rescan (-R) of the media library on startup. Users will need to run it once after installing.
040-configuration-tweak.patch: enable use of inotify in the default configuration
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28034 3c298f89-4303-0410-b956-a3cf2f4a3e73
010-genconfig-checks.patch adjusts two configure checks to use ICONV_PREFIX and INTL_PREFIX. These changes were already made previously elsewhere in the build process and looks like it was just overlooked here.
040-configuration-tweak.patch was to rebase.
Minidlna's changes were primarily bug fixes and compatibility with newer ffmpeg.
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28031 3c298f89-4303-0410-b956-a3cf2f4a3e73