1Fix the `check_unix' function, which looks for `/bin/uname' to determine
2whether we're on a Unix-like system.
3
4--- doxygen-1.5.8/tmake/bin/tmake 2008-12-06 14:16:20.000000000 +0100
5+++ doxygen-1.5.8/tmake/bin/tmake 2009-03-05 11:29:55.000000000 +0100
6@@ -234,17 +234,7 @@ sub tmake_verb {
7 #
8
9 sub check_unix {
10- my($r);
11- $r = 0;
12- if ( -f "/bin/uname" ) {
13- $r = 1;
14- (-f "\\bin\\uname") && ($r = 0);
15- }
16- if ( -f "/usr/bin/uname" ) {
17- $r = 1;
18- (-f "\\usr\\bin\\uname") && ($r = 0);
19- }
20- return $r;
21+ return 1;
22 }
23