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-gtk | |
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-gtk')
-rw-r--r-- | src/interface-gtk/Makefile.am | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/interface-gtk/Makefile.am b/src/interface-gtk/Makefile.am index aa42871..825c5d3 100644 --- a/src/interface-gtk/Makefile.am +++ b/src/interface-gtk/Makefile.am @@ -1,13 +1,7 @@ AM_CPPFLAGS += -I$(top_srcdir)/src -AM_CFLAGS = -std=c99 -Wall -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_CFLAGS = -Wall +AM_CXXFLAGS = -Wall -Wno-char-subscripts EXTRA_DIST = gtk-info-popup.gob \ gtk-canonicalized-label.gob |