Bug 134752
Summary: | vsftpd-2.0.1 source compile with SSL/TLS support fails | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 3 | Reporter: | James Turnbull <james> |
Component: | vsftpd | Assignee: | Maros Barabas <mbarabas> |
Status: | CLOSED WONTFIX | QA Contact: | |
Severity: | high | Docs Contact: | |
Priority: | medium | ||
Version: | 3.0 | Keywords: | Reopened |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i386 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2007-10-19 19:17:07 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
James Turnbull
2004-10-06 03:32:59 UTC
There's a difference between Fedora Core, which has the kerberos libraries still in /usr/lib directory and RHEL3 which uses the above dir. For RHEL the latest update version is vsftpd-1.2.1-3E.1 which is the only supported version here. My advice is if you want to use FC3 vsftpd create a simlinks for kerberos libraries in /usr/lib. I am compiling a version from source? Is this not supported? We require the SSL/TLS functionality of vsftpd 2.0.x. Also I have tried adding symlinks to the Kerberos libraries to the /usr/lib. No joy. Hello. There is an easy fix for this. I have a need to take the RHAS4 or Fedora SRPM and compile it verbatim on RHAS3 for production purposes. Since the Keberos library were integrated into the core /usr/{lib,include} in RHAS4 (in RHAS3 there were in /usr/keberos/{lib,include}) all we need is a simple 1- line fix to the SRPMS spec file. If this is done, the SRPMS will build on both RHAS4 and support automatic backports to RHAS3 for those users who need to upgrade the FTP for SSL support on platforms running RHAS3. Enclosed is the tiny fix. ------CUT-HERE-------- --- vsftpd.spec.orig 2005-03-25 19:17:24.000000000 -0800 +++ vsftpd.spec 2005-03-25 19:22:03.000000000 -0800 @@ -58,9 +58,9 @@ %build %ifarch s390x -make CFLAGS="$RPM_OPT_FLAGS -fPIE -pipe" \ +make CFLAGS="$RPM_OPT_FLAGS -I/usr/kerberos/include -fPIE -pipe" \ %else -make CFLAGS="$RPM_OPT_FLAGS -fpie -pipe" \ +make CFLAGS="$RPM_OPT_FLAGS -I/usr/kerberos/include -fpie -pipe" \ %endif LINK="-pie -lssl" \ %{?_smp_mflags} ------CUT-HERE-------- REOPENED status has been deprecated. ASSIGNED with keyword of Reopened is preferred. This bug is filed against RHEL 3, which is in maintenance phase. During the maintenance phase, only security errata and select mission critical bug fixes will be released for enterprise products. Since this bug does not meet that criteria, it is now being closed. For more information of the RHEL errata support policy, please visit: http://www.redhat.com/security/updates/errata/ If you feel this bug is indeed mission critical, please contact your support representative. You may be asked to provide detailed information on how this bug is affecting you. |