aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/puzzles/files
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2015-07-08 17:30:52 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-16 17:28:12 +0100
commite95e6b0bdfe1bc9b71af82e3be260300232bb77e (patch)
tree0a60a8f4aa7c47c7aa024e62a101bf45f4f453db /meta/recipes-sato/puzzles/files
parentda42bb17aff90f5c6da04b34225aab4d76ab8654 (diff)
downloadopenembedded-core-e95e6b0bdfe1bc9b71af82e3be260300232bb77e.tar.gz
puzzles: switch svn for git, as upstream has done the same
Also, drop puzzles_x32_abi_time.patch as it has been merged upstream Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-sato/puzzles/files')
-rw-r--r--meta/recipes-sato/puzzles/files/puzzles_x32_abi_time.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-sato/puzzles/files/puzzles_x32_abi_time.patch b/meta/recipes-sato/puzzles/files/puzzles_x32_abi_time.patch
deleted file mode 100644
index 63ab0b888d..0000000000
--- a/meta/recipes-sato/puzzles/files/puzzles_x32_abi_time.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Fix printf's for time_t value add castings because ISOC90
-don't support long long int that is used in x32 ABI for
-time_t.
-
-Upstream-Status: Backport
-
-Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
-
---- a/magnets.c 2015-03-15 11:57:39.106674811 +0000
-+++ b/magnets.c 2015-03-15 11:57:58.638674795 +0000
-@@ -2562,7 +2562,7 @@
- goto done;
- }
- s = new_game(NULL, p, desc);
-- printf("%s:%s (seed %ld)\n", id, desc, seed);
-+ printf("%s:%s (seed %ld)\n", id, desc, (long) seed);
- if (aux) {
- /* We just generated this ourself. */
- if (verbose || print) {
---- a/signpost.c 2015-03-15 11:58:52.866674751 +0000
-+++ b/signpost.c 2015-03-15 11:59:08.190674738 +0000
-@@ -2393,7 +2393,7 @@
- }
- }
-
-- sprintf(newseed, "%lu", time(NULL));
-+ sprintf(newseed, "%lu", (unsigned long) time(NULL));
- seedstr = dupstr(newseed);
-
- if (id || !stdin_desc) {