From: Theodore Ts'o Date: Thu, 11 Jul 2019 22:19:52 +0000 (-0400) Subject: debian: drop special case CFLAGS for Alpha and PowerMac architectures X-Git-Tag: v1.45.3~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15c23fed7b871ab39d9bb64607e71aef53aec6aa;p=thirdparty%2Fe2fsprogs.git 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 --- diff --git a/debian/rules b/debian/rules index 6e371264a..118598686 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)