From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1R6UMQ-0003NF-Mh for mharc-grub-devel@gnu.org; Wed, 21 Sep 2011 17:29:42 -0400 Received: from eggs.gnu.org ([140.186.70.92]:46270) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R6UMO-0003M6-Gd for grub-devel@gnu.org; Wed, 21 Sep 2011 17:29:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R6UMN-0005Vu-Ip for grub-devel@gnu.org; Wed, 21 Sep 2011 17:29:40 -0400 Received: from ausxippc101.us.dell.com ([143.166.85.207]:46133) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R6UMN-0005Vi-FT for grub-devel@gnu.org; Wed, 21 Sep 2011 17:29:39 -0400 X-Loopcount0: from 10.9.160.253 Message-ID: <4E7A574C.3090901@dell.com> Date: Wed, 21 Sep 2011 16:29:48 -0500 From: Mario Limonciello Organization: Dell Inc. User-Agent: Mozilla/5.0 (X11; Linux i686; rv:6.0.2) Gecko/20110906 Thunderbird/6.0.2 MIME-Version: 1.0 To: "grub-devel@gnu.org" Subject: [PATCH 1/2] Undefine GRUB_UTIL in grub-core/lib/crypto.c for MINGW32 as termios is not supported. Content-Type: multipart/mixed; boundary="------------010904040802020308060206" X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 143.166.85.207 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 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: Wed, 21 Sep 2011 21:29:41 -0000 This is a multi-part message in MIME format. --------------010904040802020308060206 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit === modified file 'ChangeLog' --- ChangeLog 2011-09-21 20:39:06 +0000 +++ ChangeLog 2011-09-21 21:00:59 +0000 @@ -4,6 +4,8 @@ * No realpath on mingw32. Instead use _fullpath. * Strip trailing slashes on PHYSICALDRIVE%d paths when making Windows CreateFile calls. + * Undefine GRUB_UTIL in grub-core/lib/crypto.c for MINGW32 as + termios is not supported. 2011-09-17 Grégoire Sutre === modified file 'grub-core/lib/crypto.c' --- grub-core/lib/crypto.c 2011-04-24 15:15:55 +0000 +++ grub-core/lib/crypto.c 2011-09-21 21:00:59 +0000 @@ -23,6 +23,12 @@ #include #include +/* mingw32 does not support termios as required + by GRUB_UTIL throughout this file*/ +#ifdef __MINGW32__ +#undef GRUB_UTIL +#endif + #ifdef GRUB_UTIL #include #include --------------010904040802020308060206 Content-Type: text/x-diff; name="ml_3428.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="ml_3428.patch" === modified file 'ChangeLog' --- ChangeLog 2011-09-21 20:39:06 +0000 +++ ChangeLog 2011-09-21 21:00:59 +0000 @@ -4,6 +4,8 @@ * No realpath on mingw32. Instead use _fullpath. * Strip trailing slashes on PHYSICALDRIVE%d paths when making Windows CreateFile calls. + * Undefine GRUB_UTIL in grub-core/lib/crypto.c for MINGW32 as + termios is not supported. 2011-09-17 Grégoire Sutre === modified file 'grub-core/lib/crypto.c' --- grub-core/lib/crypto.c 2011-04-24 15:15:55 +0000 +++ grub-core/lib/crypto.c 2011-09-21 21:00:59 +0000 @@ -23,6 +23,12 @@ #include #include +/* mingw32 does not support termios as required + by GRUB_UTIL throughout this file*/ +#ifdef __MINGW32__ +#undef GRUB_UTIL +#endif + #ifdef GRUB_UTIL #include #include --------------010904040802020308060206--