Commit 65d2a21b authored by Ulf Samuelsson's avatar Ulf Samuelsson
Browse files

Bump vpnc version and remove build of man pages, which breaks when cross compiling

parent 4f78c090
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
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 −0
Original line number Diff line number Diff line
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;
 }
 
+1 −1
Original line number Diff line number Diff line
@@ -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)