aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2020-06-22 20:00:38 +0000
committerIngo Schwarze <schwarze@openbsd.org>2020-06-22 20:00:38 +0000
commit1542428e49efefc79fdacc5797aee55722164987 (patch)
treec5f0a628164575199aecebcebf108a089efa1aad /Makefile
parente6e331420a7d737bb26d35ecef4180cc569577a4 (diff)
downloadmandoc-1542428e49efefc79fdacc5797aee55722164987.tar.gz
mandoc-1542428e49efefc79fdacc5797aee55722164987.tar.zst
mandoc-1542428e49efefc79fdacc5797aee55722164987.zip
Provide a real feature test for __attribute__().
Looking at version numbers like __GNUC__ is always a bad idea. Believe it or not, this even makes ./configure shorter by one line.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 80882eea..181014fb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.534 2020/06/15 16:58:24 schwarze Exp $
+# $Id: Makefile,v 1.535 2020/06/22 20:00:38 schwarze Exp $
#
# Copyright (c) 2011, 2013-2020 Ingo Schwarze <schwarze@openbsd.org>
# Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -19,7 +19,8 @@ VERSION = 1.14.5
# === LIST OF FILES ====================================================
-TESTSRCS = test-be32toh.c \
+TESTSRCS = test-attribute.c \
+ test-be32toh.c \
test-cmsg.c \
test-dirent-namlen.c \
test-EFTYPE.c \