commit b49d4941c8516ec9461a2de2615819f87c4e9acd from: Thomas Adam date: Wed Mar 08 09:27:14 2023 UTC portable: Makefile: add -Wno-pointer-sign Ignore warnings about pointer-signedness. This may well get fixed upstream, but won't hurt to be left here, regardless. commit - 47dc83f5bed376c49b704738968d3f44c8e01d1e commit + b49d4941c8516ec9461a2de2615819f87c4e9acd blob - 987ad067c1516667b4cef8de39e25bf73e77577e blob + 7635c72b6f2648b4dbba31fbb5339f3504bee88f --- Makefile.common.in +++ Makefile.common.in @@ -1,7 +1,8 @@ AM_CFLAGS += \ @AM_CFLAGS@ \ -Wunused-variable \ - -Wwrite-strings + -Wwrite-strings \ + -Wno-pointer-sign # Ideally, we should be enabling further flags, but this requires upstream # changes. Leaving these here for now. # @@ -14,8 +15,6 @@ AM_CFLAGS += \ AM_CPPFLAGS += \ @AM_CPPFLAGS@ \ - -DGOT_VERSION=@VERSION@ \ - -DGOT_VERSION_NUMBER=@VERSION@ \ -DGOT_LIBEXECDIR="$(libexecdir)" \ -I$(top_srcdir) \ -I$(top_srcdir)/compat \