From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@9fans.net Subject: Re: [9fans] vx32 @ FreeBSD: -Ilibvxc/include missing? From: "Russ Cox" Date: Thu, 10 Jul 2008 10:30:50 -0400 In-Reply-To: <91ca1c8d0807100320o156f9817vc8de7f2ad8a5cccc@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20080710142908.2659E1E8C70@holo.morphisms.net> Topicbox-Message-UUID: e135dc80-ead3-11e9-9d60-3106f5b1d025 > gcc -c -o vxa/vorbis/libvorbis/lib/analysis.ho -Ivxa/vorbis > -Ivxa/vorbis/libogg/include -Ivxa/vorbis/libvorbis/include > -DHAVE_ALLOCA_H -g -O3 -MD -std=gnu99 -I. > vxa/vorbis/libvorbis/lib/analysis.c > In file included from vxa/vorbis/libvorbis/lib/bitrate.h:23, > from vxa/vorbis/libvorbis/lib/codec_internal.h:56, > from vxa/vorbis/libvorbis/lib/analysis.c:23: > vxa/vorbis/os.h:62:22: error: alloca.h: No such file or directory > gmake: *** [vxa/vorbis/libvorbis/lib/analysis.ho] Error 1 Actually, this command is compiling a native host object (.ho extension) to compare with the vx32 object (.vo extension). The problem is the -DHAVE_ALLOCA_H combined with FreeBSD not having alloca.h. I have fixed this in hg. Russ