diff options
author | Rene Ladan <rene@FreeBSD.org> | 2018-09-30 10:39:44 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2018-09-30 10:39:44 +0000 |
commit | 6f7466406cf22ca0c92a34e355e661a21b63e7c6 (patch) | |
tree | b7baeadda128f31d3a2a9969563990868e8403c2 /net/xrdp-devel/files/patch-configure.ac | |
parent | textproc/translate-toolkit: update to 2.2.5 (diff) |
Remove expired ports:
2018-09-29 net/ntp-devel: Use net/ntp instead
2018-09-29 net/xrdp-devel: Use net/xrdp instead
2018-09-29 net/tigervnc-devel: Use net/tigervnc instead
2018-09-29 net/unison-devel: Use net/unison instead
2018-09-30 textproc/p5-IDNA-Punycode: Deprecated by upstream
2018-08-15 graphics/gnustep-slideshowkit: unknown license
2018-08-15 graphics/gnustep-slideshow: depends on expiring graphics/gnustep-slideshowkit
2018-09-30 security/lockdown: Renders system unbootable
2018-09-30 devel/p5-Search-Binary: Deprecated by upstream, use List::BinarySearch instead
2018-09-30 devel/p5-ExtUtils-Command: ExtUtils::Command has been re-incorporated to ExtUtils-MakeMaker since 7.06, use devel/ExtUtils-MakeMaker instead
2018-09-30 editors/yui: Unmaintained upstream
2018-09-29 x11/tint-devel: Use x11/tint instead
Notes
Notes:
svn path=/head/; revision=480949
Diffstat (limited to 'net/xrdp-devel/files/patch-configure.ac')
-rw-r--r-- | net/xrdp-devel/files/patch-configure.ac | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/net/xrdp-devel/files/patch-configure.ac b/net/xrdp-devel/files/patch-configure.ac deleted file mode 100644 index 762394926700..000000000000 --- a/net/xrdp-devel/files/patch-configure.ac +++ /dev/null @@ -1,40 +0,0 @@ ---- configure.ac.orig 2017-12-27 14:40:24 UTC -+++ configure.ac -@@ -159,11 +159,35 @@ AC_CHECK_FUNC(dlopen, [], - AC_SUBST(DLOPEN_LIBS) - - # checking for openssl --PKG_CHECK_MODULES([OPENSSL], [openssl >= 0.9.8], [], -+if test "x$freebsd" = "xyes"; then -+ # FreeBSD may have two OpenSSL, base and port however -+ # base OpenSSL doesn.t have openssl.pc file. -+ PKG_CHECK_MODULES( -+ [OPENSSL], -+ [openssl >= 0], -+ [freebsd_openssl=port], -+ [ -+ AC_CHECK_HEADER( -+ [openssl/rc4.h], -+ [freebsd_openssl=base], -+ [AC_MSG_ERROR([please install libssl-dev or openssl-devel])], -+ [#include <stdlib.h>]) -+ ] -+ ) -+ -+ if test "x$freebsd_openssl" = "xport"; then -+ OPENSSL_BIN=`$PKG_CONFIG --variable=exec_prefix openssl`/bin -+ elif test "x$freebsd_openssl" = "xbase"; then -+ OPENSSL_BIN=/usr/bin -+ fi -+else -+ # OpenSSL detection for other OS -+ PKG_CHECK_MODULES([OPENSSL], [openssl >= 0], [], - [AC_MSG_ERROR([please install libssl-dev or openssl-devel])]) -+ OPENSSL_BIN=`$PKG_CONFIG --variable=exec_prefix openssl`/bin -+fi - - # look for openssl binary --OPENSSL_BIN=`$PKG_CONFIG --variable=exec_prefix openssl`/bin - AC_PATH_PROGS([OPENSSL], [openssl], [:], [$OPENSSL_BIN:$PATH]) - - # checking for pam variation |