changeset 1714:1c13fc28bd88

Add support for BSD (patch from Michael Franz). 2009-03-03 Andrew John Hughes <ahughes@redhat.com> * AUTHORS: Add Michael Franz. 2009-03-03 Michael Franz <mvfranz@gmail.com> * acinclude.m4: Add support for BSD.
author Andrew John Hughes <ahughes@redhat.com>
date Tue, 03 Mar 2009 09:31:37 +0000
parents 24cb346d989c
children 22425c2ed9a9
files AUTHORS ChangeLog acinclude.m4
diffstat 3 files changed, 14 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/AUTHORS	Tue Mar 03 09:18:36 2009 +0000
+++ b/AUTHORS	Tue Mar 03 09:31:37 2009 +0000
@@ -10,6 +10,7 @@
 Pablo del Campo <pablogdc@gmail.com>
 Thomas Fitzsimmons <fitzsim@redhat.com>
 Matthew Flaschen <matthew.flaschen@gatech.edu>
+Michael Franz <mvfranz@gmail.com>
 Kyle Galloway <kgallowa@redhat.com>
 Dennis Gilmore <dgilmore@redhat.com>
 Andrew Haley <aph@redhat.com>
--- a/ChangeLog	Tue Mar 03 09:18:36 2009 +0000
+++ b/ChangeLog	Tue Mar 03 09:31:37 2009 +0000
@@ -1,3 +1,12 @@
+2009-03-03  Andrew John Hughes  <ahughes@redhat.com>
+
+	* AUTHORS: Add Michael Franz.
+	
+2009-03-03  Michael Franz  <mvfranz@gmail.com>
+
+	* acinclude.m4:
+	Add support for BSD.
+	
 2009-03-03  Gary Benson  <gbenson@redhat.com>
 
 	* ports/hotspot/src/share/vm/shark/sharkBytecodeTracer.cpp:
--- a/acinclude.m4	Tue Mar 03 09:18:36 2009 +0000
+++ b/acinclude.m4	Tue Mar 03 09:31:37 2009 +0000
@@ -77,6 +77,10 @@
       BUILD_OS_DIR=solaris
       OS_PATH=/opt/SunStudioExpress/bin:/opt/SUNWpro/bin:/usr/gnu/bin
       ;;
+    *darwin*|*bsd*)
+      BUILD_OS_DIR=bsd
+      OS_PATH=
+      ;;
     *)
       AC_MSG_ERROR([unsupported operating system ${host_os}])
       ;;