1From 11dc017e902397c452331425eb6101b3315572fa Mon Sep 17 00:00:00 2001 2From: Fabrice Fontaine <fontaine.fabrice@gmail.com> 3Date: Sun, 24 Jan 2021 10:59:31 +0100 4Subject: [PATCH] Makefile.PL: fix cross-compilation with gdlib.pc 5 6Cross-compilation will fail if gdlib.pc does not contain any cflags. 7Indeed, if cflags is empty, Makefile.PL will use the default value for 8INC (i.e. -I/usr/include -I/usr/include/gd) 9 10It should be noted that gdlib-config has been dropped from gd since 11version 2.3.0 12 13Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> 14[Upstream status: probably not upstreamable] 15--- 16 Makefile.PL | 2 +- 17 1 file changed, 1 insertion(+), 1 deletion(-) 18 19diff --git a/Makefile.PL b/Makefile.PL 20index 25f2f93..7da3651 100644 21--- a/Makefile.PL 22+++ b/Makefile.PL 23@@ -47,7 +47,7 @@ If you want to try to compile anyway, please rerun this script with the option - 24 END 25 } 26 27-@INC = qw(-I/usr/include -I/usr/include/gd) unless @INC; 28+#@INC = qw(-I/usr/include -I/usr/include/gd) unless @INC; 29 @LIBPATH = qw(-L/usr/lib/X11 -L/usr/X11R6/lib -L/usr/X11/lib -L/usr/lib) unless @LIBPATH; 30 @LIBS = qw(-lgd) unless @LIBS; 31 32-- 332.29.2 34 35