[MPlayer-cvslog] r22457 - trunk/TOOLS/vfw2menc.c
compn
subversion at mplayerhq.hu
Sun Mar 4 16:48:20 CET 2007
Author: compn
Date: Sun Mar 4 16:48:20 2007
New Revision: 22457
Modified:
trunk/TOOLS/vfw2menc.c
Log:
getopt is only needed on msvc, remove from mingw/linux compile info
Modified: trunk/TOOLS/vfw2menc.c
==============================================================================
--- trunk/TOOLS/vfw2menc.c (original)
+++ trunk/TOOLS/vfw2menc.c Sun Mar 4 16:48:20 2007
@@ -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
More information about the MPlayer-cvslog
mailing list