]> git.saurik.com Git - cycript.git/blobdiff - apple-configure.sh
Also use CXType walker to for function prototypes.
[cycript.git] / apple-configure.sh
index 50b4461885e0730da9d129f86a5e067853d32128..103b11ddb9d7f627e6a27391e60b79ea0f39c698 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 
-# Cycript - Optimizing JavaScript Compiler/Runtime
-# Copyright (C) 2009-2015  Jay Freeman (saurik)
+# Cycript - The Truly Universal Scripting Language
+# Copyright (C) 2009-2016  Jay Freeman (saurik)
 
 # GNU Affero General Public License, Version 3 {{{
 #
@@ -23,15 +23,6 @@ set -e
 
 cd "${0%%/*}"
 
-if ! which aclocal; then
-    touch aclocal.m4; fi
-if ! which autoconf; then
-    touch configure.ac; fi
-if ! which automake; then
-    touch Makefile.in; fi
-if ! which autoheader; then
-    touch config.h.in; fi
-
 flags=("$@")
 ccf=(-g0 -O3)
 
@@ -43,7 +34,7 @@ xcs=$(xcode-select --print-path)
 mac=$(path macosx)
 xct="${xcs}/Toolchains/XcodeDefault.xctoolchain/usr/lib"
 
-system=0
+system=1
 
 function configure() {
     local dir=$1
@@ -87,7 +78,8 @@ function configure() {
 
 for arch in i386 x86_64; do
     configure "osx-${arch}" "${mac}" "${arch}" "-mmacosx-version-min=10.6" \
-        false "-I../readline.osx" "-L../readline.osx" ""
+        false "-I../readline.osx" "-L../readline.osx" "" \
+        --with-python=/usr/bin/python-config
 done
 
 for arch in i386 x86_64; do