]> git.pld-linux.org Git - packages/wget.git/commitdiff
- updated
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 12 Oct 2003 21:57:50 +0000 (21:57 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    wget-ac.patch -> 1.6

wget-ac.patch

index 1d29967bf7c6295ecb6486f8e33617b2e6c2d51b..b29ebdbdb6aa172a3b9b15c29e1cba697b45d52f 100644 (file)
@@ -1,6 +1,18 @@
-diff -urN wget-1.9-beta3.org/configure.in wget-1.9-beta3/configure.in
---- wget-1.9-beta3.org/configure.in    2003-10-03 12:07:14.000000000 +0200
-+++ wget-1.9-beta3/configure.in        2003-10-03 12:15:57.000000000 +0200
+diff -urN wget-1.9-b5.org/aclocal.m4 wget-1.9-b5/aclocal.m4
+--- wget-1.9-b5.org/aclocal.m4 2003-10-12 23:55:54.000000000 +0200
++++ wget-1.9-b5/aclocal.m4     2003-10-12 23:56:04.000000000 +0200
+@@ -7,7 +7,7 @@
+ if test x"$ac_cv_header_utime_h" = xyes; then
+   AC_EGREP_CPP([struct[       ]+utimbuf],
+     [#include <utime.h>],
+-    [AC_DEFINE(HAVE_STRUCT_UTIMBUF)
++    [AC_DEFINE(HAVE_STRUCT_UTIMBUF,,[Have struct utimbuf])
+       AC_MSG_RESULT(yes)],
+     AC_MSG_RESULT(no))
+ else
+diff -urN wget-1.9-b5.org/configure.in wget-1.9-b5/configure.in
+--- wget-1.9-b5.org/configure.in       2003-10-12 23:55:54.000000000 +0200
++++ wget-1.9-b5/configure.in   2003-10-12 23:57:18.000000000 +0200
 @@ -46,14 +46,14 @@
  dnl Get cannonical host
  dnl
@@ -33,13 +45,13 @@ diff -urN wget-1.9-beta3.org/configure.in wget-1.9-beta3/configure.in
  
  AC_ARG_ENABLE(debug,
  [  --disable-debug         disable support for debugging output],
DEBUG=$enableval, DEBUG=yes)
--test x"${DEBUG}" = xyes && AC_DEFINE(DEBUG)
-+test x"${DEBUG}" = xyes && AC_DEFINE(DEBUG,,[Support for debugging output])
ENABLE_DEBUG=$enableval, ENABLE_DEBUG=yes)
+-test x"${ENABLE_DEBUG}" = xyes && AC_DEFINE(ENABLE_DEBUG)
++test x"${ENABLE_DEBUG}" = xyes && AC_DEFINE(DEBUG,,[Support for debugging output])
  
  wget_need_md5=no
  
-@@ -374,7 +374,7 @@
+@@ -382,7 +382,7 @@
      dnl AC_MSG_RESULT doesn't look right here, but I'm not sure what
      dnl to use instead.
      AC_MSG_RESULT([Compiling in support for SSL in $ssl_root])
@@ -48,7 +60,7 @@ diff -urN wget-1.9-beta3.org/configure.in wget-1.9-beta3/configure.in
      AC_SUBST(SSL_INCLUDES)
      SSL_OBJ='gen_sslfunc$o'
      AC_SUBST(SSL_OBJ)
-@@ -416,7 +416,7 @@
+@@ -424,7 +424,7 @@
    dnl specific to the Solaris MD5 library.
    if test x"$found_md5" = xno; then
      AC_CHECK_LIB(md5, md5_calc, [
@@ -57,7 +69,7 @@ diff -urN wget-1.9-beta3.org/configure.in wget-1.9-beta3/configure.in
        LIBS="-lmd5 $LIBS"
        found_md5=yes
      ])
-@@ -426,19 +426,19 @@
+@@ -434,19 +434,19 @@
    dnl implementation.
    if test x"$found_md5" = xno; then
      if test x"$ssl_success" = xyes; then
@@ -80,7 +92,7 @@ diff -urN wget-1.9-beta3.org/configure.in wget-1.9-beta3/configure.in
  AC_SUBST(MD5_OBJ)
  
  dnl **********************************************************************
-@@ -522,7 +522,7 @@
+@@ -530,7 +530,7 @@
  dnl new language was added.
  
  dnl internationalization macros
@@ -89,9 +101,9 @@ diff -urN wget-1.9-beta3.org/configure.in wget-1.9-beta3/configure.in
  
  dnl
  dnl Find makeinfo.  If makeinfo is not found, look for Emacs.  If
-diff -urN wget-1.9-beta3.org/src/main.c wget-1.9-beta3/src/main.c
---- wget-1.9-beta3.org/src/main.c      2003-10-03 12:07:14.000000000 +0200
-+++ wget-1.9-beta3/src/main.c  2003-10-03 12:07:21.000000000 +0200
+diff -urN wget-1.9-b5.org/src/main.c wget-1.9-b5/src/main.c
+--- wget-1.9-b5.org/src/main.c 2003-10-12 23:55:54.000000000 +0200
++++ wget-1.9-b5/src/main.c     2003-10-12 23:56:04.000000000 +0200
 @@ -44,11 +44,11 @@
  #ifdef HAVE_SIGNAL_H
  # include <signal.h>
@@ -104,8 +116,8 @@ diff -urN wget-1.9-beta3.org/src/main.c wget-1.9-beta3/src/main.c
 -#endif /* HAVE_NLS */
 +#endif /* ENABLE_NLS */
  #include <errno.h>
- #include "wget.h"
+ #ifndef errno
+ extern int errno;
 @@ -98,9 +98,9 @@
  static void
  i18n_initialize (void)
@@ -127,10 +139,10 @@ diff -urN wget-1.9-beta3.org/src/main.c wget-1.9-beta3/src/main.c
  }
  \f
  /* Print the usage message.  */
-diff -urN wget-1.9-beta3.org/src/wget.h wget-1.9-beta3/src/wget.h
---- wget-1.9-beta3.org/src/wget.h      2003-10-03 12:07:14.000000000 +0200
-+++ wget-1.9-beta3/src/wget.h  2003-10-03 12:07:21.000000000 +0200
-@@ -53,14 +53,12 @@
+diff -urN wget-1.9-b5.org/src/wget.h wget-1.9-b5/src/wget.h
+--- wget-1.9-b5.org/src/wget.h 2003-10-12 23:55:54.000000000 +0200
++++ wget-1.9-b5/src/wget.h     2003-10-12 23:56:04.000000000 +0200
+@@ -54,14 +54,12 @@
  
  /* `gettext (FOO)' is long to write, so we use `_(FOO)'.  If NLS is
     unavailable, _(STRING) simply returns STRING.  */
@@ -148,14 +160,3 @@ diff -urN wget-1.9-beta3.org/src/wget.h wget-1.9-beta3/src/wget.h
  
  /* No-op version of gettext, used for constant strings. */
  #define N_(string) (string)
---- wget-1.9-beta4/aclocal.m4.orig     2003-10-04 00:24:48.000000000 +0200
-+++ wget-1.9-beta4/aclocal.m4  2003-10-12 22:06:14.533208184 +0200
-@@ -79,7 +79,7 @@
- if test x"$ac_cv_header_utime_h" = xyes; then
-   AC_EGREP_CPP([struct[       ]+utimbuf],
-     [#include <utime.h>],
--    [AC_DEFINE(HAVE_STRUCT_UTIMBUF)
-+    [AC_DEFINE(HAVE_STRUCT_UTIMBUF,,[Have struct utimbuf])
-       AC_MSG_RESULT(yes)],
-     AC_MSG_RESULT(no))
- else
This page took 0.09702 seconds and 4 git commands to generate.