On Fri, Jun 04, 1999, [EMAIL PROTECTED] wrote:

> Full_Name: Matthew J. Ryan
> Version: 2.3.1-1.3.6
> OS: Solaris 2.6
> Submission from: false.exodus.net (216.32.248.134)
> 
> It appears there is a but in pkg.eapi/eapi.patch, starting at about
> line 96:
> +        if [ "x$EAPI_MM" = "xSYSTEM" ]; then
> +            echo "   using MM library for EAPI: (system-wide)"
> +            CFLAGS="$CFLAGS -DEAPI_MM"
> +            INCLUDES="`mm-config --cflags`"
> +            LDFLAGS="`mm-config --ldflags`"
> +            LIBS="`mm-config --libs`"
> +        else
> 
> Should that not be:
> +        if [ "x$EAPI_MM" = "xSYSTEM" ]; then
> +            echo "   using MM library for EAPI: (system-wide)"
> +            CFLAGS="$CFLAGS -DEAPI_MM"
> +            INCLUDES="$INCLUDES `mm-config --cflags`"
> +            LDFLAGS="$LDFLAGS `mm-config --ldflags`"
> +            LIBS="$LIBS `mm-config --libs`"
> +        else
> 
> appending the output of mm-config to INCLUDES/LDFLAGS/LIBS,
> instead of blowing them away.

Ops, correct: this particular if-clause was broken. It should append the same
way the other if-clauses do it, of course. Thanks for the hint and patch. It's
now fixed for mod_ssl 2.3.2.
                                       Ralf S. Engelschall
                                       [EMAIL PROTECTED]
                                       www.engelschall.com

______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to