aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Druzenko <vvd@FreeBSD.org>2026-02-26 15:44:39 +0000
committerVladimir Druzenko <vvd@FreeBSD.org>2026-02-26 15:48:57 +0000
commit022af7068eab08c171017f150259e6945baca30e (patch)
tree2bb77d848de84086fccea06ce3fe3e80703fd5c5
parentb53971d1b237de4739a11132f05f654644b41447 (diff)
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 (cherry picked from commit a6dcbfacc1ad377897545bdbf6e8968b9ec1afc4)
-rw-r--r--net/freerdp/Makefile5
1 files changed, 5 insertions, 0 deletions
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 \