diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-04-02 16:06:10 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2024-06-24 12:33:35 +0200 |
commit | 45198e5235f4b724277665b242cf855a0ff4518b (patch) | |
tree | 86ba61aad69dc71341ad3808fdfab9685bd2cbea /unix/xserver/hw | |
parent | 100ac87e41e8e5abf7b754ae21865f591b593632 (diff) | |
download | tigervnc-45198e5235f4b724277665b242cf855a0ff4518b.tar.gz tigervnc-45198e5235f4b724277665b242cf855a0ff4518b.zip |
Make sure we use C++ 11
It's rare we use a compiler that has anything older as a default, but it
does happen sometimes. So make sure to guarantee this so we can start
using more modern constructs.
Diffstat (limited to 'unix/xserver/hw')
-rw-r--r-- | unix/xserver/hw/vnc/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/xserver/hw/vnc/Makefile.am b/unix/xserver/hw/vnc/Makefile.am index f9ed19d9..402e37db 100644 --- a/unix/xserver/hw/vnc/Makefile.am +++ b/unix/xserver/hw/vnc/Makefile.am @@ -14,6 +14,8 @@ AM_CPPFLAGS = \ -I$(TIGERVNC_SRCDIR)/unix/common \ $(DIX_CFLAGS) +AM_CXXFLAGS = -std=gnu++11 + noinst_LTLIBRARIES = libvnccommon.la HDRS = vncExtInit.h vncHooks.h \ |