]> git.mxchange.org Git - simgear.git/commitdiff
Fix a build order problem.
authorcurt <curt>
Wed, 20 Dec 2000 15:06:04 +0000 (15:06 +0000)
committercurt <curt>
Wed, 20 Dec 2000 15:06:04 +0000 (15:06 +0000)
simgear/Makefile.am
simgear/misc/props_test.cxx

index 1fc14cc79658944711dfbc18c33ca20b07464908..baf586c7b7ca03692e34b69aabf7a8899943d3f2 100644 (file)
@@ -32,6 +32,7 @@ SUBDIRS = \
        magvar \
        math \
        $(METAR_DIRS) \
+       xml \
        misc \
        route \
        screen \
@@ -39,6 +40,5 @@ SUBDIRS = \
        sky \
        timing \
        xgl \
-       xml \
        $(ZLIB_DIRS)
 
index 2f033ea6cd6eca58451e1e23b1bc3501d485906c..9f1b0d4f0c6509b4091e5ab901ff7cd02111c7c7 100644 (file)
@@ -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;
 }