Update of /cvsroot/sharedaemon/ui-wx
In directory sc8-pr-cvs1:/tmp/cvs-serv31757
Modified Files:
configure
Log Message:
Fixed BSD detection
Index: configure
===================================================================
RCS file: /cvsroot/sharedaemon/ui-wx/configure,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- configure 30 Dec 2003 05:35:05 -0000 1.16
+++ configure 30 Dec 2003 05:43:52 -0000 1.17
@@ -149,9 +149,7 @@
shift;
done;
- if test $system = "FreeBSD"; then colours=0; fi;
- if test $system = "NetBSD"; then colours=0; fi;
- if test $system = "OpenBSD"; then colours=0; fi;
+ if test $system = "BSD"; then colours=0; fi;
if test $system = "Cygwin"; then colours=0; fi;
echo -e "checking for --disable-colours\\t\\t\\t\\c";
@@ -451,9 +449,7 @@
fi;
fi;
- if test $system = "FreeBSD"; then cppflags="$cppflags -D__BSD__"; fi;
- if test $system = "NetBSD"; then cppflags="$cppflags -D__BSD__"; fi;
- if test $system = "OpenBSD"; then cppflags="$cppflags -D__BSD__"; fi;
+ if test $system = "BSD"; then cppflags="$cppflags -D__BSD__"; fi;
if test $show_flags = 1; then
print_cpp_flags=" with flags: `$wxconfig --cxxflags` $cppflags $include";
|