debian wheezy (raspbian armhf) and i'm struggling to compile gambas3 from source:
pi@raspberrypi ~/gambas-svn $ ./configure
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking build system type... armv6l-unknown-linux-gnueabihf
checking host system type... armv6l-unknown-linux-gnueabihf
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: config.h is unchanged
=== configuring in main (/home/pi/gambas-svn/main)
configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=/dev/null --srcdir=.
./configure: line 2063: syntax error near unexpected token `main'
./configure: line 2063: `GB_INIT(main)'
configure: error: ./configure failed for main
I am trying to identify what application is responsible for interpreting the GB_INIT command? (in the hope that maybe a different version may fix things (long shot i know)).
GB_INIT(main)
and the error suggests GB_INIT doesn't like the parameter (main). But there are a whole bunch of other commands beginning GB_ and i'm a bit puzzled how bash knows how to interpret these commands? – Lee Tickett Jul 20 '12 at 22:04./reconf-all
if i enterGB_INIT(main)
i get the same error. i tried GB_INIT() and it gave me a>
prompt. i'm trying your autoreconf suggestion now. thanks – Lee Tickett Jul 20 '12 at 22:54autoreconf
:-/ – Lee Tickett Jul 20 '12 at 23:15