Skip site navigation (1)Skip section navigation (2)
Date:      Mon,  5 Jun 2000 17:27:02 +0200 (CEST)
From:      alex@big.endian.de
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/19024: fix patch-ab of audio/lame
Message-ID:  <20000605152702.5C21C14A3C@cichlids.cichlids.com>

next in thread | raw e-mail | index | archive | help

>Number:         19024
>Category:       ports
>Synopsis:       fix patch-ab of audio/lame
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jun 05 08:30:02 PDT 2000
>Closed-Date:
>Last-Modified:
>Originator:     Alexander Langer
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
none
>Environment:


>Description:

fix #ifdef ... && defined(..) garbage.

Don't know if that broke the port on FreeBSD/alpha before, but I saw the
warning message and am sure, that the pre-processor executed the alpha code,
although it shouldn't.

>How-To-Repeat:


>Fix:

cvs diff: Diffing .
Index: patch-ab
===================================================================
RCS file: /usr/home/ncvs/ports/audio/lame/patches/patch-ab,v
retrieving revision 1.3
diff -u -r1.3 patch-ab
--- patch-ab	2000/04/29 20:44:48	1.3
+++ patch-ab	2000/06/05 15:15:55
@@ -5,7 +5,7 @@
     *  Disable floating point exepctions
     */
 -#ifdef __FreeBSD__
-+#ifdef __FreeBSD__  && !defined(__alpha__)
++#if defined (__FreeBSD__) && !defined(__alpha__)
  # include <floatingpoint.h>
    {
    /* seet floating point mask to the Linux default */

>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000605152702.5C21C14A3C>