diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2017-04-30 04:25:22 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2017-04-30 04:25:22 +0200 |
commit | 1d689ebfec51613fcb1fe286294c85dcbb9d8574 (patch) | |
tree | 537db174b7033ee078f5114cb895ff971b32d6bd /src/interface-curses | |
parent | b338a9dc265d7bc46a2528ffc45f7bf6fba96620 (diff) | |
download | sciteco-1d689ebfec51613fcb1fe286294c85dcbb9d8574.tar.gz |
removed CLANG and HAVE_SIZED_DEALLOCATION conditionals
Automakefiles could be simplified by updating CXXFLAGS
in configure.ac instead.
Diffstat (limited to 'src/interface-curses')
-rw-r--r-- | src/interface-curses/Makefile.am | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/interface-curses/Makefile.am b/src/interface-curses/Makefile.am index bd61e14..01e68ae 100644 --- a/src/interface-curses/Makefile.am +++ b/src/interface-curses/Makefile.am @@ -1,12 +1,6 @@ AM_CPPFLAGS += -I$(top_srcdir)/src -AM_CXXFLAGS = -std=c++11 -Wall -Wno-char-subscripts -if CLANG -AM_CXXFLAGS += -Wno-mismatched-tags -endif -if HAVE_SIZED_DEALLOCATION -AM_CXXFLAGS += -fsized-deallocation -endif +AM_CXXFLAGS = -Wall -Wno-char-subscripts noinst_LTLIBRARIES = libsciteco-interface.la libsciteco_interface_la_SOURCES = interface-curses.cpp interface-curses.h \ |