Skip to content

Commit

Permalink
added conditional compile for ivy bus address in jsbsim fixedwing sim…
Browse files Browse the repository at this point in the history
…, darwin or linux
  • Loading branch information
scdwyer committed Jul 25, 2011
1 parent 7dd9d96 commit eb24667
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sw/simulator/sim_ac_jsbsim.c
Expand Up @@ -57,7 +57,11 @@ static void sim_parse_options(int argc, char** argv);
static void sim_init(void);
static gboolean sim_periodic(gpointer data);

#ifdef __APPLE__
string ivyBus = "224.255.255.255";
#else
string ivyBus = "127.255.255.255";
#endif
string fgAddress = "127.0.0.1";

static void ivy_transport_init(void);
Expand Down

0 comments on commit eb24667

Please sign in to comment.