From ea7b76b46c2f43b868d283e0475ab91272120b3e Mon Sep 17 00:00:00 2001 From: Nikolay Orlyuk Date: Tue, 16 Oct 2012 07:59:05 +0300 Subject: [PATCH] miniupnpc: added HAVE_IPV6 and LIBDIR --- miniupnpc/Makefile | 6 +++++- miniupnpc/testminiwget.sh | 16 +++++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/miniupnpc/Makefile b/miniupnpc/Makefile index 3fd0941..f3178bf 100644 --- a/miniupnpc/Makefile +++ b/miniupnpc/Makefile @@ -20,6 +20,9 @@ ifeq ($(OS), Linux) JARSUFFIX=linux endif +HAVE_IPV6 ?= yes +export HAVE_IPV6 + CC ?= gcc #AR = gar #CFLAGS = -O -g -DDEBUG @@ -99,10 +102,11 @@ TESTMINIWGETOBJS := $(TESTMINIWGETOBJS) minissdpc.o TESTIGDDESCPARSE := $(TESTIGDDESCPARSE) minissdpc.o endif +LIBDIR ?= lib # install directories INSTALLPREFIX ?= $(PREFIX)/usr INSTALLDIRINC = $(INSTALLPREFIX)/include/miniupnpc -INSTALLDIRLIB = $(INSTALLPREFIX)/lib +INSTALLDIRLIB = $(INSTALLPREFIX)/$(LIBDIR) INSTALLDIRBIN = $(INSTALLPREFIX)/bin INSTALLDIRMAN = $(INSTALLPREFIX)/share/man diff --git a/miniupnpc/testminiwget.sh b/miniupnpc/testminiwget.sh index 529c809..a61df87 100755 --- a/miniupnpc/testminiwget.sh +++ b/miniupnpc/testminiwget.sh @@ -19,16 +19,26 @@ TMPDIR=`mktemp -d` HTTPSERVEROUT="${TMPDIR}/httpserverout" EXPECTEDFILE="${TMPDIR}/expectedfile" DOWNLOADEDFILE="${TMPDIR}/downloadedfile" -#ADDR=localhost -ADDR="[::1]" PORT= RET=0 +case "$HAVE_IPV6" in + n|no|0) + ADDR=localhost + SERVERARGS="" + ;; + *) + ADDR="[::1]" + SERVERARGS="-6" + ;; + +esac + #make minihttptestserver #make testminiwget # launching the test HTTP server -./minihttptestserver -6 -e $EXPECTEDFILE > $HTTPSERVEROUT & +./minihttptestserver $SERVERARGS -e $EXPECTEDFILE > $HTTPSERVEROUT & while [ -z "$PORT" ]; do sleep 1 PORT=`cat $HTTPSERVEROUT | sed 's/Listening on port \([0-9]*\)/\1/' `