765ba27a2388ce77930c8dd3152d627d63905d0a
kent
  Mon Oct 25 11:57:02 2010 -0700
Adding libpng to makefile link line.
diff --git src/weblet/counter/makefile src/weblet/counter/makefile
index 6a1174e..812c59e 100755
--- src/weblet/counter/makefile
+++ src/weblet/counter/makefile
@@ -1,17 +1,17 @@
 include ../../inc/common.mk
 
 
 O = counter.o 
-L += -lz
+L += -lpng -lz
 
 counter: $(O)
 	${CC} ${COPT} ${CFLAGS} $O ../../lib/$(MACHTYPE)/jkweb.a ${L}
 	mv ${AOUT} counter${EXE}
 	chmod a+rx counter${EXE}
 	${STRIP} counter${EXE}
 
 push:
 	mv counter.exe ${CGI_BIN}-${USER}
 
 clean::
 	rm -f ${O} ${AOUT} counter${EXE}