From: curt Date: Wed, 20 Dec 2000 15:06:04 +0000 (+0000) Subject: Fix a build order problem. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=663db8f978040825687f0758267819cb544daed3;p=simgear.git Fix a build order problem. --- diff --git a/simgear/Makefile.am b/simgear/Makefile.am index 1fc14cc7..baf586c7 100644 --- a/simgear/Makefile.am +++ b/simgear/Makefile.am @@ -32,6 +32,7 @@ SUBDIRS = \ magvar \ math \ $(METAR_DIRS) \ + xml \ misc \ route \ screen \ @@ -39,6 +40,5 @@ SUBDIRS = \ sky \ timing \ xgl \ - xml \ $(ZLIB_DIRS) diff --git a/simgear/misc/props_test.cxx b/simgear/misc/props_test.cxx index 2f033ea6..9f1b0d4f 100644 --- a/simgear/misc/props_test.cxx +++ b/simgear/misc/props_test.cxx @@ -321,7 +321,7 @@ test_property_nodes () } -main (int ac, char ** av) +int main (int ac, char ** av) { test_value(); test_property_nodes(); @@ -335,4 +335,6 @@ main (int ac, char ** av) writeProperties(cout, &root); cout << endl; } + + return 0; }