summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-05-19 21:08:23 +0200
committerRobin Watts <robin.watts@artifex.com>2013-05-21 14:20:49 +0100
commite317abb479109200f2ec489b2868e671a060a585 (patch)
treea8259f2e9b8f9ac963cf281469f52e38f6df5500 /doc
parented02cbdce74b32f2d1db5b0fc66d226a27c8f671 (diff)
downloadmupdf-e317abb479109200f2ec489b2868e671a060a585.tar.xz
Remove useless -lpng from doc/example.c and doc/multi-threaded.c
Diffstat (limited to 'doc')
-rw-r--r--doc/example.c2
-rw-r--r--doc/multi-threaded.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/example.c b/doc/example.c
index 45cca2ff..e50d0e21 100644
--- a/doc/example.c
+++ b/doc/example.c
@@ -5,7 +5,7 @@
// gcc -g -o build/debug/example -I fitz doc/example.c \
// build/debug/libfitz.a build/debug/libfreetype.a \
// build/debug/libopenjpeg.a build/debug/libjbig2dec.a \
-// build/debug/libjpeg.a -lpng -lm
+// build/debug/libjpeg.a -lm
//
// build/debug/example /path/to/document.pdf 1 200 25
diff --git a/doc/multi-threaded.c b/doc/multi-threaded.c
index ac250198..c6a3d652 100644
--- a/doc/multi-threaded.c
+++ b/doc/multi-threaded.c
@@ -16,7 +16,7 @@
// gcc -g -o build/debug/example-mt -I fitz doc/multi-threading.c \
// build/debug/libfitz.a build/debug/libfreetype.a \
// build/debug/libopenjpeg.a build/debug/libjbig2dec.a \
-// build/debug/libjpeg.a -lpng -lm -lpthread
+// build/debug/libjpeg.a -lpthread -lm
//
// build/debug/example-mt /path/to/document.pdf
//