From 7549a2e04422c72bb476888f65f2eb382f0b771f Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Sun, 4 Mar 2012 19:28:41 +0000 Subject: [PATCH] Using $(PNG) instead of -lpng in a spot in Makefile (based on SF.net Bug #3187560) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1e0b2bdc9..c846661fb 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Tux Paint - A simple drawing program for children. -# Copyright (c) 2002-2011 by Bill Kendrick and others +# Copyright (c) 2002-2012 by Bill Kendrick and others # bill@newbreedsoftware.com # http://www.tuxpaint.org/ -# June 14, 2002 - August 9, 2011 +# June 14, 2002 - March 4, 2012 # The version number, for release: @@ -173,7 +173,7 @@ CURSOR_SHAPES:=LARGE # CURSOR_SHAPES:=SMALL # Libraries, paths, and flags: -SDL_LIBS:=$(shell $(PKG_CONFIG) $(SDL_PCNAME) --libs) -lSDL_image -lSDL_ttf -lz -lpng +SDL_LIBS:=$(shell $(PKG_CONFIG) $(SDL_PCNAME) --libs) -lSDL_image -lSDL_ttf -lz $(PNG) # Sound support SDL_MIXER_LIB:=$(call linktest,-lSDL_mixer,$(SDL_LIBS))