New commits:
commit 90d9baecfd9df6260f58f7e7b18faea1c2c6c066
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
zsnes: Source tarball regenerated with some code cleanups
Updated gcc43.patch to the new constness change in main()
-int main(size_t argc, const char **argv)
+int main(size_t argc, const char *const *const argv)
{
const char *cheader_file = 0;
bool compile = false;
@@ -1880,7 +1874,7 @@
<< "\n"
<< "Options:\n"
<< "\n"
- << " -Ddefine Define a processor director. Example:
-D__MSDOS__\n"
+ << " -Ddefine Define a processor director. Example:
-D__WIN32__\n"
<< " Can specify multiple defines.\n"
<< "\n"
<< " -cheader Create a C/C++ header with the following
name.\n"
diff -Naur zsnes-old/zsnes_1_51/src/tools/archopt.c
zsnes-new/zsnes_1_51/src/tools/archopt.c
--- zsnes-old/zsnes_1_51/src/tools/archopt.c 2006-12-28
21:50:31.000000000 -0800
+++ zsnes-new/zsnes_1_51/src/tools/archopt.c 2007-10-30
21:30:35.000000000 -0700
@@ -1,8 +1,30 @@
+/*
+Copyright (C) 2005-2007 Nach, grinvader ( http://www.zsnes.com )
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+version 2 as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>