Skip to content

Commit

Permalink
Moved from c++ 17 to c++ 20
Browse files Browse the repository at this point in the history
  • Loading branch information
sp1ff committed Jan 13, 2024
1 parent bc06c7b commit 0bdd09c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scribbu/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pkginclude_HEADERS = scribbu.hh \

AM_YFLAGS = -d
AM_CPPFLAGS = -I$(srcdir)/.. $(BOOST_CPPFLAGS) $(OPENSSL_INCLUDES) $(GUILE_CFLAGS)
AM_CXXFLAGS = -std=c++17 -Wno-register $(GUILE_CFLAGS)
AM_CXXFLAGS = -std=c++20 -Wno-register $(GUILE_CFLAGS)
AM_LDFLAGS = $(BOOST_LDFLAGS) $(LIBUNISTRING)

libscribbu_la_LIBADD = $(GUILE_LIBS) \
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ scribbu_SOURCES = scribbu.cc command-utilities.hh command-utilities.cc \
AM_CPPFLAGS = -I$(srcdir)/.. $(BOOST_CPPFLAGS) $(GUILE_CFLAGS) -DDATADIR=\"$(datadir)\" -DSCRIBBU_ALWAYS_DUMP_CORE
# AM_CPPFLAGS = -I$(srcdir)/.. $(BOOST_CPPFLAGS) $(GUILE_CFLAGS) -DDATADIR=\"$(datadir)\"

AM_CXXFLAGS = -std=c++17 $(GUILE_CFLAGS)
AM_CXXFLAGS = -std=c++20 $(GUILE_CFLAGS)
AM_LDFLAGS = $(BOOST_LDFLAGS) $(LIBUNISTRING)
scribbu_LDADD = ../scribbu/libscribbu.la \
$(GUILE_LIBS) \
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ unit_SOURCES = unit.cc unit.hh charsets.cc ostream.cc id3v1.cc framesv2.cc \
scribbu.cc id3v2-edit.cc tagset.cc winamp-genres.cc

AM_CPPFLAGS = -DBOOST_TEST_DYN_LINK -I$(srcdir)/.. $(BOOST_CPPFLAGS)
AM_CXXFLAGS = -std=c++17
AM_CXXFLAGS = -std=c++20
AM_LDFLAGS = $(BOOST_LDFLAGS)
unit_LDADD = ../scribbu/libscribbu.la \
$(GUILE_LIBS) \
Expand Down

0 comments on commit 0bdd09c

Please sign in to comment.