Skip to content

Commit

Permalink
www/websh: report errors parsing cookie-expiration date
Browse files Browse the repository at this point in the history
Original code would ignore such errors -- and would simply skip the
expiration-clause of any cookie. This MIGHT explain the test-failures
reported by Poudriere, even though I cannot reproduce this problem
locally.

Fix another minor problem, while I'm here -- and bump PORTREVISION.
  • Loading branch information
Mikhail Teterin authored and Mikhail Teterin committed May 14, 2023
1 parent 279054c commit 8f8d3f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions www/websh/Makefile
@@ -1,6 +1,6 @@
PORTNAME= websh
PORTVERSION= 3.6.0b5
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= www tcl
MASTER_SITES= https://archive.apache.org/dist/tcl/${PORTNAME}/source/
EXTRACT_SUFX= -src.tar.gz
Expand Down Expand Up @@ -43,7 +43,7 @@ post-patch:
done
${REINPLACE_CMD} -e 's,\.html,.whtml,g' ${WRKSRC:H:H}/doc/mod_websh/htdocs/*.ws3
${REINPLACE_CMD} -e 's|__declspec(dllexport)|DLLEXPORT|' \
${WRKSRC}/../generic/*.[ch]
${WRKSRC:H}/generic/*.[ch]

post-configure:
# Remove the "STUBS" and the PACKAGE_* defines, which may conflict
Expand Down
2 changes: 1 addition & 1 deletion www/websh/files/pkgIndex.tcl.in
@@ -1,3 +1,3 @@
if {[package vcompare [info tclversion] 8.3] < 0} return

package ifneeded websh %%WS_VER%% [list load [file join [file dirname $dir] libwebsh%%TCL_DVER%%.so.1]]
package ifneeded websh %%WS_VER%% [list load [file join [file dirname $dir] libwebsh%%LIBSUF%%.so.1]]

0 comments on commit 8f8d3f3

Please sign in to comment.