shithub: rgbds

Download patch

ref: 5fd38c5f6771cf7c79daee0f464b3cd4d601501e
parent: 03ed9147147c5858a667eeea34e10e2e6a4358d9
author: ISSOtm <[email protected]>
date: Thu Feb 13 22:07:24 EST 2020

Do not try to link libpng statically

--- a/Makefile
+++ b/Makefile
@@ -23,9 +23,9 @@
 # Other variables
 
 PKG_CONFIG	:= pkg-config
-PNGCFLAGS	:= `${PKG_CONFIG} --static --cflags libpng`
-PNGLDFLAGS	:= `${PKG_CONFIG} --static --libs-only-L libpng`
-PNGLDLIBS	:= `${PKG_CONFIG} --static --libs-only-l libpng`
+PNGCFLAGS	:= `${PKG_CONFIG} --cflags libpng`
+PNGLDFLAGS	:= `${PKG_CONFIG} --libs-only-L libpng`
+PNGLDLIBS	:= `${PKG_CONFIG} --libs-only-l libpng`
 
 VERSION_STRING	:= `git describe --tags --dirty --always 2>/dev/null`