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.

Apologies if this is known, but I didn't see it in the database.

 - Matt

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

Reply via email to