aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-09-30 14:55:55 -0700
committerAdam Vandenberg2012-09-30 14:55:55 -0700
commit1e4d006d357494fe873df06069937d8c45196ed0 (patch)
treeef11a9fdb8e983398366ab975f77c005b2b069f5 /Library/Formula
parent141ff616a307e637db3d57ea6e7848d5895b3e21 (diff)
downloadhomebrew-1e4d006d357494fe873df06069937d8c45196ed0.tar.bz2
Move o-make to the boneyard.
o-make has not been kept up-to-date with ocaml versions, so redacting. Closes #15031.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/o-make.rb46
1 files changed, 0 insertions, 46 deletions
diff --git a/Library/Formula/o-make.rb b/Library/Formula/o-make.rb
deleted file mode 100644
index d2fee2636..000000000
--- a/Library/Formula/o-make.rb
+++ /dev/null
@@ -1,46 +0,0 @@
-require 'formula'
-
-class OMake < Formula
- url 'http://omake.metaprl.org/downloads/omake-0.9.8.5-3.tar.gz'
- homepage 'http://omake.metaprl.org/'
- sha1 'e78c9d8858749f5e234cba303637980e24085cbc'
-
- depends_on 'objective-caml'
-
- def patches
- # removes reference to missing caml_sync in OS X OCaml
- DATA
- end
-
- def install
- system "make", "install", "PREFIX=#{prefix}"
- end
-end
-
-__END__
-diff --git a/src/exec/omake_exec.ml b/src/exec/omake_exec.ml
-index 8c034b5..7e40b35 100644
---- a/src/exec/omake_exec.ml
-+++ b/src/exec/omake_exec.ml
-@@ -46,8 +46,6 @@ open Omake_exec_notify
- open Omake_options
- open Omake_command_type
-
--external sync : unit -> unit = "caml_sync"
--
- module Exec =
- struct
- (*
-diff --git a/OMakefile b/OMakefile
-index 9b77a25..1d61d70 100644
---- a/OMakefile
-+++ b/OMakefile
-@@ -57,7 +57,7 @@ if $(not $(defined CAMLLIB))
- #
- # OCaml options
- #
--OCAMLFLAGS[] += -w Ae$(if $(OCAML_ACCEPTS_Z_WARNING), z)
-+OCAMLFLAGS[] += -w Ae$(if $(OCAML_ACCEPTS_Z_WARNING), z)-9-27..29
- if $(THREADS_ENABLED)
- OCAMLFLAGS += -thread
- export