Step 2: base dep: security/heimdal

This commit is contained in:
2014-04-17 14:14:14 +02:00
committed by Lionel Sambuc
parent 3d6156f80c
commit 34636dae25
6 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
$NetBSD$
--- lib/ipc/common.c.orig Tue Jan 10 21:53:51 2012
+++ lib/ipc/common.c
@@ -91,7 +91,7 @@ _heim_ipc_create_cred(uid_t uid, gid_t gid, pid_t pid,
return 0;
}
-#ifndef HAVE_GCD
+#if !defined(HAVE_GCD) && defined(ENABLE_PTHREAD_SUPPORT)
struct heim_isemaphore {
HEIMDAL_MUTEX mutex;
pthread_cond_t cond;

View File

@@ -0,0 +1,16 @@
$NetBSD$
--- lib/krb5/get_addrs.c.orig Tue Jan 10 21:53:51 2012
+++ lib/krb5/get_addrs.c
@@ -189,9 +189,11 @@ find_all_addresses (krb5_context context, krb5_address
continue;
if (!krb5_sockaddr_is_loopback(ifa->ifa_addr))
continue;
+#ifdef IFF_LOOPBACK
if ((ifa->ifa_flags & IFF_LOOPBACK) == 0)
/* Presumably loopback addrs are only used on loopback ifs! */
continue;
+#endif
ret = krb5_sockaddr2address(context,
ifa->ifa_addr, &res->val[idx]);
if (ret)

View File

@@ -0,0 +1,57 @@
--- configure.orig Fri Apr 24 21:20:55 2015
+++ configure Fri Apr 24 21:27:45 2015
@@ -5210,7 +5210,7 @@
lt_cv_sys_max_cmd_len=8192;
;;
- netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
+ minix* | netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
# This has been around since 386BSD, at least. Likely further.
if test -x /sbin/sysctl; then
lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
@@ -5702,7 +5702,7 @@
lt_cv_deplibs_check_method=pass_all
;;
-netbsd*)
+minix* | netbsd*)
if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
else
@@ -9130,7 +9130,7 @@
fi
;;
- netbsd*)
+ minix* | netbsd*)
if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
wlarc=
@@ -9763,7 +9763,7 @@
link_all_deplibs=yes
;;
- netbsd*)
+ minix* | netbsd*)
if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
else
@@ -10797,6 +10797,18 @@
# people can always --disable-shared, the test was removed, and we
# assume the GNU/Linux dynamic linker is in use.
dynamic_linker='GNU/Linux ld.so'
+ ;;
+
+minix*)
+ version_type=sunos
+ need_lib_prefix=no
+ need_version=no
+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
+ soname_spec='${libname}${release}${shared_ext}$major'
+ dynamic_linker='Minix ld.elf_so'
+ shlibpath_var=LD_LIBRARY_PATH
+ shlibpath_overrides_runpath=yes
+ hardcode_into_libs=yes
;;
netbsd*)

View File

@@ -0,0 +1 @@
Binary files lib/ipc/server.c.orig and lib/ipc/server.c differ