Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Jul 2005 13:48:07 -0700
From:      garys@opusnet.com (Gary W. Swearingen)
To:        dick hoogendijk <dick@nagual.st>
Cc:        fbsdq <questions@freebsd.org>
Subject:   Re: what to do? amd64 - i386
Message-ID:  <n6wtn666t4.tn6@mail.opusnet.com>
In-Reply-To: <20050731204733.271c4f53.dick@nagual.st> (dick hoogendijk's message of "Sun, 31 Jul 2005 20:47:33 %2B0200")
References:  <20050731191241.3ca8846e.dick@nagual.st> <42ED0C79.5090103@datacomm.ch> <20050731204733.271c4f53.dick@nagual.st>

next in thread | previous in thread | raw e-mail | index | archive | help
dick hoogendijk <dick@nagual.st> writes:

>>   cd /usr/ports/www/opera; make -V ONLY_FOR_ARCH
>
> Just tried this, but got no response. Maybe it works now.

#!/bin/ksh -o posix

find /usr/ports -name Makefile | while () ; do
    read DIR
    cd ${DIR%Makefile}
    BBB=$(make -V BROKEN         2>/dev/null)
    OOO=$(make -V ONLY_FOR_ARCHS 2>/dev/null)
    if [ -n "$BBB" -o -n "$OOO" ]; then
        echo "#### $PWD ####"
        if [ -n "$BBB" ]; then
            echo "BROKEN    $BBB"
        fi
        if [ -n "$OOO" ]; then
            echo "ONLY_FOR  $OOO"
        fi
    fi
done

## The End.

>> There are a few things that will not work at all on amd64 right now,
>> however: OpenOffice.org, proprietary media codecs, hardware OpenGL
>> acceleration...
>
> Any ideas about _WHAT_ does not work? Do you have examples?
> "If I can't live without them, then.." ;-))

I forget, but too many for me.  Found somebody with Google that got
several "broken" things running, but he didn't say how.

I had a few problems with base-system stuff but probably could have
lived with that. (Eg, I had to use older ncr instead of sym.)  The
problems are with the ports, so waiting for 6.x won't help.



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