pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: pkg/34956
The following reply was made to PR pkg/34956; it has been noted by GNATS.
From: cheusov%tut.by@localhost
To: gnats-bugs%NetBSD.org@localhost
Cc:
Subject: Re: pkg/34956
Date: Sun, 04 Dec 2011 19:02:44 +0300
security/heimdal package now installs
PREFIX/include/krb5/roken/glob.h
PREFIX/include/krb5/roken/vis.h
headers. Note that they are not under ${PREFIX}/include/krb5.
This happens for the following reasons.
Autoconf test for glob defines fails.
conftest.c:123: error: 'GLOB_QUOTE' undeclared (first use in this function)
conftest.c:123: error: (Each undeclared identifier is reported only once
conftest.c:123: error: for each function it appears in.)
conftest.c:127: error: 'GLOB_LIMIT' undeclared (first use in this function)
The test code is
#include <stdio.h>
#include <glob.h>
<a lot of defines here>
int
main ()
{
glob(NULL, GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE|
#ifdef GLOB_MAXPATH
GLOB_MAXPATH
#else
GLOB_LIMIT
#endif
,
NULL, NULL);
;
return 0;
}
Neither GLOB_QUOTE nor GLOB_LIMIT is provided by glibc (v2.7).
GLOB_MAXPATH is also not provided.
Can anybody explain what kind of problems
${PREFIX}/include/krb5/roken/glob.h may cause? kdeadmin3 in my bulk
builds succeeded, kdeadmin4 fails due to broken ffmpeg.
Home |
Main Index |
Thread Index |
Old Index