finnish upgrade 1.15.1
This commit is contained in:
parent
ace6686182
commit
c2c695c201
25
tar-1.14-loneZeroWarning.patch
Normal file
25
tar-1.14-loneZeroWarning.patch
Normal file
@ -0,0 +1,25 @@
|
||||
--- tar-1.15.1/src/list.c.loneZeroWarning 2004-12-21 14:34:05.000000000 +0000
|
||||
+++ tar-1.15.1/src/list.c 2005-01-07 11:32:39.348691306 +0000
|
||||
@@ -140,6 +140,14 @@
|
||||
|
||||
if (!ignore_zeros_option)
|
||||
{
|
||||
+ /*
|
||||
+ * According to POSIX tar specs, this is wrong, but on the web
|
||||
+ * there are some tar specs that can trigger this, and some tar
|
||||
+ * implementations create tars according to that spec. For now,
|
||||
+ * let's not be pedantic about issuing the warning.
|
||||
+ */
|
||||
+#if 0
|
||||
+
|
||||
char buf[UINTMAX_STRSIZE_BOUND];
|
||||
|
||||
status = read_header (false);
|
||||
@@ -147,6 +155,7 @@
|
||||
break;
|
||||
WARN ((0, 0, _("A lone zero block at %s"),
|
||||
STRINGIFY_BIGINT (current_block_ordinal (), buf)));
|
||||
+#endif
|
||||
break;
|
||||
}
|
||||
status = prev_status;
|
214
tar-1.14-nolibrt.patch
Normal file
214
tar-1.14-nolibrt.patch
Normal file
@ -0,0 +1,214 @@
|
||||
--- tar-1.15.1/configure.nolibrt 2004-12-21 13:30:30.000000000 +0000
|
||||
+++ tar-1.15.1/configure 2005-01-07 11:18:51.878839553 +0000
|
||||
@@ -11470,20 +11470,20 @@
|
||||
# dnl Persuade glibc <time.h> to declare these functions.
|
||||
|
||||
|
||||
- # Solaris 2.5.1 needs -lposix4 to get the clock_gettime function.
|
||||
+ # Solaris 2.5.1 needs -lposix4 to get the clock_gettyme function.
|
||||
# Solaris 7 prefers the library name -lrt to the obsolescent name -lposix4.
|
||||
|
||||
# Save and restore LIBS so e.g., -lrt, isn't added to it. Otherwise, *all*
|
||||
# programs in the package would end up linked with that potentially-shared
|
||||
# library, inducing unnecessary run-time overhead.
|
||||
fetish_saved_libs=$LIBS
|
||||
- echo "$as_me:$LINENO: checking for library containing clock_gettime" >&5
|
||||
-echo $ECHO_N "checking for library containing clock_gettime... $ECHO_C" >&6
|
||||
-if test "${ac_cv_search_clock_gettime+set}" = set; then
|
||||
+ echo "$as_me:$LINENO: checking for library containing clock_gettyme" >&5
|
||||
+echo $ECHO_N "checking for library containing clock_gettyme... $ECHO_C" >&6
|
||||
+if test "${ac_cv_search_clock_gettyme+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
ac_func_search_save_LIBS=$LIBS
|
||||
-ac_cv_search_clock_gettime=no
|
||||
+ac_cv_search_clock_gettyme=no
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
/* confdefs.h. */
|
||||
_ACEOF
|
||||
@@ -11497,11 +11497,11 @@
|
||||
#endif
|
||||
/* We use char because int might match the return type of a gcc2
|
||||
builtin and then its argument prototype would still apply. */
|
||||
-char clock_gettime ();
|
||||
+char clock_gettyme ();
|
||||
int
|
||||
main ()
|
||||
{
|
||||
-clock_gettime ();
|
||||
+clock_gettyme ();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
@@ -11528,7 +11528,7 @@
|
||||
ac_status=$?
|
||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
(exit $ac_status); }; }; then
|
||||
- ac_cv_search_clock_gettime="none required"
|
||||
+ ac_cv_search_clock_gettyme="none required"
|
||||
else
|
||||
echo "$as_me: failed program was:" >&5
|
||||
sed 's/^/| /' conftest.$ac_ext >&5
|
||||
@@ -11536,7 +11536,7 @@
|
||||
fi
|
||||
rm -f conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
-if test "$ac_cv_search_clock_gettime" = no; then
|
||||
+if test "$ac_cv_search_clock_gettyme" = no; then
|
||||
for ac_lib in rt posix4; do
|
||||
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
@@ -11552,11 +11552,11 @@
|
||||
#endif
|
||||
/* We use char because int might match the return type of a gcc2
|
||||
builtin and then its argument prototype would still apply. */
|
||||
-char clock_gettime ();
|
||||
+char clock_gettyme ();
|
||||
int
|
||||
main ()
|
||||
{
|
||||
-clock_gettime ();
|
||||
+clock_gettyme ();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
@@ -11583,7 +11583,7 @@
|
||||
ac_status=$?
|
||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
(exit $ac_status); }; }; then
|
||||
- ac_cv_search_clock_gettime="-l$ac_lib"
|
||||
+ ac_cv_search_clock_gettyme="-l$ac_lib"
|
||||
break
|
||||
else
|
||||
echo "$as_me: failed program was:" >&5
|
||||
@@ -11596,18 +11596,18 @@
|
||||
fi
|
||||
LIBS=$ac_func_search_save_LIBS
|
||||
fi
|
||||
-echo "$as_me:$LINENO: result: $ac_cv_search_clock_gettime" >&5
|
||||
-echo "${ECHO_T}$ac_cv_search_clock_gettime" >&6
|
||||
-if test "$ac_cv_search_clock_gettime" != no; then
|
||||
- test "$ac_cv_search_clock_gettime" = "none required" || LIBS="$ac_cv_search_clock_gettime $LIBS"
|
||||
- test "$ac_cv_search_clock_gettime" = "none required" ||
|
||||
- LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime
|
||||
+echo "$as_me:$LINENO: result: $ac_cv_search_clock_gettyme" >&5
|
||||
+echo "${ECHO_T}$ac_cv_search_clock_gettyme" >&6
|
||||
+if test "$ac_cv_search_clock_gettyme" != no; then
|
||||
+ test "$ac_cv_search_clock_gettyme" = "none required" || LIBS="$ac_cv_search_clock_gettyme $LIBS"
|
||||
+ test "$ac_cv_search_clock_gettyme" = "none required" ||
|
||||
+ LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettyme
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
-for ac_func in clock_gettime clock_settime
|
||||
+for ac_func in clock_gettyme clock_settime
|
||||
do
|
||||
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
||||
@@ -20541,17 +20541,17 @@
|
||||
# programs in the package would end up linked with that potentially-shared
|
||||
# library, inducing unnecessary run-time overhead.
|
||||
|
||||
-# Solaris 2.5.1 needs -lposix4 to get the clock_gettime function.
|
||||
+# Solaris 2.5.1 needs -lposix4 to get the clock_gettyme function.
|
||||
# Solaris 7 prefers the library name -lrt to the obsolescent name -lposix4.
|
||||
tar_save_LIBS=$LIBS
|
||||
LIB_CLOCK_GETTIME=
|
||||
- echo "$as_me:$LINENO: checking for library containing clock_gettime" >&5
|
||||
-echo $ECHO_N "checking for library containing clock_gettime... $ECHO_C" >&6
|
||||
-if test "${ac_cv_search_clock_gettime+set}" = set; then
|
||||
+ echo "$as_me:$LINENO: checking for library containing clock_gettyme" >&5
|
||||
+echo $ECHO_N "checking for library containing clock_gettyme... $ECHO_C" >&6
|
||||
+if test "${ac_cv_search_clock_gettyme+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
ac_func_search_save_LIBS=$LIBS
|
||||
-ac_cv_search_clock_gettime=no
|
||||
+ac_cv_search_clock_gettyme=no
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
/* confdefs.h. */
|
||||
_ACEOF
|
||||
@@ -20565,11 +20565,11 @@
|
||||
#endif
|
||||
/* We use char because int might match the return type of a gcc2
|
||||
builtin and then its argument prototype would still apply. */
|
||||
-char clock_gettime ();
|
||||
+char clock_gettyme ();
|
||||
int
|
||||
main ()
|
||||
{
|
||||
-clock_gettime ();
|
||||
+clock_gettyme ();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
@@ -20596,7 +20596,7 @@
|
||||
ac_status=$?
|
||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
(exit $ac_status); }; }; then
|
||||
- ac_cv_search_clock_gettime="none required"
|
||||
+ ac_cv_search_clock_gettyme="none required"
|
||||
else
|
||||
echo "$as_me: failed program was:" >&5
|
||||
sed 's/^/| /' conftest.$ac_ext >&5
|
||||
@@ -20604,7 +20604,7 @@
|
||||
fi
|
||||
rm -f conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
-if test "$ac_cv_search_clock_gettime" = no; then
|
||||
+if test "$ac_cv_search_clock_gettyme" = no; then
|
||||
for ac_lib in rt posix4; do
|
||||
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
@@ -20620,11 +20620,11 @@
|
||||
#endif
|
||||
/* We use char because int might match the return type of a gcc2
|
||||
builtin and then its argument prototype would still apply. */
|
||||
-char clock_gettime ();
|
||||
+char clock_gettyme ();
|
||||
int
|
||||
main ()
|
||||
{
|
||||
-clock_gettime ();
|
||||
+clock_gettyme ();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
@@ -20651,7 +20651,7 @@
|
||||
ac_status=$?
|
||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
(exit $ac_status); }; }; then
|
||||
- ac_cv_search_clock_gettime="-l$ac_lib"
|
||||
+ ac_cv_search_clock_gettyme="-l$ac_lib"
|
||||
break
|
||||
else
|
||||
echo "$as_me: failed program was:" >&5
|
||||
@@ -20664,19 +20664,19 @@
|
||||
fi
|
||||
LIBS=$ac_func_search_save_LIBS
|
||||
fi
|
||||
-echo "$as_me:$LINENO: result: $ac_cv_search_clock_gettime" >&5
|
||||
-echo "${ECHO_T}$ac_cv_search_clock_gettime" >&6
|
||||
-if test "$ac_cv_search_clock_gettime" != no; then
|
||||
- test "$ac_cv_search_clock_gettime" = "none required" || LIBS="$ac_cv_search_clock_gettime $LIBS"
|
||||
+echo "$as_me:$LINENO: result: $ac_cv_search_clock_gettyme" >&5
|
||||
+echo "${ECHO_T}$ac_cv_search_clock_gettyme" >&6
|
||||
+if test "$ac_cv_search_clock_gettyme" != no; then
|
||||
+ test "$ac_cv_search_clock_gettyme" = "none required" || LIBS="$ac_cv_search_clock_gettyme $LIBS"
|
||||
|
||||
fi
|
||||
|
||||
- case "$ac_cv_search_clock_gettime" in
|
||||
- -l*) LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime;;
|
||||
+ case "$ac_cv_search_clock_gettyme" in
|
||||
+ -l*) LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettyme;;
|
||||
esac
|
||||
|
||||
|
||||
-for ac_func in clock_gettime
|
||||
+for ac_func in clock_gettyme
|
||||
do
|
||||
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
Loading…
Reference in New Issue
Block a user