7a0cb78e88327e6ea0d70e38d3a5c5dc394cc28c angie Mon Nov 1 09:14:31 2010 -0700 Removing hardcoded -lpg from L because it breaks the build on systemsthat don't have libpng. inc/common.mk does some wildcard matching to find the appropriate lib for png if it exists. diff --git src/tracks/makefile src/tracks/makefile index 3cbdc48..01928be 100644 --- src/tracks/makefile +++ src/tracks/makefile @@ -1,19 +1,19 @@ include ../inc/common.mk -L += $(MYSQLLIBS) -lpng -lz +L += $(MYSQLLIBS) -lz MYLIBDIR = ../lib/$(MACHTYPE) MYLIBS = $(MYLIBDIR)/jkweb.a A = tracksWS120.exe O = tracks.o compile: $O ${CC} $O $(MYLIBS) $(L) mv ${AOUT} $A #${STRIP} $A chmod a+rx $A my: compile mv $A ${CGI_BIN}-$(USER)/$A