forked from pool/timezone
refresh patches
OBS-URL: https://build.opensuse.org/package/show/Base:System/timezone?expand=0&rev=91
This commit is contained in:
parent
077ae019d7
commit
11f43c79b2
@ -1,6 +1,8 @@
|
|||||||
--- iso3166.tab~ 2009-09-15 00:34:18.941351000 +0200
|
Index: iso3166.tab
|
||||||
+++ iso3166.tab 2009-09-15 00:34:31.010318000 +0200
|
===================================================================
|
||||||
@@ -98,7 +98,7 @@
|
--- iso3166.tab.orig
|
||||||
|
+++ iso3166.tab
|
||||||
|
@@ -101,7 +101,7 @@ FM Micronesia
|
||||||
FO Faroe Islands
|
FO Faroe Islands
|
||||||
FR France
|
FR France
|
||||||
GA Gabon
|
GA Gabon
|
||||||
|
@ -2,7 +2,7 @@ Index: Makefile
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- Makefile.orig
|
--- Makefile.orig
|
||||||
+++ Makefile
|
+++ Makefile
|
||||||
@@ -376,6 +376,7 @@ date: $(DATEOBJS)
|
@@ -385,6 +385,7 @@ date: $(DATEOBJS)
|
||||||
|
|
||||||
tzselect: tzselect.ksh
|
tzselect: tzselect.ksh
|
||||||
sed \
|
sed \
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
Index: timezone-2012e/zic.c
|
Index: timezone-2012h/zic.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- timezone-2012e.orig/zic.c
|
--- timezone-2012h.orig/zic.c
|
||||||
+++ timezone-2012e/zic.c
|
+++ timezone-2012h/zic.c
|
||||||
@@ -113,7 +113,7 @@ static void associate(void);
|
@@ -110,7 +110,7 @@ static int addtype(long gmtoff, const ch
|
||||||
static int ciequal(const char * ap, const char * bp);
|
static void leapadd(zic_t t, int positive, int rolling, int count);
|
||||||
static void convert(long val, char * buf);
|
static void adjleap(void);
|
||||||
static void convert64(zic_t val, char * buf);
|
static void associate(void);
|
||||||
-static void dolink(const char * fromfield, const char * tofield);
|
-static void dolink(const char * fromfield, const char * tofield);
|
||||||
+static void dolink(const char * fromfield, const char * tofield, int defaultsymlink);
|
+static void dolink(const char * fromfield, const char * tofield, int defaultsymlink);
|
||||||
static void doabbr(char * abbr, const char * format,
|
static long eitol(int i);
|
||||||
const char * letters, int isdst, int doquotes);
|
static char ** getfields(char * buf);
|
||||||
static void eat(const char * name, int num);
|
static long gethms(const char * string, const char * errstrng,
|
||||||
@@ -595,7 +595,7 @@ _("%s: More than one -L option specified
|
@@ -558,7 +558,7 @@ _("%s: More than one -L option specified
|
||||||
*/
|
*/
|
||||||
for (i = 0; i < nlinks; ++i) {
|
for (i = 0; i < nlinks; ++i) {
|
||||||
eat(links[i].l_filename, links[i].l_linenum);
|
eat(links[i].l_filename, links[i].l_linenum);
|
||||||
@ -20,7 +20,7 @@ Index: timezone-2012e/zic.c
|
|||||||
if (noise)
|
if (noise)
|
||||||
for (j = 0; j < nlinks; ++j)
|
for (j = 0; j < nlinks; ++j)
|
||||||
if (strcmp(links[i].l_to,
|
if (strcmp(links[i].l_to,
|
||||||
@@ -604,19 +604,20 @@ _("%s: More than one -L option specified
|
@@ -567,17 +567,17 @@ _("%s: More than one -L option specified
|
||||||
}
|
}
|
||||||
if (lcltime != NULL) {
|
if (lcltime != NULL) {
|
||||||
eat("command line", 1);
|
eat("command line", 1);
|
||||||
@ -36,15 +36,12 @@ Index: timezone-2012e/zic.c
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
-dolink(fromfield, tofield)
|
-dolink(const char *const fromfield, const char *const tofield)
|
||||||
+dolink(fromfield, tofield, defaultsymlink)
|
+dolink(const char *const fromfield, const char *const tofield, int defaultsymlink)
|
||||||
const char * const fromfield;
|
|
||||||
const char * const tofield;
|
|
||||||
+const int defaultsymlink;
|
|
||||||
{
|
{
|
||||||
register char * fromname;
|
register char * fromname;
|
||||||
register char * toname;
|
register char * toname;
|
||||||
@@ -641,15 +642,16 @@ const char * const tofield;
|
@@ -602,15 +602,16 @@ dolink(const char *const fromfield, cons
|
||||||
*/
|
*/
|
||||||
if (!itsdir(toname))
|
if (!itsdir(toname))
|
||||||
(void) remove(toname);
|
(void) remove(toname);
|
||||||
|
@ -2,14 +2,15 @@ Index: zic.c
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- zic.c.orig
|
--- zic.c.orig
|
||||||
+++ zic.c
|
+++ zic.c
|
||||||
@@ -665,8 +665,10 @@ const char * const tofield;
|
@@ -625,8 +625,10 @@ dolink(const char *const fromfield, cons
|
||||||
fromname);
|
fromname);
|
||||||
result = symlink(symlinkcontents,
|
result = symlink(symlinkcontents,
|
||||||
toname);
|
toname);
|
||||||
+#if 0
|
+#if 0
|
||||||
if (result == 0)
|
if (result == 0)
|
||||||
warning(_("hard link failed, symbolic link used"));
|
-warning(_("hard link failed, symbolic link used"));
|
||||||
|
+ warning(_("hard link failed, symbolic link used"));
|
||||||
+#endif
|
+#endif
|
||||||
ifree(symlinkcontents);
|
free(symlinkcontents);
|
||||||
}
|
}
|
||||||
#endif /* HAVE_SYMLINK */
|
#endif /* HAVE_SYMLINK */
|
||||||
|
@ -2,7 +2,7 @@ Index: asia
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- asia.orig
|
--- asia.orig
|
||||||
+++ asia
|
+++ asia
|
||||||
@@ -531,6 +531,9 @@ Zone Asia/Kashgar 5:03:56 - LMT 1928 # o
|
@@ -547,6 +547,9 @@ Zone Asia/Kashgar 5:03:56 - LMT 1928 # o
|
||||||
# The Japanese surrender of Hong Kong was signed 1945-09-15.
|
# The Japanese surrender of Hong Kong was signed 1945-09-15.
|
||||||
# For lack of anything better, use start of those days as the transition times.
|
# For lack of anything better, use start of those days as the transition times.
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ Index: backward
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- backward.orig
|
--- backward.orig
|
||||||
+++ backward
|
+++ backward
|
||||||
@@ -88,14 +88,13 @@ Link America/Mexico_City Mexico/General
|
@@ -87,14 +87,13 @@ Link America/Mexico_City Mexico/General
|
||||||
Link Pacific/Auckland NZ
|
Link Pacific/Auckland NZ
|
||||||
Link Pacific/Chatham NZ-CHAT
|
Link Pacific/Chatham NZ-CHAT
|
||||||
Link America/Denver Navajo
|
Link America/Denver Navajo
|
||||||
|
Loading…
x
Reference in New Issue
Block a user