From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1OqXZT-0006MA-60 for mharc-grub-devel@gnu.org; Tue, 31 Aug 2010 16:36:43 -0400 Received: from [140.186.70.92] (port=55697 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OqXZM-0006HE-M5 for grub-devel@gnu.org; Tue, 31 Aug 2010 16:36:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OqXZG-0002Wi-8W for grub-devel@gnu.org; Tue, 31 Aug 2010 16:36:36 -0400 Received: from rcsinet10.oracle.com ([148.87.113.121]:29827) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OqXZG-0002W3-3J for grub-devel@gnu.org; Tue, 31 Aug 2010 16:36:30 -0400 Received: from rcsinet13.oracle.com (rcsinet13.oracle.com [148.87.113.125]) by rcsinet10.oracle.com (Switch-3.4.2/Switch-3.4.2) with ESMTP id o7VKaOtu021984 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 31 Aug 2010 20:36:26 GMT Received: from acsmt355.oracle.com (acsmt355.oracle.com [141.146.40.155]) by rcsinet13.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o7VEQpoq019739 for ; Tue, 31 Aug 2010 20:36:24 GMT Received: from abhmt003.oracle.com by acsmt353.oracle.com with ESMTP id 550120431283286971; Tue, 31 Aug 2010 13:36:11 -0700 Received: from [10.1.48.74] (/10.1.48.74) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 31 Aug 2010 13:36:11 -0700 Message-ID: <4C7D674F.1060703@oracle.com> Date: Tue, 31 Aug 2010 13:34:23 -0700 From: Seth Goldberg Organization: Oracle Corporation User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.9.2.7) Gecko/20100717 Thunderbird/3.1.1 MIME-Version: 1.0 To: The development of GNU GRUB References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: GRUB2 and libzfs on Solaris X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 20:36:42 -0000 Hi, Just wanted to report that the conftest that looks for libzfs on Solaris is failing. From config.log: gcc -o conftest -I/usr/sfw/include -L/usr/sfw/lib conftest.c -lzfs >&5 ld: warning: file libdladm.so.1: required by /usr/lib/libdlpi.so.1, not found Undefined first referenced symbol in file dladm_close /usr/lib/libdlpi.so.1 dladm_dev2linkid /usr/lib/libdlpi.so.1 dladm_phys_info /usr/lib/libdlpi.so.1 dladm_walk /usr/lib/libdlpi.so.1 dladm_open /usr/lib/libdlpi.so.1 dladm_parselink /usr/lib/libdlpi.so.1 On Solaris, libzfs also requires libdlpi (from /usr/lib) and libdladm (from /lib), so adding some stuff to configure to detect Solaris and add the missing libraries is needed. --S