gif2webp.c: add a note about prerequisites

Change-Id: I25a88f13b0c38c5968b5c4a3be0955e18e990723
This commit is contained in:
James Zern 2012-11-15 22:31:55 -08:00
parent d1edf697b2
commit 540790ca6b

View File

@ -7,6 +7,15 @@
// //
// simple tool to convert animated GIFs to WebP // simple tool to convert animated GIFs to WebP
// //
// Getting the prerequisites:
// Debian-like linux:
// sudo apt-get install libgif-dev
// MacPorts
// sudo port install giflib
//
// Compiling:
// gcc -o gif2webp gif2webp.c -O3 -lwebpmux -lwebp -lgif -lpthread -lm
//
// Authors: Skal (pascal.massimino@gmail.com) // Authors: Skal (pascal.massimino@gmail.com)
// Urvang (urvang@google.com) // Urvang (urvang@google.com)