pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/gdb



Module Name:    pkgsrc
Committed By:   mcf
Date:           Mon Oct 26 03:21:05 UTC 2020

Modified Files:
        pkgsrc/devel/gdb: Makefile

Log Message:
gdb: use gnu++11 instead of c++11

gdb makes use of typeof in gdbsupport/gdb_proc_service.h, which is
disabled with -std=c++11 to prevent symbol collision.


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 pkgsrc/devel/gdb/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/gdb/Makefile
diff -u pkgsrc/devel/gdb/Makefile:1.73 pkgsrc/devel/gdb/Makefile:1.74
--- pkgsrc/devel/gdb/Makefile:1.73      Sat Oct 24 18:22:08 2020
+++ pkgsrc/devel/gdb/Makefile   Mon Oct 26 03:21:05 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.73 2020/10/24 18:22:08 kamil Exp $
+# $NetBSD: Makefile,v 1.74 2020/10/26 03:21:05 mcf Exp $
 
 DISTNAME=      gdb-10.1
 CATEGORIES=    devel
@@ -9,7 +9,7 @@ HOMEPAGE=       https://www.gnu.org/software/g
 COMMENT=       Symbolic debugger for multiple language frontends
 LICENSE=       gnu-gpl-v3
 
-USE_LANGUAGES=         c c++11
+USE_LANGUAGES=         c gnu++11
 
 BROKEN_GETTEXT_DETECTION=      yes
 GNU_CONFIGURE=                 yes



Home | Main Index | Thread Index | Old Index