View | Details | Raw Unified | Return to bug 1407 | Differences between
and this patch

Collapse All | Expand All

(-)configure.ac (+1 lines)
Lines 415-420 Link Here
415
	AC_DEFINE(SETEUID_BREAKS_SETUID)
415
	AC_DEFINE(SETEUID_BREAKS_SETUID)
416
	AC_DEFINE(BROKEN_SETREUID)
416
	AC_DEFINE(BROKEN_SETREUID)
417
	AC_DEFINE(BROKEN_SETREGID)
417
	AC_DEFINE(BROKEN_SETREGID)
418
	AC_DEFINE(BROKEN_GLOB, 1, [OS X glob does not do what we expect])
418
	AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
419
	AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
419
		[Define if your resolver libs need this for getrrsetbyname])
420
		[Define if your resolver libs need this for getrrsetbyname])
420
	AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
421
	AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
(-)openbsd-compat/glob.c (-1 / +2 lines)
Lines 48-54 Link Here
48
48
49
#if !defined(HAVE_GLOB) || !defined(GLOB_HAS_ALTDIRFUNC) || \
49
#if !defined(HAVE_GLOB) || !defined(GLOB_HAS_ALTDIRFUNC) || \
50
    !defined(GLOB_HAS_GL_MATCHC) || \
50
    !defined(GLOB_HAS_GL_MATCHC) || \
51
    !defined(HAVE_DECL_GLOB_NOMATCH) || HAVE_DECL_GLOB_NOMATCH == 0
51
    !defined(HAVE_DECL_GLOB_NOMATCH) || HAVE_DECL_GLOB_NOMATCH == 0 || \
52
    defined(BROKEN_GLOB)
52
53
53
static long
54
static long
54
get_arg_max(void)
55
get_arg_max(void)
(-)openbsd-compat/glob.h (-1 / +2 lines)
Lines 39-45 Link Here
39
39
40
#if !defined(HAVE_GLOB_H) || !defined(GLOB_HAS_ALTDIRFUNC) || \
40
#if !defined(HAVE_GLOB_H) || !defined(GLOB_HAS_ALTDIRFUNC) || \
41
    !defined(GLOB_HAS_GL_MATCHC) || \
41
    !defined(GLOB_HAS_GL_MATCHC) || \
42
    !defined(HAVE_DECL_GLOB_NOMATCH) || HAVE_DECL_GLOB_NOMATCH == 0
42
    !defined(HAVE_DECL_GLOB_NOMATCH) || HAVE_DECL_GLOB_NOMATCH == 0 || \
43
    defined(BROKEN_GLOB)
43
44
44
#ifndef _GLOB_H_
45
#ifndef _GLOB_H_
45
#define	_GLOB_H_
46
#define	_GLOB_H_

Return to bug 1407