Bug 69037
| Summary: | Spec file misses some BuildPreReq | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Raw Hide | Reporter: | Peter Bieringer <pb> |
| Component: | openssh | Assignee: | Tomas Mraz <tmraz> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Brian Brock <bbrock> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 1.0 | CC: | anvil, carenas |
| Target Milestone: | --- | Keywords: | FutureFeature |
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Enhancement | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2005-02-04 15:44:17 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Peter Bieringer
2002-07-17 12:14:43 UTC
on spec from rawhide's package openssh-3.5p1-2.src.rpm, there is an :
%if %{kerberos5}
BuildPreReq: krb5-devel
%endif
that works for the krb5-devel BuildPrereq
on the openssh-3.5p1's configure.ac the need for a working zlib development
environment is clear, as shown on the following snippet :
AC_ARG_WITH(zlib,
[ --with-zlib=PATH Use zlib in PATH],
[
if test "x$withval" = "xno" ; then
AC_MSG_ERROR([*** zlib is required ***])
fi
...
adding zlib-devel to the BuildPrereq list of packages required for building
would help avoid errors while building this package on a clean environment
[rpmbuild]
+ make gnome-ssh-askpass2
cc `pkg-config --cflags gtk+-2.0` \
gnome-ssh-askpass2.c -o gnome-ssh-askpass2 \
`pkg-config --libs gtk+-2.0`
Package gtk+-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk+-2.0.pc'
to the PKG_CONFIG_PATH environment variable
Installing gtk2-devel fixed the problem. Please add gtk2-devel as BuildRequires.
Fixed in the current releases. |