summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Leonhardt <leo@debian.org>2024-01-08 10:40:21 +0100
committerCarsten Leonhardt <leo@debian.org>2024-01-08 10:40:21 +0100
commit72df12c29e8ddc3b1658045dee73c0cc0af923ab (patch)
tree35f96bc40adba816fcf9b28f964c6dcbc9316292
parentc6bd7a9bac01357c1902288598fac25f55b98d8b (diff)
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
-rwxr-xr-xconfigure.in6
1 files 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
;;