head	1.2;
access;
symbols
	old_RELEASE_4_5_0:1.1
	old_RELEASE_4_4_0:1.1
	old_RELEASE_4_3_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2002.03.31.10.23.43;	author olgeni;	state dead;
branches;
next	1.1;

1.1
date	2001.01.23.20.50.38;	author pb;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Update port to version 8.0 (R8B-0).

Remove my code to handle the documentation merge for patched releases, it
was rather obscure and error-prone. I'll rewrite it in a simpler way next
time I'll need to perform the merge.

Also include a fix for erlang-mode under emacs21 (by Hal Snyder
<hal@@vailsys.com> on the erlang mailing list).
@
text
@--- lib/os_mon/src/disksup.erl.orig	Sat Dec  2 22:19:26 2000
+++ lib/os_mon/src/disksup.erl	Sat Dec  2 22:19:34 2000
@@@@ -81,6 +81,9 @@@@
 check_disk_space(State) when State#state.os == {unix, solaris} ->
     Result = os:cmd("/usr/bin/df -lk"),
     check_disks_solaris(skip_to_eol(Result), State#state.threshold);
+check_disk_space(State) when State#state.os == {unix, freebsd} ->
+    Result = os:cmd("/bin/df -k -t ufs"),
+    check_disks_solaris(skip_to_eol(Result), State#state.threshold);
 check_disk_space(State) when State#state.os == {unix, sunos4} ->
     Result = os:cmd("df"),
     check_disks_solaris(skip_to_eol(Result), State#state.threshold).
@@@@ -162,6 +165,8 @@@@
 		{4,_,_} -> {unix, sunos4};
 		V -> exit({{unknown_os_version, V}, {disk_sup, get_os, []}})
 	    end;
+	{unix, freebsd} ->
+	    {unix, freebsd};
 	{win32,W} ->
 	    {win32,W};	    
 	Type ->
@


1.1
log
@Update port to erlang 7.1.0.
Change maintainer (agreed to by previous maintainer).

PR:		ports/24456
Submitted by:	sam@@inf.enst.fr
@
text
@@

