RE: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-03 Thread Giles Robertson
 g++  -g -O2 -D_REENTRANT  -L/FlightGear/lib -o test-up  test-up.o
 -lsgmath -lsgxml -lsgmisc -lsgdebug -lsgstructure -lsgtiming 
 -lplibsg -lplibul -lz
 ld: can't locate file for: -lsgmath
 make[1]: *** [test-up] Error 1
 make: *** [all-recursive] Error 1

That's failed to find the first SimGear library. Check that you
installed (make install) SimGear after you built it, and that
./configure has detected the directory where it's installed.

Giles Robertson

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-03 Thread Jonathan Polley
I am using MacOS X 10.3 and don't remember having to upgrade the automake 
tools, but I have updated to the most recent Xcode release.

On Thursday, March 03, 2005, at 08:38AM, Arthur Wiebe [EMAIL PROTECTED] wrote:

I don't know if anyone is aware of this but a document on building
from source for Mac OS X is located at
http://sourceforge.net/docman/display_doc.php?docid=26350group_id=126825

And for myself, I upgraded autoconf and automake in order to run
autogen.sh from the FGFS CVS. For some reason Apple's versions don't
work.

On Thu, 3 Mar 2005 08:35:00 -, Giles Robertson
[EMAIL PROTECTED] wrote:
  g++  -g -O2 -D_REENTRANT  -L/FlightGear/lib -o test-up  test-up.o
  -lsgmath -lsgxml -lsgmisc -lsgdebug -lsgstructure -lsgtiming
  -lplibsg -lplibul -lz
  ld: can't locate file for: -lsgmath
  make[1]: *** [test-up] Error 1
  make: *** [all-recursive] Error 1
 
 That's failed to find the first SimGear library. Check that you
 installed (make install) SimGear after you built it, and that
 ./configure has detected the directory where it's installed.
 
 Giles Robertson
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d
 


-- 
Arthur/
- http://artooro.blogspot.com  (Weblog)
- http://sourceforge.net/users/artooro/

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d




Of COURSE they can do that.  They're engineers!

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-03 Thread Felix
I wish there was a document that would go over the entire build for
Mac OS X. I forgot to build OpenAL for SimGear and i'm having
difficulty. OpenAL has two a Macosx directory in the CVS Repository,
and a Linux one. The mac os x one has an xcode project that doesn't
build in xcode, and the linux one won't build either and fails with
the following:

cd jlib  make all
make[1]: Nothing to be done for `all'.
cd src   make all
gcc  -I../../include -I../include -I../audioconvert -Iarch -I.  -g -O2
-fPIC -Wshadow -Wall -W -Wbad-function-cast -Wcast-qual -Wcast-align
-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-Wimplicit-function-declaration -Waggregate-return -Winline
-Wpointer-arith -fno-common -Wredundant-decls -c al_ext.c -o al_ext.o
al_ext.c: In function `alGetEnumValue':
al_ext.c:693: error: `AL_STREAMING' undeclared (first use in this function)
al_ext.c:693: error: (Each undeclared identifier is reported only once
al_ext.c:693: error: for each function it appears in.)
al_ext.c:737: error: `AL_BYTE_LOKI' undeclared (first use in this function)
al_ext.c:865: error: `AL_DISTANCE_SCALE' undeclared (first use in this function)
al_ext.c:873: error: `AL_ENV_ROOM_IASIG' undeclared (first use in this function)
al_ext.c:877: error: `AL_ENV_ROOM_HIGH_FREQUENCY_IASIG' undeclared
(first use in this function)
al_ext.c:881: error: `AL_ENV_ROOM_ROLLOFF_FACTOR_IASIG' undeclared
(first use in this function)
al_ext.c:885: error: `AL_ENV_DECAY_TIME_IASIG' undeclared (first use
in this function)
al_ext.c:889: error: `AL_ENV_DECAY_HIGH_FREQUENCY_RATIO_IASIG'
undeclared (first use in this function)
al_ext.c:893: error: `AL_ENV_REFLECTIONS_IASIG' undeclared (first use
in this function)
al_ext.c:897: error: `AL_ENV_REFLECTIONS_DELAY_IASIG' undeclared
(first use in this function)
al_ext.c:901: error: `AL_ENV_REVERB_IASIG' undeclared (first use in
this function)
al_ext.c:905: error: `AL_ENV_REVERB_DELAY_IASIG' undeclared (first use
in this function)
al_ext.c:909: error: `AL_ENV_DIFFUSION_IASIG' undeclared (first use in
this function)
al_ext.c:913: error: `AL_ENV_DENSITY_IASIG' undeclared (first use in
this function)
al_ext.c:917: error: `AL_ENV_HIGH_FREQUENCY_REFERENCE_IASIG'
undeclared (first use in this function)
make[1]: *** [al_ext.o] Error 1
make: *** [all] Error 2


I Know that i can just download the Mac OS X binary for FlightGear,
but i'd much rather be able to build it from scratch so that i can
play around with the code.

Any ideas about my latest problem?

Thanks again!
Felix


On Thu, 03 Mar 2005 11:52:15 -0600, Jonathan Polley [EMAIL PROTECTED] wrote:
 I am using MacOS X 10.3 and don't remember having to upgrade the automake 
 tools, but I have updated to the most recent Xcode release.
 
 On Thursday, March 03, 2005, at 08:38AM, Arthur Wiebe [EMAIL PROTECTED] 
 wrote:
 
 I don't know if anyone is aware of this but a document on building
 from source for Mac OS X is located at
 http://sourceforge.net/docman/display_doc.php?docid=26350group_id=126825
 
 And for myself, I upgraded autoconf and automake in order to run
 autogen.sh from the FGFS CVS. For some reason Apple's versions don't
 work.
 
 On Thu, 3 Mar 2005 08:35:00 -, Giles Robertson
 [EMAIL PROTECTED] wrote:
   g++  -g -O2 -D_REENTRANT  -L/FlightGear/lib -o test-up  test-up.o
   -lsgmath -lsgxml -lsgmisc -lsgdebug -lsgstructure -lsgtiming
   -lplibsg -lplibul -lz
   ld: can't locate file for: -lsgmath
   make[1]: *** [test-up] Error 1
   make: *** [all-recursive] Error 1
 
  That's failed to find the first SimGear library. Check that you
  installed (make install) SimGear after you built it, and that
  ./configure has detected the directory where it's installed.
 
  Giles Robertson
 
  ___
  Flightgear-devel mailing list
  Flightgear-devel@flightgear.org
  http://mail.flightgear.org/mailman/listinfo/flightgear-devel
  2f585eeea02e2c79d7b1d8c4963bae2d
 
 
 
 --
 Arthur/
 - http://artooro.blogspot.com  (Weblog)
 - http://sourceforge.net/users/artooro/
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d
 
 
 
 Of COURSE they can do that.  They're engineers!
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d


___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-03 Thread Adam Dershowitz
There is:

-- Adam




 From: Felix [EMAIL PROTECTED]
 Reply-To: FlightGear developers discussions flightgear-devel@flightgear.org
 Date: Thu, 3 Mar 2005 15:45:59 -0500
 To: FlightGear developers discussions flightgear-devel@flightgear.org
 Subject: Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X
 
 I wish there was a document that would go over the entire build for
 Mac OS X. I forgot to build OpenAL for SimGear and i'm having
 difficulty. OpenAL has two a Macosx directory in the CVS Repository,
 and a Linux one. The mac os x one has an xcode project that doesn't
 build in xcode, and the linux one won't build either and fails with
 the following:
 
 cd jlib  make all
 make[1]: Nothing to be done for `all'.
 cd src   make all
 gcc  -I../../include -I../include -I../audioconvert -Iarch -I.  -g -O2
 -fPIC -Wshadow -Wall -W -Wbad-function-cast -Wcast-qual -Wcast-align
 -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
 -Wimplicit-function-declaration -Waggregate-return -Winline
 -Wpointer-arith -fno-common -Wredundant-decls -c al_ext.c -o al_ext.o
 al_ext.c: In function `alGetEnumValue':
 al_ext.c:693: error: `AL_STREAMING' undeclared (first use in this function)
 al_ext.c:693: error: (Each undeclared identifier is reported only once
 al_ext.c:693: error: for each function it appears in.)
 al_ext.c:737: error: `AL_BYTE_LOKI' undeclared (first use in this function)
 al_ext.c:865: error: `AL_DISTANCE_SCALE' undeclared (first use in this
 function)
 al_ext.c:873: error: `AL_ENV_ROOM_IASIG' undeclared (first use in this
 function)
 al_ext.c:877: error: `AL_ENV_ROOM_HIGH_FREQUENCY_IASIG' undeclared
 (first use in this function)
 al_ext.c:881: error: `AL_ENV_ROOM_ROLLOFF_FACTOR_IASIG' undeclared
 (first use in this function)
 al_ext.c:885: error: `AL_ENV_DECAY_TIME_IASIG' undeclared (first use
 in this function)
 al_ext.c:889: error: `AL_ENV_DECAY_HIGH_FREQUENCY_RATIO_IASIG'
 undeclared (first use in this function)
 al_ext.c:893: error: `AL_ENV_REFLECTIONS_IASIG' undeclared (first use
 in this function)
 al_ext.c:897: error: `AL_ENV_REFLECTIONS_DELAY_IASIG' undeclared
 (first use in this function)
 al_ext.c:901: error: `AL_ENV_REVERB_IASIG' undeclared (first use in
 this function)
 al_ext.c:905: error: `AL_ENV_REVERB_DELAY_IASIG' undeclared (first use
 in this function)
 al_ext.c:909: error: `AL_ENV_DIFFUSION_IASIG' undeclared (first use in
 this function)
 al_ext.c:913: error: `AL_ENV_DENSITY_IASIG' undeclared (first use in
 this function)
 al_ext.c:917: error: `AL_ENV_HIGH_FREQUENCY_REFERENCE_IASIG'
 undeclared (first use in this function)
 make[1]: *** [al_ext.o] Error 1
 make: *** [all] Error 2
 
 
 I Know that i can just download the Mac OS X binary for FlightGear,
 but i'd much rather be able to build it from scratch so that i can
 play around with the code.
 
 Any ideas about my latest problem?
 
 Thanks again!
 Felix
 
 
 On Thu, 03 Mar 2005 11:52:15 -0600, Jonathan Polley [EMAIL PROTECTED] wrote:
 I am using MacOS X 10.3 and don't remember having to upgrade the automake
 tools, but I have updated to the most recent Xcode release.
 
 On Thursday, March 03, 2005, at 08:38AM, Arthur Wiebe [EMAIL PROTECTED]
 wrote:
 
 I don't know if anyone is aware of this but a document on building
 from source for Mac OS X is located at
 http://sourceforge.net/docman/display_doc.php?docid=26350group_id=126825
 
 And for myself, I upgraded autoconf and automake in order to run
 autogen.sh from the FGFS CVS. For some reason Apple's versions don't
 work.
 
 On Thu, 3 Mar 2005 08:35:00 -, Giles Robertson
 [EMAIL PROTECTED] wrote:
 g++  -g -O2 -D_REENTRANT  -L/FlightGear/lib -o test-up  test-up.o
 -lsgmath -lsgxml -lsgmisc -lsgdebug -lsgstructure -lsgtiming
 -lplibsg -lplibul -lz
 ld: can't locate file for: -lsgmath
 make[1]: *** [test-up] Error 1
 make: *** [all-recursive] Error 1
 
 That's failed to find the first SimGear library. Check that you
 installed (make install) SimGear after you built it, and that
 ./configure has detected the directory where it's installed.
 
 Giles Robertson
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d
 
 
 
 --
 Arthur/
 - http://artooro.blogspot.com  (Weblog)
 - http://sourceforge.net/users/artooro/
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d
 
 
 
 Of COURSE they can do that.  They're engineers!
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d
 
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http

Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-03 Thread Felix
Thank you Adam!!! Thats a good doc...

Thanks again.

Felix


On Thu, 03 Mar 2005 13:05:51 -0800, Adam Dershowitz
[EMAIL PROTECTED] wrote:
 There is:
 
 -- Adam
 
  From: Felix [EMAIL PROTECTED]
  Reply-To: FlightGear developers discussions 
  flightgear-devel@flightgear.org
  Date: Thu, 3 Mar 2005 15:45:59 -0500
  To: FlightGear developers discussions flightgear-devel@flightgear.org
  Subject: Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS 
  X
 
  I wish there was a document that would go over the entire build for
  Mac OS X. I forgot to build OpenAL for SimGear and i'm having
  difficulty. OpenAL has two a Macosx directory in the CVS Repository,
  and a Linux one. The mac os x one has an xcode project that doesn't
  build in xcode, and the linux one won't build either and fails with
  the following:
 
  cd jlib  make all
  make[1]: Nothing to be done for `all'.
  cd src   make all
  gcc  -I../../include -I../include -I../audioconvert -Iarch -I.  -g -O2
  -fPIC -Wshadow -Wall -W -Wbad-function-cast -Wcast-qual -Wcast-align
  -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
  -Wimplicit-function-declaration -Waggregate-return -Winline
  -Wpointer-arith -fno-common -Wredundant-decls -c al_ext.c -o al_ext.o
  al_ext.c: In function `alGetEnumValue':
  al_ext.c:693: error: `AL_STREAMING' undeclared (first use in this function)
  al_ext.c:693: error: (Each undeclared identifier is reported only once
  al_ext.c:693: error: for each function it appears in.)
  al_ext.c:737: error: `AL_BYTE_LOKI' undeclared (first use in this function)
  al_ext.c:865: error: `AL_DISTANCE_SCALE' undeclared (first use in this
  function)
  al_ext.c:873: error: `AL_ENV_ROOM_IASIG' undeclared (first use in this
  function)
  al_ext.c:877: error: `AL_ENV_ROOM_HIGH_FREQUENCY_IASIG' undeclared
  (first use in this function)
  al_ext.c:881: error: `AL_ENV_ROOM_ROLLOFF_FACTOR_IASIG' undeclared
  (first use in this function)
  al_ext.c:885: error: `AL_ENV_DECAY_TIME_IASIG' undeclared (first use
  in this function)
  al_ext.c:889: error: `AL_ENV_DECAY_HIGH_FREQUENCY_RATIO_IASIG'
  undeclared (first use in this function)
  al_ext.c:893: error: `AL_ENV_REFLECTIONS_IASIG' undeclared (first use
  in this function)
  al_ext.c:897: error: `AL_ENV_REFLECTIONS_DELAY_IASIG' undeclared
  (first use in this function)
  al_ext.c:901: error: `AL_ENV_REVERB_IASIG' undeclared (first use in
  this function)
  al_ext.c:905: error: `AL_ENV_REVERB_DELAY_IASIG' undeclared (first use
  in this function)
  al_ext.c:909: error: `AL_ENV_DIFFUSION_IASIG' undeclared (first use in
  this function)
  al_ext.c:913: error: `AL_ENV_DENSITY_IASIG' undeclared (first use in
  this function)
  al_ext.c:917: error: `AL_ENV_HIGH_FREQUENCY_REFERENCE_IASIG'
  undeclared (first use in this function)
  make[1]: *** [al_ext.o] Error 1
  make: *** [all] Error 2
 
 
  I Know that i can just download the Mac OS X binary for FlightGear,
  but i'd much rather be able to build it from scratch so that i can
  play around with the code.
 
  Any ideas about my latest problem?
 
  Thanks again!
  Felix
 
 
  On Thu, 03 Mar 2005 11:52:15 -0600, Jonathan Polley [EMAIL PROTECTED] 
  wrote:
  I am using MacOS X 10.3 and don't remember having to upgrade the automake
  tools, but I have updated to the most recent Xcode release.
 
  On Thursday, March 03, 2005, at 08:38AM, Arthur Wiebe [EMAIL PROTECTED]
  wrote:
 
  I don't know if anyone is aware of this but a document on building
  from source for Mac OS X is located at
  http://sourceforge.net/docman/display_doc.php?docid=26350group_id=126825
 
  And for myself, I upgraded autoconf and automake in order to run
  autogen.sh from the FGFS CVS. For some reason Apple's versions don't
  work.
 
  On Thu, 3 Mar 2005 08:35:00 -, Giles Robertson
  [EMAIL PROTECTED] wrote:
  g++  -g -O2 -D_REENTRANT  -L/FlightGear/lib -o test-up  test-up.o
  -lsgmath -lsgxml -lsgmisc -lsgdebug -lsgstructure -lsgtiming
  -lplibsg -lplibul -lz
  ld: can't locate file for: -lsgmath
  make[1]: *** [test-up] Error 1
  make: *** [all-recursive] Error 1
 
  That's failed to find the first SimGear library. Check that you
  installed (make install) SimGear after you built it, and that
  ./configure has detected the directory where it's installed.
 
  Giles Robertson
 
  ___
  Flightgear-devel mailing list
  Flightgear-devel@flightgear.org
  http://mail.flightgear.org/mailman/listinfo/flightgear-devel
  2f585eeea02e2c79d7b1d8c4963bae2d
 
 
 
  --
  Arthur/
  - http://artooro.blogspot.com  (Weblog)
  - http://sourceforge.net/users/artooro/
 
  ___
  Flightgear-devel mailing list
  Flightgear-devel@flightgear.org
  http://mail.flightgear.org/mailman/listinfo/flightgear-devel
  2f585eeea02e2c79d7b1d8c4963bae2d
 
 
 
  Of COURSE they can do that.  They're engineers!
 
  ___
  Flightgear-devel mailing list

[Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-02 Thread Felix
Hi,

I am trying to compile FlightGear 09 on a Mac OS X. I got plib, and
SimGear installed fine. But FlightGear won't perform the autogen.sh
correctly. For some reason it doesn't generate the config.sub files
necessary for ./configure.

When i run ./configure i get: configure: error: cannot run /bin/sh ./config.sub
and the reason for that is that config.sub isn't there. 

Autogen.sh creates links for config.sub and others for SimGear, but
not for FlightGear.

I read some posts on this list from other people who had the same
problem, but no one had a solution. Anyone have any ideas what i can
try?

Thank you,

Felix

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-02 Thread Adam Dershowitz
The mac build instructions should be included somewhere.  If not here are
the steps that you are having problems with:

* Build FlightGear

 cd $BUILDDIR/src/source
 ./autogen.sh
Automake should do the next two steps, but for some reason does not for
FlightGear
(but it does for SimGear, which is odd)
 ln -s /usr/share/automake-1.6/config.guess config.guess
 ln -s /usr/share/automake-1.6/config.sub config.sub
 ./configure --prefix=$BUILDDIR --without-x
 make


You should only have to do this the first time that you build.


-- Adam




 From: Felix [EMAIL PROTECTED]
 Reply-To: FlightGear developers discussions flightgear-devel@flightgear.org
 Date: Wed, 2 Mar 2005 22:56:42 -0500
 To: flightgear-devel@flightgear.org
 Subject: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X
 
 Hi,
 
 I am trying to compile FlightGear 09 on a Mac OS X. I got plib, and
 SimGear installed fine. But FlightGear won't perform the autogen.sh
 correctly. For some reason it doesn't generate the config.sub files
 necessary for ./configure.
 
 When i run ./configure i get: configure: error: cannot run /bin/sh
 ./config.sub
 and the reason for that is that config.sub isn't there.
 
 Autogen.sh creates links for config.sub and others for SimGear, but
 not for FlightGear.
 
 I read some posts on this list from other people who had the same
 problem, but no one had a solution. Anyone have any ideas what i can
 try?
 
 Thank you,
 
 Felix
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d



___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-02 Thread Felix
Thank you Adam! That worked!

Felix


On Wed, 02 Mar 2005 20:12:54 -0800, Adam Dershowitz
[EMAIL PROTECTED] wrote:
 The mac build instructions should be included somewhere.  If not here are
 the steps that you are having problems with:
 
 * Build FlightGear
 
  cd $BUILDDIR/src/source
  ./autogen.sh
 Automake should do the next two steps, but for some reason does not for
 FlightGear
 (but it does for SimGear, which is odd)
  ln -s /usr/share/automake-1.6/config.guess config.guess
  ln -s /usr/share/automake-1.6/config.sub config.sub
  ./configure --prefix=$BUILDDIR --without-x
  make
 
 You should only have to do this the first time that you build.
 
 -- Adam
 
  From: Felix [EMAIL PROTECTED]
  Reply-To: FlightGear developers discussions 
  flightgear-devel@flightgear.org
  Date: Wed, 2 Mar 2005 22:56:42 -0500
  To: flightgear-devel@flightgear.org
  Subject: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X
 
  Hi,
 
  I am trying to compile FlightGear 09 on a Mac OS X. I got plib, and
  SimGear installed fine. But FlightGear won't perform the autogen.sh
  correctly. For some reason it doesn't generate the config.sub files
  necessary for ./configure.
 
  When i run ./configure i get: configure: error: cannot run /bin/sh
  ./config.sub
  and the reason for that is that config.sub isn't there.
 
  Autogen.sh creates links for config.sub and others for SimGear, but
  not for FlightGear.
 
  I read some posts on this list from other people who had the same
  problem, but no one had a solution. Anyone have any ideas what i can
  try?
 
  Thank you,
 
  Felix
 
  ___
  Flightgear-devel mailing list
  Flightgear-devel@flightgear.org
  http://mail.flightgear.org/mailman/listinfo/flightgear-devel
  2f585eeea02e2c79d7b1d8c4963bae2d
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d


___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X

2005-03-02 Thread Felix
Spoke too soon...The configure worked but now the make fails:
Making all in tests
g++  -g -O2 -D_REENTRANT  -L/FlightGear/lib -o test-up  test-up.o
-lsgmath -lsgxml -lsgmisc -lsgdebug -lsgstructure -lsgtiming -lplibsg
-lplibul -lz
ld: can't locate file for: -lsgmath
make[1]: *** [test-up] Error 1
make: *** [all-recursive] Error 1

Any ideas? Thank you!!!

Felix



On Wed, 02 Mar 2005 20:12:54 -0800, Adam Dershowitz
[EMAIL PROTECTED] wrote:
 The mac build instructions should be included somewhere.  If not here are
 the steps that you are having problems with:
 
 * Build FlightGear
 
  cd $BUILDDIR/src/source
  ./autogen.sh
 Automake should do the next two steps, but for some reason does not for
 FlightGear
 (but it does for SimGear, which is odd)
  ln -s /usr/share/automake-1.6/config.guess config.guess
  ln -s /usr/share/automake-1.6/config.sub config.sub
  ./configure --prefix=$BUILDDIR --without-x
  make
 
 You should only have to do this the first time that you build.
 
 -- Adam
 
  From: Felix [EMAIL PROTECTED]
  Reply-To: FlightGear developers discussions 
  flightgear-devel@flightgear.org
  Date: Wed, 2 Mar 2005 22:56:42 -0500
  To: flightgear-devel@flightgear.org
  Subject: [Flightgear-devel] Compiling Flightgear 0.9 from CVS on Mac OS X
 
  Hi,
 
  I am trying to compile FlightGear 09 on a Mac OS X. I got plib, and
  SimGear installed fine. But FlightGear won't perform the autogen.sh
  correctly. For some reason it doesn't generate the config.sub files
  necessary for ./configure.
 
  When i run ./configure i get: configure: error: cannot run /bin/sh
  ./config.sub
  and the reason for that is that config.sub isn't there.
 
  Autogen.sh creates links for config.sub and others for SimGear, but
  not for FlightGear.
 
  I read some posts on this list from other people who had the same
  problem, but no one had a solution. Anyone have any ideas what i can
  try?
 
  Thank you,
 
  Felix
 
  ___
  Flightgear-devel mailing list
  Flightgear-devel@flightgear.org
  http://mail.flightgear.org/mailman/listinfo/flightgear-devel
  2f585eeea02e2c79d7b1d8c4963bae2d
 
 ___
 Flightgear-devel mailing list
 Flightgear-devel@flightgear.org
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d


___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d