Sponsored Content
Operating Systems Linux Red Hat Trouble installing vsftpd builddegs.h compile error Post 302938461 by kwnilges on Monday 16th of March 2015 03:44:33 PM
Old 03-16-2015
Trouble installing vsftpd builddegs.h compile error

Code:
gcc --version
gcc (GCC) 3.4.3 20041212 (Red Hat 3.4.3-9.EL4)

Code:
Linux 2.6.9-5.ELsmp #1 SMP Wed Jan 5 19:30:39 EST 2005 i686 i686 i386 GNU/Linux

Code:
vsftpd built 3.0.2

I am seeing this error when I try to implement the steps outlined for installing vsftpd:

Code:
# make
gcc -c main.c -O2 -fPIE -fstack-protector --param=ssp-buffer-size=4  -Wall -W -Wshadow -Werror -Wformat-security -D_FORTIFY_SOURCE=2   -idirafter dummyinc
cc1: error: unrecognized command line option "-fstack-protector"
cc1: error: invalid parameter `ssp-buffer-size'
make: *** [main.o] Error 1


It seems that the compiler is choking on the '-fstack-protector' option. Can I get some guidance on what is wrong? Is it versioning? I realize that RHEL4 is old but I don't have any control over that and have to work w/what I am given.

Please forgive my ignorance if I have referred to some term or concept incorrectly...still learning!

Regards,

Last edited by Scrutinizer; 03-16-2015 at 04:50 PM.. Reason: code tags
 

9 More Discussions You Might Find Interesting

1. Solaris

Trouble Installing a SCSI Adapter

Okay. I admit I'm sort of a newbie in this regard. I installed a SCSI adapter on a Sun Ultra 5 workstation. I did the standard STOP-A on the startup and got the OK prompt. I then tried probe-scsi-all. It dumps me back @ the OK prompt w/ no message whatsoever. I tried probe-scsi, nothing. ... (3 Replies)
Discussion started by: Plain Person
3 Replies

2. Solaris

Trouble installing solaris 9 on 4500

I have a enterprise 4500 sun box. I installed 2 new 72 gb drives to replace the 2 x 9 gb drives that were in it. I have the solaris 9 install disk in it and when i do a boot cdrom it starts then says: panic - boot: ufsboot: cannot determine filesystem type of root device. Any suggestions. (1 Reply)
Discussion started by: frankkahle
1 Replies

3. Solaris

Trouble installing Fast CGI

I'm having trouble installing mod_fastcgi.so, that is I'm having trouble compiling it for a start. it seems every time i use the apxs command I get these errors; gcc: unrecognized option `-Xa' gcc: unrecognized option `-Xa' gcc: unrecognized option `-KPIC' gcc: language ildoff not recognized... (0 Replies)
Discussion started by: fishman2001
0 Replies

4. Filesystems, Disks and Memory

Trouble Installing

I'm trying to install SuSE 7.2 Professional on a IBM Netfinity M10 system. But setup says it can not find a HDD for some reason. It has 6 SCSI HDD installed so I'm not sure why it won't detect them. I am new to servers though and never have used a SCSI device. So if someone could help me out I... (2 Replies)
Discussion started by: Iconfixit
2 Replies

5. HP-UX

Trouble installing software with swinst

Hello. I am having issues with my HP-UX 10.20 system. It was a functioning system and I don't know where it went awry. Whenever I attempt to use the swinstall or swlist commands, the system hangs and never comes back. This happens whether I use the CDE GUI or via the SIO console. I sometimes... (1 Reply)
Discussion started by: gtraff68
1 Replies

6. UNIX for Dummies Questions & Answers

Trouble installing Arachne - possible gcc error? Maybe?

Hi, I am having trouble installing Arachne from the broad institute. I'm using ubuntu through Oracle's VirtualBox. When I use the ./configure command, I do not get any obvious errors. However, the make command always fails. Here is my output for the .configure command and for the make... (3 Replies)
Discussion started by: kblanch
3 Replies

7. Red Hat

Error throwing while installing vsftpd package in rhel 6. using rhel 6 dvd.

Hi all, Im studying rhcsa as of now, so yum installation and dependencies are messing me to not workit out. i have dual os, win 7 & rhel 6. i have tried this installation of vsftpd package with rhel 6 dvd in VM rhel 6 in win 7 as well as host rhel 6.still the same issue. below error... (6 Replies)
Discussion started by: redhatlbug
6 Replies

8. UNIX for Dummies Questions & Answers

Vsftpd not installing

$ rpm -ivh vsftpd-2.2.2-6.el6.i686.rpm warning: vsftpd-2.2.2-6.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY error: can't create transaction lock on /var/lib/rpm/.rpm.lock (Permission denied) why is it actually happening am goin nuts plzz help me out :( (1 Reply)
Discussion started by: lost101
1 Replies

9. Linux

On Zorin - trouble installing new printer - need help

Hi. I am new to Linux & am using Zorin on my computer. :confused: I had my old printer pack it in & so I had to replace it with my new printer - which is the same make & model as the old one (a newer model only). There is some code name under Printers which I presume to be the old printer. ... (1 Reply)
Discussion started by: snookerdoodles
1 Replies
Locale::Codes::LangFam(3pm)				 Perl Programmers Reference Guide			       Locale::Codes::LangFam(3pm)

NAME
Locale::Codes::LangFam - standard codes for language extension identification SYNOPSIS
use Locale::Codes::LangFam; $lext = code2langfam('apa'); # $lext gets 'Apache languages' $code = langfam2code('Apache languages'); # $code gets 'apa' @codes = all_langfam_codes(); @names = all_langfam_names(); DESCRIPTION
The "Locale::Codes::LangFam" module provides access to standard codes used for identifying language families, such as those as defined in ISO 639-5. Most of the routines take an optional additional argument which specifies the code set to use. If not specified, the default ISO 639-5 language family codes will be used. SUPPORTED CODE SETS
There are several different code sets you can use for identifying language families. A code set may be specified using either a name, or a constant that is automatically exported by this module. For example, the two are equivalent: $lext = code2langfam('apa','alpha'); $lext = code2langfam('apa',LOCALE_LANGFAM_ALPHA); The codesets currently supported are: alpha This is the set of three-letter (lowercase) codes from ISO 639-5 such as 'apa' for Apache languages. This is the default code set. ROUTINES
code2langfam ( CODE [,CODESET] ) langfam2code ( NAME [,CODESET] ) langfam_code2code ( CODE ,CODESET ,CODESET2 ) all_langfam_codes ( [CODESET] ) all_langfam_names ( [CODESET] ) Locale::Codes::LangFam::rename_langfam ( CODE ,NEW_NAME [,CODESET] ) Locale::Codes::LangFam::add_langfam ( CODE ,NAME [,CODESET] ) Locale::Codes::LangFam::delete_langfam ( CODE [,CODESET] ) Locale::Codes::LangFam::add_langfam_alias ( NAME ,NEW_NAME ) Locale::Codes::LangFam::delete_langfam_alias ( NAME ) Locale::Codes::LangFam::rename_langfam_code ( CODE ,NEW_CODE [,CODESET] ) Locale::Codes::LangFam::add_langfam_code_alias ( CODE ,NEW_CODE [,CODESET] ) Locale::Codes::LangFam::delete_langfam_code_alias ( CODE [,CODESET] ) These routines are all documented in the Locale::Codes::API man page. SEE ALSO
Locale::Codes The Locale-Codes distribution. Locale::Codes::API The list of functions supported by this module. http://www.loc.gov/standards/iso639-5/id.php ISO 639-5 . AUTHOR
See Locale::Codes for full author history. Currently maintained by Sullivan Beck (sbeck@cpan.org). COPYRIGHT
Copyright (c) 2011-2013 Sullivan Beck This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-11-04 Locale::Codes::LangFam(3pm)
All times are GMT -4. The time now is 01:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy