From 52295b2ad55ed9da5336d250403ef62bb8326a21 Mon Sep 17 00:00:00 2001 From: Carsten Leonhardt Date: Sun, 10 Jan 2021 17:16:14 +0100 Subject: Fix configure.in for autoreconf Last-Update: 2019-02-28 autoreconf complains about AC_DEFINE with only one argument, fix those. Gbp-Pq: Name 002-fix-configure-for-autoreconf --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index 10aa09d..b3102ec 100755 --- a/configure.in +++ b/configure.in @@ -10,10 +10,10 @@ AC_CANONICAL_SYSTEM AC_PREFIX_DEFAULT(/usr/local) case "$host_os" in - *linux*) AC_DEFINE(LINUX) + *linux*) AC_DEFINE([LINUX], [1], [Linux]) TARGET=linux ;; - *solaris*) AC_DEFINE(SOLARIS) + *solaris*) AC_DEFINE([SOLARIS], [1], [Solaris]) TARGET=solarissparc ;; *sunos*) TARGET=solarissparc @@ -28,7 +28,7 @@ case "$host_os" in ;; *HP*) TARGET=hpux ;; - *sequent*) AC_DEFINE(SEQUENT) + *sequent*) AC_DEFINE([SEQUENT], [1], [Sequent]) ;; *MINGW*) TARGET=mingw ;; -- cgit v1.2.3