mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
On non-{Windows, OS X}, don't link to libpng when PNG support is not requested.
git-svn-id: https://svn.eduke32.com/eduke32@3050 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1ba5ec469b
commit
04a542f1b3
1 changed files with 3 additions and 1 deletions
|
@ -314,7 +314,9 @@ else
|
|||
LIBS+= -L/opt/local/lib -L/usr/local/lib -lpng # -lz
|
||||
endif
|
||||
else
|
||||
LIBS+= -lpng -lz
|
||||
ifneq ($(USE_LIBPNG),0)
|
||||
LIBS+= -lpng -lz
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue