From 18a34d78737374627f1128be3b66c8ddd95bdb0e Mon Sep 17 00:00:00 2001 From: rbuj Date: Mon, 25 Jan 2021 23:12:55 +0100 Subject: build: Use config.h which defines GETTEXT_PACKAGE & VERSION --- src/Makefile.am | 2 -- src/mate-calc.c | 4 ++++ src/math-window.c | 4 ++++ 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index 24b8a2e..4ef161a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,9 +4,7 @@ noinst_PROGRAMS = test-mp test-mp-equation TESTS = test-mp test-mp-equation AM_CPPFLAGS = \ - -DVERSION=\""$(VERSION)"\" \ -DLOCALE_DIR=\""$(localedir)"\" \ - -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \ $(WARN_CFLAGS) \ $(MATE_CALC_CFLAGS) diff --git a/src/mate-calc.c b/src/mate-calc.c index b12ab79..99224ba 100644 --- a/src/mate-calc.c +++ b/src/mate-calc.c @@ -9,6 +9,10 @@ * license. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff --git a/src/math-window.c b/src/math-window.c index f627c65..9dc8f67 100644 --- a/src/math-window.c +++ b/src/math-window.c @@ -9,6 +9,10 @@ * license. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include -- cgit v1.2.1