[Bug 271053] devel/lutok: fix build with clang 16

From: <bugzilla-noreply_at_freebsd.org>
Date: Mon, 24 Apr 2023 20:24:11 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=271053

            Bug ID: 271053
           Summary: devel/lutok: fix build with clang 16
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: Individual Port(s)
          Assignee: jmmv@FreeBSD.org
          Reporter: dim@FreeBSD.org
          Assignee: jmmv@FreeBSD.org
             Flags: maintainer-feedback?(jmmv@FreeBSD.org)

Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because devel/lutok's Makefile does not explicitly set its C++ standard,
this leads to an error:

  In file included from operations.cpp:35:
  ./stack_cleaner.hpp:75:10: error: no template named 'auto_ptr' in namespace
'std'
      std::auto_ptr< impl > _pimpl;
      ~~~~~^

Add USE_CXXSTD=gnu++98 to avoid the error. While here, pet portlint.

-- 
You are receiving this mail because:
You are the assignee for the bug.