[csw-devel] SF.net SVN: gar:[11826] csw/mgar/pkg/pacparser/trunk

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Tue Dec 7 16:02:51 CET 2010


Revision: 11826
          http://gar.svn.sourceforge.net/gar/?rev=11826&view=rev
Author:   dmichelsen
Date:     2010-12-07 15:02:51 +0000 (Tue, 07 Dec 2010)

Log Message:
-----------
pacparser: Add a ton of patches

Modified Paths:
--------------
    csw/mgar/pkg/pacparser/trunk/Makefile

Added Paths:
-----------
    csw/mgar/pkg/pacparser/trunk/files/0001-Adjust-Makefile.patch
    csw/mgar/pkg/pacparser/trunk/files/0002-Fix-nullpointer-bug.patch
    csw/mgar/pkg/pacparser/trunk/files/0003-Only-GNU-grep-knows-q.patch
    csw/mgar/pkg/pacparser/trunk/files/0004-Some-more-Makefile-tweaks.patch
    csw/mgar/pkg/pacparser/trunk/files/0005-Fix-soname-and-pactester-compilation.patch
    csw/mgar/pkg/pacparser/trunk/files/0006-Add-flags-to-make-library-self-sufficient.patch
    csw/mgar/pkg/pacparser/trunk/files/0007-Add-config-for-spidermonkey-i386.patch
    csw/mgar/pkg/pacparser/trunk/files/0008-Always-set-myIpAddr-to-127.0.0.1-or-tests-on-current.patch

Modified: csw/mgar/pkg/pacparser/trunk/Makefile
===================================================================
--- csw/mgar/pkg/pacparser/trunk/Makefile	2010-12-07 03:20:06 UTC (rev 11825)
+++ csw/mgar/pkg/pacparser/trunk/Makefile	2010-12-07 15:02:51 UTC (rev 11826)
@@ -18,10 +18,74 @@
 MASTER_SITES = $(GOOGLE_MIRROR)
 DISTFILES  = $(DISTNAME).tar.gz
 
+PATCHFILES  = 0001-Adjust-Makefile.patch
+
+# Reported upstream as
+#   http://code.google.com/p/pacparser/issues/detail?id=6
+PATCHFILES += 0002-Fix-nullpointer-bug.patch
+
+PATCHFILES += 0003-Only-GNU-grep-knows-q.patch
+PATCHFILES += 0004-Some-more-Makefile-tweaks.patch
+PATCHFILES += 0005-Fix-soname-and-pactester-compilation.patch
+PATCHFILES += 0006-Add-flags-to-make-library-self-sufficient.patch
+PATCHFILES += 0007-Add-config-for-spidermonkey-i386.patch
+PATCHFILES += 0008-Always-set-myIpAddr-to-127.0.0.1-or-tests-on-current.patch
+
 # File name regex to get notifications about upstream software releases
 UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
 
-BUILD64 = 1
-CONFIGURE_ARGS = $(DIRPATHS)
+PACKAGES = CSWpacparser CSWlibpacparser1 CSWlibpacparser-devel CSWpy-libpacparser
+CATALOGNAME_CSWpacparser = pacparser
+CATALOGNAME_CSWlibpacparser1 = libpacparser1
+CATALOGNAME_CSWlibpacparser-devel = libpacparser_devel
+CATALOGNAME_CSWpy-libpacparser = py_libpacparser
 
+SPKG_DESC_CSWpacparser = $(DESCRIPTION)
+SPKG_DESC_CSWlibpacparser1 = Library libpacparser.so.1
+SPKG_DESC_CSWlibpacparser-devel = Development Files for libpacparser.so
+SPKG_DESC_CSWpy-libpacparser = Python Bindings for libpacparser
+
+RUNTIME_DEP_PKGS_CSWpacparser = CSWlibpacparser1
+RUNTIME_DEP_PKGS_CSWlibpacparser-devel = CSWlibpacparser1
+RUNTIME_DEP_PKGS_CSWpy-libpacparser = CSWlibpython2-6-1-0 CSWpython
+
+VENDOR_URL = http://code.google.com/p/pacparser/
+
+# There is some Python stuff in the package
+PYCOMPILE = 1
+
+NOISALIST = 1
+
+CONFIGURE_SCRIPTS =
+
+BUILD_SCRIPTS = $(WORKSRC)/src/Makefile
+BUILD_ARGS = all pymod
+BUILD_OVERRIDE_VARS = PREFIX
+BUILD_OVERRIDE_VAR_PREFIX = $(prefix)
+
+# Tests are run after build
+TEST_SCRIPTS =
+
+INSTALL_SCRIPTS = $(WORKSRC)/src/Makefile
+INSTALL_ARGS = install install-pymod
+INSTALL_OVERRIDE_DIRS = PREFIX
+PREFIX=$(prefix)
+
+PKGFILES_CSWlibpacparser1 = $(PKGFILES_RT)
+PKGFILES_CSWlibpacparser-devel  = $(PKGFILES_DEVEL)
+PKGFILES_CSWlibpacparser-devel += $(docdir)/pacparser/html/.*
+PKGFILES_CSWlibpacparser-devel += .*\.c
+PKGFILES_CSWpy-libpacparser  = $(libdir)/python/.*
+PKGFILES_CSWpy-libpacparser += .*\.py
+
 include gar/category.mk
+
+# Needed for 'install' during install-phase
+PATH := /opt/csw/gnu:$(PATH)
+
+post-extract-modulated:
+	@# We have patched something in although the package has not been unpacked.
+	@# Make sure it is uncompressed afterwards.
+	-cd $(WORKSRC)/src && gtar xzvf spidermonkey/js-?.?.?.tar.gz -C spidermonkey
+	$(if $(filter sparc,$(GARCH)),echo "Sparc is fast!!",rm -f $(WORKSRC)/src/spidermonkey/js/src/lock_SunOS.s)
+	@$(MAKECOOKIE)

Added: csw/mgar/pkg/pacparser/trunk/files/0001-Adjust-Makefile.patch
===================================================================
--- csw/mgar/pkg/pacparser/trunk/files/0001-Adjust-Makefile.patch	                        (rev 0)
+++ csw/mgar/pkg/pacparser/trunk/files/0001-Adjust-Makefile.patch	2010-12-07 15:02:51 UTC (rev 11826)
@@ -0,0 +1,55 @@
+From 8460d62468b9c2067ee473da0e1013a869b2791f Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 7 Dec 2010 12:09:01 +0100
+Subject: [PATCH 1/8] Adjust Makefile
+
+---
+ src/Makefile |   10 +++++-----
+ 1 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index 804dd86..b1cc23f 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -38,9 +38,9 @@ LIB_VER = 1
+ SO_SUFFIX = so
+ LIBRARY = $(LIBRARY_NAME).$(SO_SUFFIX).$(LIB_VER)
+ MKSHLIB = $(CC) -shared
+-LIB_OPTS = -Wl,-soname=$(LIBRARY) -Wl,-exclude-libs=libjs.a
++LIB_OPTS = -Wl,-soname=$(LIBRARY)
+ SHFLAGS = -fPIC
+-SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=__va_copy
++SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=va_copy
+ 
+ ifeq ($(OS_ARCH),Darwin)
+   SO_SUFFIX = dylib
+@@ -51,7 +51,7 @@ ifeq ($(OS_ARCH),Darwin)
+   SMCFLAGS =
+ endif
+ 
+-CFLAGS = -g -DXP_UNIX -Wall -DVERSION=$(VERSION)
++CFLAGS = -g -DXP_UNIX -DVERSION=$(VERSION)
+ 
+ ifndef PYTHON
+   PYTHON = python
+@@ -72,7 +72,7 @@ MAN_PREFIX = $(PREFIX)/share/man
+ all: testpactester
+ 
+ spidermonkey/js/src: spidermonkey/js-?.?.?.tar.gz
+-	tar xzvf spidermonkey/js-?.?.?.tar.gz -C spidermonkey
++	gtar xzvf spidermonkey/js-?.?.?.tar.gz -C spidermonkey
+ 
+ jsapi_buildstamp: spidermonkey/js/src
+ 	cd spidermonkey && SMCFLAGS="$(SHFLAGS) $(SMCFLAGS)" $(MAKE) jsapi
+@@ -92,7 +92,7 @@ $(LIBRARY_LINK): $(LIBRARY)
+ 	ln -sf $(LIBRARY) $(LIBRARY_LINK)
+ 
+ pactester: pactester.c pacparser.h $(LIBRARY_LINK)
+-	$(CC) pactester.c -o pactester -lpacparser -L. -I.
++	$(CC) pactester.c -o pactester -L. -lpacparser -I. -lsocket -lnsl
+ 
+ testpactester: pactester
+ 	echo "Running tests for pactester."
+-- 
+1.7.3.2
+

Added: csw/mgar/pkg/pacparser/trunk/files/0002-Fix-nullpointer-bug.patch
===================================================================
--- csw/mgar/pkg/pacparser/trunk/files/0002-Fix-nullpointer-bug.patch	                        (rev 0)
+++ csw/mgar/pkg/pacparser/trunk/files/0002-Fix-nullpointer-bug.patch	2010-12-07 15:02:51 UTC (rev 11826)
@@ -0,0 +1,25 @@
+From 9b90310b830099acbd0b7339f534970e74d47c3a Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 7 Dec 2010 12:09:29 +0100
+Subject: [PATCH 2/8] Fix nullpointer bug
+
+---
+ src/pacparser.c |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/src/pacparser.c b/src/pacparser.c
+index 315f854..dd6a840 100644
+--- a/src/pacparser.c
++++ b/src/pacparser.c
+@@ -112,7 +112,7 @@ resolve_host(const char *hostname, char *ipaddr_list, int max_results)
+     if (ipaddr_list[0] == '\0') sprintf(ipaddr_list, "%s", ipaddr);
+     else sprintf(ipaddr_list, "%s;%s", ipaddr_list, ipaddr);
+   }
+-  freeaddrinfo(ai);
++  freeaddrinfo(result);
+   return 0;
+ }
+ 
+-- 
+1.7.3.2
+

Added: csw/mgar/pkg/pacparser/trunk/files/0003-Only-GNU-grep-knows-q.patch
===================================================================
--- csw/mgar/pkg/pacparser/trunk/files/0003-Only-GNU-grep-knows-q.patch	                        (rev 0)
+++ csw/mgar/pkg/pacparser/trunk/files/0003-Only-GNU-grep-knows-q.patch	2010-12-07 15:02:51 UTC (rev 11826)
@@ -0,0 +1,25 @@
+From 72f1b20d04215976c6df42f40d10b90e8cbf6773 Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 7 Dec 2010 12:09:46 +0100
+Subject: [PATCH 3/8] Only GNU grep knows -q
+
+---
+ tests/runtests.sh |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/tests/runtests.sh b/tests/runtests.sh
+index 616cc6a..09a6b1e 100755
+--- a/tests/runtests.sh
++++ b/tests/runtests.sh
+@@ -23,7 +23,7 @@ fi
+ 
+ while read line
+   do
+-    echo "$line" | grep -q "^#" && continue
++    echo "$line" | ggrep -q "^#" && continue
+     PARAMS=$(echo "$line"|cut -d"|" -f1)
+     EXPECTED_RESULT=$(echo $line|cut -d"|" -f2)
+     RESULT=$($PACTESTER -p $PACFILE $PARAMS)
+-- 
+1.7.3.2
+

Added: csw/mgar/pkg/pacparser/trunk/files/0004-Some-more-Makefile-tweaks.patch
===================================================================
--- csw/mgar/pkg/pacparser/trunk/files/0004-Some-more-Makefile-tweaks.patch	                        (rev 0)
+++ csw/mgar/pkg/pacparser/trunk/files/0004-Some-more-Makefile-tweaks.patch	2010-12-07 15:02:51 UTC (rev 11826)
@@ -0,0 +1,34 @@
+From 8c97093a01763998f67272c479f59fa98d32c49c Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 7 Dec 2010 13:27:46 +0100
+Subject: [PATCH 4/8] Some more Makefile tweaks
+
+---
+ src/Makefile |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index b1cc23f..af7a410 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -40,7 +40,7 @@ LIBRARY = $(LIBRARY_NAME).$(SO_SUFFIX).$(LIB_VER)
+ MKSHLIB = $(CC) -shared
+ LIB_OPTS = -Wl,-soname=$(LIBRARY)
+ SHFLAGS = -fPIC
+-SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=va_copy
++SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=va_copy $(CFLAGS)
+ 
+ ifeq ($(OS_ARCH),Darwin)
+   SO_SUFFIX = dylib
+@@ -51,7 +51,7 @@ ifeq ($(OS_ARCH),Darwin)
+   SMCFLAGS =
+ endif
+ 
+-CFLAGS = -g -DXP_UNIX -DVERSION=$(VERSION)
++CFLAGS += -DXP_UNIX -DVERSION=$(VERSION)
+ 
+ ifndef PYTHON
+   PYTHON = python
+-- 
+1.7.3.2
+

Added: csw/mgar/pkg/pacparser/trunk/files/0005-Fix-soname-and-pactester-compilation.patch
===================================================================
--- csw/mgar/pkg/pacparser/trunk/files/0005-Fix-soname-and-pactester-compilation.patch	                        (rev 0)
+++ csw/mgar/pkg/pacparser/trunk/files/0005-Fix-soname-and-pactester-compilation.patch	2010-12-07 15:02:51 UTC (rev 11826)
@@ -0,0 +1,34 @@
+From e285a716d2a06a4da42f24d4d72b74e094896444 Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 7 Dec 2010 13:30:08 +0100
+Subject: [PATCH 5/8] Fix soname and pactester compilation
+
+---
+ src/Makefile |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index af7a410..b3abb27 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -38,7 +38,7 @@ LIB_VER = 1
+ SO_SUFFIX = so
+ LIBRARY = $(LIBRARY_NAME).$(SO_SUFFIX).$(LIB_VER)
+ MKSHLIB = $(CC) -shared
+-LIB_OPTS = -Wl,-soname=$(LIBRARY)
++LIB_OPTS = -h $(LIBRARY)
+ SHFLAGS = -fPIC
+ SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=va_copy $(CFLAGS)
+ 
+@@ -92,7 +92,7 @@ $(LIBRARY_LINK): $(LIBRARY)
+ 	ln -sf $(LIBRARY) $(LIBRARY_LINK)
+ 
+ pactester: pactester.c pacparser.h $(LIBRARY_LINK)
+-	$(CC) pactester.c -o pactester -L. -lpacparser -I. -lsocket -lnsl
++	$(CC) $(CFLAGS) pactester.c -o pactester -L. -lpacparser -I. -lsocket -lnsl
+ 
+ testpactester: pactester
+ 	echo "Running tests for pactester."
+-- 
+1.7.3.2
+

Added: csw/mgar/pkg/pacparser/trunk/files/0006-Add-flags-to-make-library-self-sufficient.patch
===================================================================
--- csw/mgar/pkg/pacparser/trunk/files/0006-Add-flags-to-make-library-self-sufficient.patch	                        (rev 0)
+++ csw/mgar/pkg/pacparser/trunk/files/0006-Add-flags-to-make-library-self-sufficient.patch	2010-12-07 15:02:51 UTC (rev 11826)
@@ -0,0 +1,25 @@
+From cd3ca684d7f4955c964ffb666d31ca5a396941c2 Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 7 Dec 2010 13:37:57 +0100
+Subject: [PATCH 6/8] Add flags to make library self-sufficient
+
+---
+ src/Makefile |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index b3abb27..66b2263 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -59,7 +59,7 @@ endif
+ 
+ # Spidermonkey library.
+ CFLAGS += -Ispidermonkey/js/src
+-LDFLAGS += -lm
++LDFLAGS += -lm -lsocket -lnsl
+ 
+ LIBRARY_LINK = $(LIBRARY_NAME).$(SO_SUFFIX)
+ PREFIX := $(DESTDIR)$(PREFIX)
+-- 
+1.7.3.2
+

Added: csw/mgar/pkg/pacparser/trunk/files/0007-Add-config-for-spidermonkey-i386.patch
===================================================================
--- csw/mgar/pkg/pacparser/trunk/files/0007-Add-config-for-spidermonkey-i386.patch	                        (rev 0)
+++ csw/mgar/pkg/pacparser/trunk/files/0007-Add-config-for-spidermonkey-i386.patch	2010-12-07 15:02:51 UTC (rev 11826)
@@ -0,0 +1,106 @@
+From 7f7e1c52c65e2e2085b0f689490b03e8d022cac2 Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 7 Dec 2010 14:25:03 +0100
+Subject: [PATCH 7/8] Add config for spidermonkey i386
+
+---
+ src/spidermonkey/js/src/config/SunOS5.9_i86pc.mk |   87 ++++++++++++++++++++++
+ 1 files changed, 87 insertions(+), 0 deletions(-)
+ create mode 100644 src/spidermonkey/js/src/config/SunOS5.9_i86pc.mk
+
+diff --git a/src/spidermonkey/js/src/config/SunOS5.9_i86pc.mk b/src/spidermonkey/js/src/config/SunOS5.9_i86pc.mk
+new file mode 100644
+index 0000000..bb4561f
+--- /dev/null
++++ b/src/spidermonkey/js/src/config/SunOS5.9_i86pc.mk
+@@ -0,0 +1,87 @@
++# -*- Mode: makefile -*-
++#
++# ***** BEGIN LICENSE BLOCK *****
++# Version: MPL 1.1/GPL 2.0/LGPL 2.1
++#
++# The contents of this file are subject to the Mozilla Public License Version
++# 1.1 (the "License"); you may not use this file except in compliance with
++# the License. You may obtain a copy of the License at
++# http://www.mozilla.org/MPL/
++#
++# Software distributed under the License is distributed on an "AS IS" basis,
++# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++# for the specific language governing rights and limitations under the
++# License.
++#
++# The Original Code is Mozilla Communicator client code, released
++# March 31, 1998.
++#
++# The Initial Developer of the Original Code is
++# Netscape Communications Corporation.
++# Portions created by the Initial Developer are Copyright (C) 1998
++# the Initial Developer. All Rights Reserved.
++#
++# Contributor(s):
++#
++# Alternatively, the contents of this file may be used under the terms of
++# either the GNU General Public License Version 2 or later (the "GPL"), or
++# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
++# in which case the provisions of the GPL or the LGPL are applicable instead
++# of those above. If you wish to allow use of your version of this file only
++# under the terms of either the GPL or the LGPL, and not to allow others to
++# use your version of this file under the terms of the MPL, indicate your
++# decision by deleting the provisions above and replace them with the notice
++# and other provisions required by the GPL or the LGPL. If you do not delete
++# the provisions above, a recipient may use your version of this file under
++# the terms of any one of the MPL, the GPL or the LGPL.
++#
++# ***** END LICENSE BLOCK *****
++
++#
++# Config stuff for SunOS5.5
++#
++
++AS = /usr/ccs/bin/as
++ifndef NS_USE_NATIVE
++CC = gcc
++CCC = g++
++CFLAGS +=  -Wall -Wno-format
++else
++CC = cc
++CCC = CC
++endif
++
++RANLIB = echo
++
++#.c.o:
++#	$(CC) -c -MD $*.d $(CFLAGS) $<
++
++CPU_ARCH = x86
++GFX_ARCH = x
++
++OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -DSOLARIS -DHAVE_LOCALTIME_R
++OS_LIBS = -lsocket -lnsl -ldl
++
++ASFLAGS	        += -P -L -K PIC -D_ASM -D__STDC__=0
++
++HAVE_PURIFY = 1
++
++NOSUCHFILE = /solaris-rm-f-sucks
++
++ifeq ($(OS_CPUARCH),sun4u)	# ultra sparc?
++ifeq ($(CC),gcc)		# using gcc?
++ifndef JS_NO_ULTRA		# do we want ultra?
++ifdef JS_THREADSAFE		# only in thread-safe mode
++DEFINES 	+= -DULTRA_SPARC
++DEFINES         += -Wa,-xarch=v8plus,-DULTRA_SPARC
++else
++ASFLAGS         += -xarch=v8plus -DULTRA_SPARC
++endif
++endif
++endif
++endif
++
++MKSHLIB = $(LD) -G
++
++# Use the editline library to provide line-editing support.
++JS_EDITLINE = 1
+-- 
+1.7.3.2
+

Added: csw/mgar/pkg/pacparser/trunk/files/0008-Always-set-myIpAddr-to-127.0.0.1-or-tests-on-current.patch
===================================================================
--- csw/mgar/pkg/pacparser/trunk/files/0008-Always-set-myIpAddr-to-127.0.0.1-or-tests-on-current.patch	                        (rev 0)
+++ csw/mgar/pkg/pacparser/trunk/files/0008-Always-set-myIpAddr-to-127.0.0.1-or-tests-on-current.patch	2010-12-07 15:02:51 UTC (rev 11826)
@@ -0,0 +1,34 @@
+From 1a11df76feae6867b665d5e7c2d70ad8151a0823 Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 7 Dec 2010 15:44:37 +0100
+Subject: [PATCH 8/8] Always set myIpAddr to 127.0.0.1 or tests on current9x fails
+
+---
+ tests/runtests.sh |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tests/runtests.sh b/tests/runtests.sh
+index 09a6b1e..61663f8 100755
+--- a/tests/runtests.sh
++++ b/tests/runtests.sh
+@@ -26,7 +26,7 @@ while read line
+     echo "$line" | ggrep -q "^#" && continue
+     PARAMS=$(echo "$line"|cut -d"|" -f1)
+     EXPECTED_RESULT=$(echo $line|cut -d"|" -f2)
+-    RESULT=$($PACTESTER -p $PACFILE $PARAMS)
++    RESULT=$($PACTESTER -c 127.0.0.1 -p $PACFILE $PARAMS)
+     if [ $? != 0 ]; then
+       echo "pactester execution failed."
+       echo "Command tried: $PACTESTER -p $PACFILE $PARAMS"
+@@ -39,7 +39,7 @@ while read line
+     [ $DEBUG ] && echo "Params: $PARAMS"
+     if [ "$RESULT" != "$EXPECTED_RESULT" ]; then
+       echo "Test failed: got \"$RESULT\", expected \"$EXPECTED_RESULT\""
+-      echo "Command tried: $PACTESTER -p $PACFILE $PARAMS"
++      echo "Command tried: $PACTESTER -c 127.0.0.1 -p $PACFILE $PARAMS"
+       echo "Running with debug mode on..."
+       echo "DEBUG=1 $PACTESTER -p $PACFILE $PARAMS"
+       DEBUG=1 $PACTESTER -p $PACFILE $PARAMS
+-- 
+1.7.3.2
+


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list