diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-10-25 11:37:29 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-10-25 11:37:29 +0800 |
commit | e934b106497f17545e236bb9644bed935cd118ad (patch) | |
tree | 29839e0cbcfadbf35eac8fc26b9ad2afe1301370 /emulators/gsnes9x/files | |
parent | 14c9f603eb5d9868d374e46ac865925da109a838 (diff) | |
download | marcuscom-ports-e934b106497f17545e236bb9644bed935cd118ad.tar marcuscom-ports-e934b106497f17545e236bb9644bed935cd118ad.tar.gz marcuscom-ports-e934b106497f17545e236bb9644bed935cd118ad.tar.bz2 marcuscom-ports-e934b106497f17545e236bb9644bed935cd118ad.tar.lz marcuscom-ports-e934b106497f17545e236bb9644bed935cd118ad.tar.xz marcuscom-ports-e934b106497f17545e236bb9644bed935cd118ad.tar.zst marcuscom-ports-e934b106497f17545e236bb9644bed935cd118ad.zip |
Remove these now that they have been committed to the FreeBSD ports tree.
Next stop GNOME 2.21.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9875 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'emulators/gsnes9x/files')
-rw-r--r-- | emulators/gsnes9x/files/patch-aa | 46 | ||||
-rw-r--r-- | emulators/gsnes9x/files/patch-ab | 38 |
2 files changed, 0 insertions, 84 deletions
diff --git a/emulators/gsnes9x/files/patch-aa b/emulators/gsnes9x/files/patch-aa deleted file mode 100644 index 07efe2dcc..000000000 --- a/emulators/gsnes9x/files/patch-aa +++ /dev/null @@ -1,46 +0,0 @@ ---- src/util.c.orig Sun Jun 18 17:34:30 2000 -+++ src/util.c Sun Jun 18 18:06:56 2000 -@@ -79,7 +79,7 @@ - if (!names) - return list; - -- getline (&str, &size, names); -+ fgets (str, size, names); - str[strlen (str)-1] = '\0'; /* Rip out the '\n'. */ - - while (!feof (names)) { -@@ -102,7 +102,7 @@ - if (rom_info) - list = g_list_prepend (list, (gpointer)rom_info); - -- getline (&str, &size, names); -+ fgets (str, size, names); - str[strlen(str)-1] = '\0'; - } - -@@ -314,7 +314,7 @@ - if (!file) - return list; - -- getline (&str, &size, file); -+ fgets (str, size, file); - str[strlen (str)-1] = '\0'; /* Rip out '\n' */ - if (!strcmp (str, "")) - return list; -@@ -322,13 +322,13 @@ - do { - cheat_code = g_new (CheatCode, 1); - cheat_code->code = g_strdup (str); -- getline (&str, &size, file); -+ fgets (str, size, file); - str[strlen (str)-1] = '\0'; /* Rip out '\n' */ - cheat_code->name = g_strdup (str); -- getline (&str, &size, file); -+ fgets (str, size, file); - str[strlen (str)-1] = '\0'; /* Rip out '\n' */ - cheat_code->descr = g_strdup (str); -- getline (&str, &size, file); -+ fgets (str, size, file); - - if (strcmp (str, cheat_code->descr)) - str[strlen (str)-1] = '\0'; /* Rip out '\n' */ diff --git a/emulators/gsnes9x/files/patch-ab b/emulators/gsnes9x/files/patch-ab deleted file mode 100644 index 235c38fd8..000000000 --- a/emulators/gsnes9x/files/patch-ab +++ /dev/null @@ -1,38 +0,0 @@ ---- src/confiles.c.orig Sun Jun 18 17:34:23 2000 -+++ src/confiles.c Sun Jun 18 18:06:27 2000 -@@ -81,7 +81,7 @@ - file = fopen (conf, "r"); - } - -- getline (&str, &size, file); -+ fgets (str, size, file); - str[strlen (str)-1] = '\0'; - - while (!feof (file)) { -@@ -142,7 +142,7 @@ - } - } - -- getline (&str, &size, file); -+ fgets (str, size, file); - str[strlen (str)-1] = '\0'; - - if (lval) -@@ -179,7 +179,7 @@ - return NULL; - } - -- getline (&str, &size, file); -+ fgets (str, size, file); - str[strlen (str)-1] = '\0'; - - while (!feof (file)) { -@@ -237,7 +237,7 @@ - } - } - -- getline (&str, &size, file); -+ fgets (str, size, file); - str[strlen (str)-1] = '\0'; - - if (lval) |