mirror of https://github.com/stella-emu/stella.git
Fixed compile-time error where not including snapshot support would cause
compiling to fail. Since ZIP support was added, we always need to link to the zlib library, not just when we want snapshot support. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@565 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
900157b6b4
commit
6382ab8e47
|
@ -13,7 +13,7 @@
|
|||
## See the file "license" for information on usage and redistribution of
|
||||
## this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
##
|
||||
## $Id: makefile,v 1.106 2005-06-23 18:11:57 stephena Exp $
|
||||
## $Id: makefile,v 1.107 2005-06-26 13:08:43 stephena Exp $
|
||||
##============================================================================
|
||||
|
||||
##============================================================================
|
||||
|
@ -55,7 +55,7 @@ CXX = g++
|
|||
LD = g++
|
||||
|
||||
LDFLAGS = `sdl-config --cflags`
|
||||
LDLIBS = `sdl-config --libs`
|
||||
LDLIBS = `sdl-config --libs` -lz
|
||||
OBJECTS = mainSDL.o FrameBufferSoft.o
|
||||
OPTIONS =
|
||||
EXE_NAME =
|
||||
|
@ -94,7 +94,7 @@ endif
|
|||
ifdef SNAPSHOT_SUPPORT
|
||||
OBJECTS += Snapshot.o
|
||||
OPTIONS += -DSNAPSHOT_SUPPORT
|
||||
LDLIBS += -lpng -lz
|
||||
LDLIBS += -lpng
|
||||
endif
|
||||
|
||||
ifdef DEVELOPER_SUPPORT
|
||||
|
|
Loading…
Reference in New Issue