diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2018-03-17 09:14:09 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2018-03-17 09:14:09 +0000 |
commit | 1301d18baf6bfd7330e13cf844486b468b0698e0 (patch) | |
tree | 2c5bb439727c73ec0962ce3d2f8782f4c0e09fc6 /databases/recutils | |
parent | 37f87e1684a62fea2d38e6dadba54345797aff5c (diff) |
Skip ENOMEM check for printf when building with qemu, this makes
configure hang
PR: 224740
Reported by: pkg-fallout
MFH: 2018Q1
Notes
Notes:
svn path=/head/; revision=464772
Diffstat (limited to 'databases/recutils')
-rw-r--r-- | databases/recutils/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/databases/recutils/Makefile b/databases/recutils/Makefile index 303398999d58..d40395d11863 100644 --- a/databases/recutils/Makefile +++ b/databases/recutils/Makefile @@ -14,6 +14,10 @@ LICENSE= GPLv3 USES= charsetfix libtool makeinfo GNU_CONFIGURE= yes +.ifdef QEMU_EMULATING +# XXX bug 224740: configure hangs +CONFIGURE_ENV= gl_cv_func_printf_enomem=no +.endif USE_LDCONFIG= yes INFO= rec-mode recutils |