<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- Makefile.PL.orig	2021-02-15 17:30:01.000000000 -0800
+++ Makefile.PL	2021-12-22 12:23:56.000000000 -0800
@@ -15,22 +15,22 @@
 # separated lists
 
 my %Arg = (
-	   # X11 library directories
-	   XDIR =&gt; '/usr/openwin/lib,/usr/X11/lib,/usr/X11R6/lib',
+           # X11 library directories
+           XDIR =&gt; '__PREFIX__/lib',
 
-	   # X11 libraries
-	   XLIB =&gt; 'X11',
+           # X11 libraries
+           XLIB =&gt; 'X11',
 
-	   # where cpgplot.h should be
-	   IDIR  =&gt; undef,
+           # where cpgplot.h should be
+           IDIR  =&gt; '__PREFIX__/include',
 
-	   # where libpgplot.a should be
-	   LDIR =&gt; undef,
-
-	   # extra libraries and directories
-	   EXLIB =&gt; join(',', grep check_lib(lib =&gt; $_), qw(png12 png16 z)),
-	   EXDIR =&gt; '/Applications/PDL/pgplot,/usr/local/lib',
-	  );
+           # where libpgplot.a should be
+           LDIR =&gt; '__PREFIX__/lib',
+
+           # extra libraries and directories
+           EXLIB =&gt; 'png,z', 
+           EXDIR =&gt; '__PREFIX__/lib',
+          );
 
 # Get user preferences
 my @NARGV;
</pre></body></html>