Change defaults for HTTP_PORT (1277 is use by another service).

This commit is contained in:
clanmills
2020-05-14 21:04:38 +01:00
parent b2be8e7c0c
commit cc4d56dec1
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -438,9 +438,9 @@ checkSum()
startHttpServer() {
cd "${testdir}/.." # testdir is the tmp output directory
if [ "$PLATFORM" == "cygwin" ]; then dport=1277
elif [ "$PLATFORM" == "mingw" ]; then dport=1278
else dport=1276
if [ "$PLATFORM" == "cygwin" ]; then dport=12762
elif [ "$PLATFORM" == "mingw" ]; then dport=12761
else dport=12760
fi
if [ ! -z $EXIV2_PORT ]; then port=$EXIV2_PORT ; else port=$dport ; fi