Power PC Build

Michael Franz mvfranz at gmail.com
Wed Dec 31 13:06:38 PST 2008


Eric,

On Wed, Dec 31, 2008 at 2:48 AM, Eric Richardson <ekrichardson at gmail.com>wrote:

> Andrew,

<snip>

> I built gcc 4.2 as this was available via MacPorts.
>
>  Icedtea still looks promising but now I'm stuck on the ALSA part of
> configure.
>
> checking for ALSA... no
> configure: error: Could not find alsa -   Try installing alsa-lib-devel.
>
> The only thing I could find remotely related was Libao2.
>

To work around this I change configure.ac to change the ALSA to a warning
instead of an error and then run autogen.sh

--- configure.ac.orig   2008-12-31 16:03:56.000000000 -0500
+++ configure.ac        2008-12-31 16:04:17.000000000 -0500
@@ -436,7 +436,7 @@
 PKG_CHECK_MODULES(ALSA, alsa,[ALSA_FOUND=yes],[ALSA_FOUND=no])
 if test "x${ALSA_FOUND}" = xno
 then
-  AC_MSG_ERROR([Could not find alsa - \
+  AC_MSG_WARN([Could not find alsa - \
   Try installing alsa-lib-devel.])
 fi
 AC_SUBST(ALSA_CFLAGS)

I figure I will deal with the ALSA error later if I ever get to them.

Michael


>
> Note: the problem I had before fwas because I was missing pkg.m4 which in
> turn got fixed when I installed xorg-libX11.
>
> ./configure: line 11562: syntax error near unexpected token `XPROTO,'
> ./configure: line 11562: `PKG_CHECK_MODULES(XPROTO,
> xproto,XPROTO_FOUND=yes,XPROTO_FOUND=no)
>
> Eric
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20081231/e778f367/attachment.html 


More information about the distro-pkg-dev mailing list