git: a6dcbfacc1ad - main - net/freerdp: Fix version
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 26 Feb 2026 15:47:14 UTC
The branch main has been updated by vvd:
URL: https://cgit.FreeBSD.org/ports/commit/?id=a6dcbfacc1ad377897545bdbf6e8968b9ec1afc4
commit a6dcbfacc1ad377897545bdbf6e8968b9ec1afc4
Author: Vladimir Druzenko <vvd@FreeBSD.org>
AuthorDate: 2026-02-26 15:44:39 +0000
Commit: Vladimir Druzenko <vvd@FreeBSD.org>
CommitDate: 2026-02-26 15:44:39 +0000
net/freerdp: Fix version
Upstream forgot to update version string for release 2.11.8.
net/guacamole-server broken:
configure: error:
--------------------------------------------
You are building against a development version of FreeRDP. Non-release
versions of FreeRDP may have differences in behavior that are impossible to
check for at build time. This may result in memory leaks or other strange
behavior.
*** PLEASE USE A RELEASED VERSION OF FREERDP IF POSSIBLE ***
If you are ABSOLUTELY CERTAIN that building against this version of FreeRDP
is OK, rerun configure with the --enable-allow-freerdp-snapshots
--------------------------------------------
2.11.7 => 2.11.8-dev
https://github.com/FreeRDP/FreeRDP/commit/a383740a2f85fa93f390181e5ea4bd1458b34051
2.11.8-dev => 2.11.8
https://github.com/FreeRDP/FreeRDP/commit/9b678b6d5a40ce01607d8c3b1b1416437c8416c4
Not updated CMakeLists.txt.
PR: 293463
MFH: 2026Q1
---
net/freerdp/Makefile | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/net/freerdp/Makefile b/net/freerdp/Makefile
index 2c55cabcf237..1c7a0c69a47e 100644
--- a/net/freerdp/Makefile
+++ b/net/freerdp/Makefile
@@ -1,5 +1,6 @@
PORTNAME= freerdp
DISTVERSION= 2.11.8
+PORTREVISION= 1
CATEGORIES= net comms
MASTER_SITES= https://pub.freerdp.com/releases/ \
https://github.com/FreeRDP/FreeRDP/releases/download/${DISTVERSION}/
@@ -143,6 +144,10 @@ X11_CMAKE_ON= -DWITH_X11:BOOL=ON -DWITH_XCURSOR:BOOL=ON \
-DWITH_XV:BOOL=ON
X11_CMAKE_OFF= -DWITH_X11:BOOL=OFF -DWITH_XKBFILE:BOOL=OFF
+post-patch:
+ @${REINPLACE_CMD} -e 's|${DISTVERSION}-dev|${DISTVERSION}|' \
+ ${WRKSRC}/CMakeLists.txt
+
post-patch-GSM-on:
@${REINPLACE_CMD} -e 's|gsm/gsm.h|gsm.h|' \
${WRKSRC}/cmake/FindGSM.cmake \