]> andersk Git - openssh.git/commitdiff
- (dtucker) [includes.h] Bug #1634: do not include system glob.h if we're not
authordtucker <dtucker>
Thu, 20 Aug 2009 06:16:01 +0000 (06:16 +0000)
committerdtucker <dtucker>
Thu, 20 Aug 2009 06:16:01 +0000 (06:16 +0000)
   using it since the type conflicts can cause problems on FreeBSD.  Patch
   from Jonathan Chen.

ChangeLog
includes.h

index 61ba1ed7bd87f5c19a3c85d1ba4a9c716285a554..056240f390c25f0366b3418f6c4a67fd75c0901d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+20090820
+ - (dtucker) [includes.h] Bug #1634: do not include system glob.h if we're not
+   using it since the type conflicts can cause problems on FreeBSD.  Patch
+   from Jonathan Chen.
+
 20090817
  - (dtucker) [configure.ac] Check for headers before libraries for openssl an
    zlib, which should make the errors slightly more meaningful on platforms
index f1b47f666d038b69aa98721b4d455b6094a48210..6bb98780729c8c7e1d1e3ae2b2077a58711e5d6a 100644 (file)
@@ -31,7 +31,8 @@
 #endif
 #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
     defined(GLOB_HAS_GL_MATCHC) && \
-    defined(HAVE_DECL_GLOB_NOMATCH) &&  HAVE_DECL_GLOB_NOMATCH != 0
+    defined(HAVE_DECL_GLOB_NOMATCH) &&  HAVE_DECL_GLOB_NOMATCH != 0 && \
+    !defined(BROKEN_GLOB)
 # include <glob.h>
 #endif
 #ifdef HAVE_ENDIAN_H
This page took 0.12709 seconds and 5 git commands to generate.