mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-25 14:33:29 +08:00
Bump vpnc version and remove build of man pages, which breaks when cross compiling
This commit is contained in:
parent
4f78c090a4
commit
65d2a21b67
15
package/vpnc/vpnc-0.5.3-nomanual.patch
Normal file
15
package/vpnc/vpnc-0.5.3-nomanual.patch
Normal file
@ -0,0 +1,15 @@
|
||||
diff -urN vpnc-0.5.3-0rig/Makefile vpnc-0.5.3/Makefile
|
||||
--- vpnc-0.5.3-0rig/Makefile 2008-11-19 21:36:12.000000000 +0100
|
||||
+++ vpnc-0.5.3/Makefile 2009-01-15 00:38:36.000000000 +0100
|
||||
@@ -72,7 +72,10 @@
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
vpnc.8 : vpnc.8.template makeman.pl vpnc
|
||||
- ./makeman.pl
|
||||
+ @echo "Cannot make manual when cross compiling"
|
||||
+ touch $@
|
||||
+
|
||||
+# ./makeman.pl
|
||||
|
||||
vpnc-script : vpnc-script.in
|
||||
sed -e 's,@''PREFIX''@,$(PREFIX),g' $< > $@ && chmod 755 $@
|
12
package/vpnc/vpnc-0.5.3-susv3-legacy.patch
Normal file
12
package/vpnc/vpnc-0.5.3-susv3-legacy.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -rdup vpnc-0.5.1.oorig/config.c vpnc-0.5.1/config.c
|
||||
--- vpnc-0.5.1.oorig/config.c 2007-09-10 22:39:48.000000000 +0200
|
||||
+++ vpnc-0.5.1/config.c 2007-09-19 14:19:46.000000000 +0200
|
||||
@@ -538,7 +538,7 @@ static char *get_config_filename(const c
|
||||
{
|
||||
char *realname;
|
||||
|
||||
- asprintf(&realname, "%s%s%s", index(name, '/') ? "" : "/etc/vpnc/", name, add_dot_conf ? ".conf" : "");
|
||||
+ asprintf(&realname, "%s%s%s", strchr(name, '/') ? "" : "/etc/vpnc/", name, add_dot_conf ? ".conf" : "");
|
||||
return realname;
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
#############################################################
|
||||
|
||||
VPNC_VERSION=0.5.1
|
||||
VPNC_VERSION=0.5.3
|
||||
VPNC_SOURCE=vpnc-$(VPNC_VERSION).tar.gz
|
||||
VPNC_SITE=http://www.unix-ag.uni-kl.de/~massar/vpnc
|
||||
VPNC_DIR=$(BUILD_DIR)/vpnc-$(VPNC_VERSION)
|
||||
|
Loading…
Reference in New Issue
Block a user