From 663db8f978040825687f0758267819cb544daed3 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 20 Dec 2000 15:06:04 +0000 Subject: [PATCH] Fix a build order problem. --- simgear/Makefile.am | 2 +- simgear/misc/props_test.cxx | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) 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; } -- 2.39.5