]> git.pld-linux.org Git - packages/wget.git/commitdiff
- added missing macro
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 13 Jul 2004 21:18:15 +0000 (21:18 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    wget-m4.patch -> 1.2

wget-m4.patch

index 310414c6e152e0a34ea84e8cf29e5e754979fa34..4a432df130074bf22274fa93b8015cc2fc99923f 100644 (file)
@@ -1,7 +1,6 @@
-diff -urN wget-1.9-b5.org/acinclude.m4 wget-1.9-b5/acinclude.m4
---- wget-1.9-b5.org/acinclude.m4       1970-01-01 01:00:00.000000000 +0100
-+++ wget-1.9-b5/acinclude.m4   2003-10-13 00:11:57.000000000 +0200
-@@ -0,0 +1,316 @@
+--- wget-1.9.1/acinclude.m4.orig       1970-01-01 01:00:00.000000000 +0100
++++ wget-1.9.1/acinclude.m4    2004-07-13 23:09:12.390661874 +0200
+@@ -0,0 +1,333 @@
 +dnl
 +dnl Check for `struct utimbuf'.
 +dnl
@@ -48,6 +47,23 @@ diff -urN wget-1.9-b5.org/acinclude.m4 wget-1.9-b5/acinclude.m4
 +  ])
 +])
 +
++dnl Check whether fnmatch.h can be included.  This doesn't use
++dnl AC_FUNC_FNMATCH because Wget is already careful to only use
++dnl fnmatch on certain OS'es.  However, fnmatch.h is sometimes broken
++dnl even on those because Apache installs its own fnmatch.h to
++dnl /usr/local/include (!), which GCC uses before /usr/include.
++
++AC_DEFUN([WGET_FNMATCH], [
++  AC_MSG_CHECKING([for working fnmatch.h])
++  AC_COMPILE_IFELSE([#include <fnmatch.h>
++                    ], [
++    AC_MSG_RESULT(yes)
++    AC_DEFINE(HAVE_WORKING_FNMATCH_H,,[Have working fnmatch.h])
++  ], [
++    AC_MSG_RESULT(no)
++  ])
++])
++
 +
 +dnl ************************************************************
 +dnl START OF IPv6 AUTOCONFIGURATION SUPPORT MACROS
This page took 0.123791 seconds and 4 git commands to generate.