# HG changeset patch # User compn # Date 1173023300 0 # Node ID 56518bb5e79c14a92d4633426f7e398af8b015b3 # Parent c0b8721ebf0dc3b3f716ff86a9f371740ff59136 getopt is only needed on msvc, remove from mingw/linux compile info diff -r c0b8721ebf0d -r 56518bb5e79c TOOLS/vfw2menc.c --- a/TOOLS/vfw2menc.c Sun Mar 04 15:47:11 2007 +0000 +++ b/TOOLS/vfw2menc.c Sun Mar 04 15:48:20 2007 +0000 @@ -20,8 +20,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -/* On mingw compile with: gcc getopt.c vfw2menc.c -o vfw2menc.exe -lwinmm -lole32 */ -/* Using wine: winegcc getopt.c vfw2menc.c -o vfw2menc -lwinmm -lole32 */ +/* On MinGW compile with: gcc vfw2menc.c -o vfw2menc.exe -lwinmm -lole32 */ +/* Using Wine: winegcc vfw2menc.c -o vfw2menc -lwinmm -lole32 */ +/* MSVC requires getopt.c and getopt.h available at the original website */ #ifdef _MSC_VER #define _CRT_SECURE_NO_DEPRECATE