pkgsrc/devel/rudiments/patches/patch-configure
fhajny 2ef644a49e Update devel/rudiments to 0.55.0.
Major new features:

- Security Framework
  * A securitycontext may now be attached to a filedescriptor to
    enable encrypted reads and writes. The securitycontext class
    is just an interface though, and there are currently gsscontext
    and tlscontext implementations of it.
  * The gsscontext class and associated classes implement a
    wrapper on top of the GSSAPI on Linux/Unix and SSPI on Windows.
    This primarily provides Kerberos encryption and authentication,
    though on Windows it could be used for NTLM as well.
  * The tlscontext class and associated classes implement a wrapper
    on top of OpenSSL on Linux/Unix and, again, SSPI on Windows.
    This provides Transport Layer Security, or it's predecessor Secure
    Socket Layer, on both platforms.
- Thread Class Improvements
- Semantic Versioning
- General Bug Fixes

See full changelog:

  http://software.firstworks.com/2016/03/rudiments-0550-release-announcement.html
2016-07-01 16:02:12 +00:00

15 lines
670 B
Text

$NetBSD: patch-configure,v 1.4 2016/07/01 16:02:12 fhajny Exp $
Portability. Avoid mangling of other compiler debug flags.
--- configure.orig 2016-03-26 17:20:08.000000000 +0000
+++ configure
@@ -30710,7 +30710,7 @@ GETPGIDLIB=""
if ( test "$HAVE_GETPGID" = "yes" )
then
SAVECXXFLAGS="$CXXFLAGS"
-CXXFLAGS=`echo $CXXFLAGS | sed -e "s|-g1||" -e "s|-g2||" -e "s|-g3||" -e "s|-g||"`
+CXXFLAGS=`echo $CXXFLAGS | sed -e "s|-g1||" -e "s|-g2||" -e "s|-g3||" -e "s|-g ||" -e "s|-g$||"`
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getpgid needs -lg" >&5
$as_echo_n "checking whether getpgid needs -lg... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext