|
Home > Archive > Apache Server configuration support > July 2007 > configuring apache 2.2 statically
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
configuring apache 2.2 statically
|
|
|
| Hello,
I'm trying to configure apache 2.2.4 on FreeBSD. I have unique
requirements for this box so i'm not using the port. I need to compile
everything statically so nothing uses shared libraries. On the configure
line i've tried:
--enable-static-support
--enable-static-support=yes
i've also tried the above with variants of --enable-static-programname
htpasswd, htdigest, etc. The problem is everything configures and builds,
but when i check the installation the executables are all dynamically
linked.
Any suggestions appreciated.
Thanks.
Dave.
| |
| Warren Oates 2007-07-10, 7:22 am |
| In article <469303e0$0$16601$4c368faf@roadrunner.com>,
"Dave" <dmehler26@woh.rr.com> wrote:
> i've also tried the above with variants of --enable-static-programname
> htpasswd, htdigest, etc. The problem is everything configures and builds,
> but when i check the installation the executables are all dynamically
> linked.
> Any suggestions appreciated.
Don't you have to explicitly _disable_ shared libraries
../configure --with-whatever --disable-shared
like that? Although, I'd guess you tried that.
--
W. Oates
| |
|
| Hello,
Yes. I did:
../configure --prefix=location --disable-shared --enable-static-support
and the original variants. I keep getting dynamic executables.
Thanks.
Dave.
"Warren Oates" <warren.oates@gmail.com> wrote in message
news:46935f52$0$26860$c3e8da3@news.astraweb.com...
> In article <469303e0$0$16601$4c368faf@roadrunner.com>,
> "Dave" <dmehler26@woh.rr.com> wrote:
>
>
> Don't you have to explicitly _disable_ shared libraries
>
> ./configure --with-whatever --disable-shared
>
> like that? Although, I'd guess you tried that.
> --
> W. Oates
|
|
|
|
|