Sponsored Content
Operating Systems Solaris Apache 2 configure not recognizing options Post 302318983 by RobertSubnet on Saturday 23rd of May 2009 05:16:20 AM
Old 05-23-2009
Apache 2 configure not recognizing options

Hello all.

I am trying to compile Apache 2 (again!) and the configure script keeps telling me it does not recognize the options. Everything I am including is in the --help list.

For example: --enable-so. First I will put in the LD flags, then configure with the --enable-so option.

Below is the output:

Quote:
/downloads/httpd-2.2.9(root)>LDFLAGS="-R/lib -R/usr/lib -R/usr/local/lib -R/opt/mysql/mysql/lib" \
> ./configure --enable-so
checking for chosen layout... Apache
checking for working mkdir -p... yes
checking build system type... sparc-sun-solaris2.10
checking host system type... sparc-sun-solaris2.10
checking target system type... sparc-sun-solaris2.10
Configuring Apache Portable Runtime library ...
checking for APR... reconfig
configuring package in srclib/apr now
configure: WARNING: Unrecognized options: --enable-so
Why is configure not recognizing my options? Am I not entering them correctly?

Thanks!
~Robert
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to install and configure Apache on SCO openserver 5

I have just been made responsible for setting up Apache on our office SCO box. I have searched the internet, but haven't found any details that I can make sense of. I'm unfamiliar with Unix and would appreciate any help members of the forum have to offer. (1 Reply)
Discussion started by: cstovall
1 Replies

2. Solaris

Configure apache web server for coldfusionmx7

Hi, I have been trying to configure apache web server for coldfusion mx7 on solaris 5.8 using the command: ./wsconfig -server coldfusion -ws apache -dir /usr/local/apache/conf -bin /usr/local/apache/bin/httpd -script /usr/local/apache/bin/apachectl -coldfusion Then it prompted me: Apache... (1 Reply)
Discussion started by: sagolo
1 Replies

3. Linux

options used in ./configure

Hi, for a given binary file or rpm package, is there any way for me to know the ./configure options passed onto it when it was built? Thanks, Marc (1 Reply)
Discussion started by: marcpascual
1 Replies

4. UNIX for Advanced & Expert Users

configure php with postgresql and apache

Hi, I'm trying to configure php4 to run alongside postgresql and apache. Postgres and apache are already installed and running, but I am getting an error when doing: host84:~/php-4.4.9#./configure --with-apache=/usr/local/apache --with-postgresql=/usr/local/pgsql loading cache ./config.cache... (5 Replies)
Discussion started by: sdbeng
5 Replies

5. Linux

Configure apache prefork MPM

Hello, i want to know the basics to configure prefork.c module to high Apache performance and i think it's depends on the server hardware details (RAM and Processors) Thanks :) (0 Replies)
Discussion started by: LinuxCommandos
0 Replies

6. UNIX for Dummies Questions & Answers

Installing Apache with make options

I am installing apache on freebsd and the screen comes up with make options. Here I would like to deselect DAV and DAV_FS. How can this be done on the command line in order to achieve a silent install? This is what I have currently, but the installation script still enters the menu with the make... (2 Replies)
Discussion started by: figaro
2 Replies

7. Cybersecurity

configure apache to accept request form specific IP

Hi, What should I change in the httpd.conf so that the apache will accept request from page from specific IP and deny all the rest IP. I am reading the document of the apache but it is very long (700 pages) and I searched but I could not find something about this. So if someone can explain... (0 Replies)
Discussion started by: programAngel
0 Replies

8. IP Networking

configure apache to work with ssl

Hi, I need help to configure the apache to work with ssl. I have managed to create self-signed certificate according to the instruction in the following link. So I have the crt file and the key file. however when I add: <Virtualhost *:443> SSLEngine on ... (1 Reply)
Discussion started by: programAngel
1 Replies

9. Shell Programming and Scripting

configure options ised while compiling apache

How can I know which all options were used while compiling a apache binary. # /usr/local/apache/bin/httpd -v Server version: Apache/2.2.17 (Unix) Server built: Feb X 2XXX XX:29:08 Cpanel::Easy::Apache v3.2.0 rev5291 (1 Reply)
Discussion started by: anil510
1 Replies
cook_rsh(1)						      General Commands Manual						       cook_rsh(1)

NAME
cook - load balancing rsh SYNOPSIS
cook [ option... ] architecture command [ argument... ] cook -Help DESCRIPTION
The cook program is a wrapper around rsh(1) which does simple load balancing. It obtains its load information by running the rup(1) command, and selects the most suitable host hased on the architecture you specify, and the least load of all hosts of that architecture. The first command line argument is the architecture name which is used to get the list of possible hosts. From that list the rup(1) command is run to determine the host with the lowest load, which is in turn used as the first argument of the eventual rsh(1) command. COOKBOOKS
In order to make use of this program, somewhere in your cookbook, you need to add a line which reads parallel_rsh = "cook"; If the host chosen is the same as the caller (build host) then this program just exec the command skipping the rsh. So it costs nothing to use this in a one machine network! For each recipe you want distributed to a remote host, you need to add a host-binding attribute to. Typical usage is where you have a muti-architecture build. %1/%0%.o: %0%.c host-binding %1 { cc -o [target] -c [resolve %0%.c]; } In the recipe given here, each architecture has its object files placed into a separate architecture-specific directory tree. The architecture name (%1) is used in the host-binding, so that the compiles may be load-balanced to all machines of that architecture. If you need a command to run on a specific host (say, because that's where a specific application license resides), then simply use the host name in the host-binding attribute, rather than an architecture name. DEFINING THE CLASSES
The /host_lists.pl file is expected to exist, and to contain variable definitions used to determine if hosts are members of particular architectures. The /host_lists.pl file defines a perl HOL "hash of lists" The hash is %ArchNames and it maps names of architectures as user want to see them, to list references as the actual lists are stored. The names of each architecture could be any form you wish but the convention is to use the GNUish names such as "sparc-sun-solaris2.8". For each architecture, define one or more lists of machines according to what function each machine set may do. This can be as simple or as elaborate as required. The form of the list variable name can be any valid perl identifier but may as well be like the architecture name with dash changed to underbar and dot removed, and the type added. For example one might define solaris hosts as: @sparc_sun_solaris28_hosts = ( "mickey", "minny", "scrooge" ); And linux hosts as: @i386_linux22_hosts = ( "goofy", "scrooge" ); If there is a need to define different sets of machines for different types of jobs then add a suffix to the names in the host-binding directive on each of the recipes, and lists here with the same suffix. The hash to map argument names to lists is defined like: %ArchNames = ( "sparc-solaris2.8", => @sparc_solaris28_hosts, "i586-unknown-linux22", => @i386_linux22_hosts, ); Of course if users have differing opinions as to what the architecture names should look like, you can define "alias" mappings as well. "sun4-SunOS-5.8", => @sparc_solaris28_hosts, Or maybe the level is of no importance, then define "sparc-solaris", => @sparc_solaris28_hosts, "sparc-solaris2.7", => @sparc_solaris28_hosts, Also, this list isn't allowed to be empty. And finally, curtesy of Perl, the last line of the file must read 1; for obscure and magical reasons. SYSLOG LOGGING
Typical commands seen during a build would look like sh -c 'cd /aegis/dd/gumby2.2.C079 && sh -ce /aegis/dd/gumby2.2.C079/.6.1; echo $? > /aegis/dd/gumby2.2.C079/.6.2' So we can extract the project/ change from the command quite easily and logging it via syslog would be a trivial addition. OPTIONS
This command is not usually given any options. -h Help - show usage info -vP Verbose - report choice -Tn Trace value for testing FILES
/exclude.hosts This file is used to list those host which must not be used by this script. Simply list excuded hosts, one hostname per line. If the file is absent, all hosts reported by rup(1) may be used. /host_lists.pl This file defines the classes of hosts for each architecture. AUTHOR
Jerry Pendergraft <jerry@endocardial.com> Reference Manual Cook cook_rsh(1)
All times are GMT -4. The time now is 02:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy