aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/spidermonkey.rb
blob: e4c0b061b5a9c006447a7f6693f6a9d6c8c5d871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
require 'brewkit'

class Spidermonkey <Formula  
  @url="http://ftp.mozilla.org/pub/mozilla.org/js/js-1.7.0.tar.gz"
  @homepage='https://developer.mozilla.org/en/SpiderMonkey'
  @md5='5571134c3863686b623ebe4e6b1f6fe6'

  depends_on 'readline'
  depends_on 'nspr'

  def patches
    DATA
  end

  def install
    ENV.j1

    # Spidermonkey hardsets the CC and CCC environment variables to cc and g++
    # but homebrew uses compiler flags that aren't available in Apple's default cc (version 4.0.1)
    # instead use the compilers chosen by homebrew and set in the CC and CXX environment variables
    inreplace "src/config/Darwin.mk", 'CC = cc', "CC = #{ENV['CC']}"
    inreplace "src/config/Darwin.mk", 'CCC = g++', "CCC = #{ENV['CXX']}"

    # aparently this flag causes the build to fail for ivanvc on 10.5 with a
    # penryn (core 2 duo) CPU. So lets be cautious here and remove it.
    ENV['CFLAGS'] = ENV['CFLAGS'].gsub(/-msse[^\s]+/, '')

    Dir.chdir "src" do
      system "make JS_DIST=#{HOMEBREW_PREFIX} JS_THREADSAFE=1 DEFINES=-DJS_C_STRINGS_ARE_UTF8 -f Makefile.ref"
      system "make JS_DIST=#{prefix} -f Makefile.ref export"
      system "ranlib #{prefix}/lib/libjs.a"
    end
  end
end


__END__
--- a/src/jsprf.c	2009-07-26 12:32:01.000000000 -0700
+++ b/src/jsprf.c	2009-07-26 12:33:12.000000000 -0700
@@ -58,6 +58,8 @@
 */
 #ifdef HAVE_VA_COPY
 #define VARARGS_ASSIGN(foo, bar)        VA_COPY(foo,bar)
+#elif defined(va_copy)
+#define VARARGS_ASSIGN(foo, bar)        va_copy(foo,bar)
 #elif defined(HAVE_VA_LIST_AS_ARRAY)
 #define VARARGS_ASSIGN(foo, bar)        foo[0] = bar[0]
 #else