1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

www/websh: report errors parsing cookie-expiration date

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.
This commit is contained in:
Mikhail Teterin 2023-05-14 17:27:16 -04:00
parent 279054c5d3
commit 8f8d3f3321
2 changed files with 3 additions and 3 deletions

View File

@ -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
@ -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

View File

@ -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]]