diff options
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh_6.5p1.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh_6.5p1.bb b/meta/recipes-connectivity/openssh/openssh_6.5p1.bb index 6c413afd45..3496b4d878 100644 --- a/meta/recipes-connectivity/openssh/openssh_6.5p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_6.5p1.bb | |||
@@ -61,6 +61,12 @@ EXTRA_OECONF = "${@base_contains('DISTRO_FEATURES', 'pam', '--with-pam', '--with | |||
61 | --sysconfdir=${sysconfdir}/ssh \ | 61 | --sysconfdir=${sysconfdir}/ssh \ |
62 | --with-xauth=/usr/bin/xauth" | 62 | --with-xauth=/usr/bin/xauth" |
63 | 63 | ||
64 | # Since we do not depend on libbsd, we do not want configure to use it | ||
65 | # just because it finds libutil.h. But, specifying --disable-libutil | ||
66 | # causes compile errors, so... | ||
67 | # | ||
68 | CACHED_CONFIGUREVARS += "ac_cv_header_bsd_libutil_h=no ac_cv_header_libutil_h=no" | ||
69 | |||
64 | # This is a workaround for uclibc because including stdio.h | 70 | # This is a workaround for uclibc because including stdio.h |
65 | # pulls in pthreads.h and causes conflicts in function prototypes. | 71 | # pulls in pthreads.h and causes conflicts in function prototypes. |
66 | # This results in compilation failure, so unless this is fixed, | 72 | # This results in compilation failure, so unless this is fixed, |