From 15c23fed7b871ab39d9bb64607e71aef53aec6aa Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 11 Jul 2019 18:19:52 -0400 Subject: [PATCH] debian: drop special case CFLAGS for Alpha and PowerMac architectures Defining HAVE_NETINET_IN_H for Alpha and __NO_STRING_INLINES for the PowerMac QUICK bootloader date back to over two decades, to 1997 and 1998, respectively. These two architectures are no longer supported by Debian, and it's not clear they are actually needed in 2019 even for someone building for these architectures. So let's drop them and see if anyone complains (or notices). Signed-off-by: Theodore Ts'o --- debian/rules | 6 ------ 1 file changed, 6 deletions(-) diff --git a/debian/rules b/debian/rules index 6e37126..1185986 100755 --- a/debian/rules +++ b/debian/rules @@ -33,12 +33,6 @@ ifneq (,$(findstring update-symbols,$(DEB_BUILD_OPTIONS))) SYMBOL_LIBS := libext2fs libcomerr2 libss2 endif -ifeq (${DEB_HOST_ARCH},alpha) -CFLAGS += -DHAVE_NETINET_IN_H -else -CFLAGS += -D__NO_STRING_INLINES -endif - CFLAGS_SHLIB = $(CFLAGS) CFLAGS_STLIB = $(CFLAGS) LDFLAGS_SHLIB = $(LDFLAGS) -- 1.8.3.1