Skip to content

Commit

Permalink
tools/build-sdlmixer.sh now also finds MacPorts-installed dir
Browse files Browse the repository at this point in the history
Homebrew has the macros in /usr/local/share/aclocal;
MacPorts has the macros in /opt/local/share/aclocal;
I don't understand why the -I argument is needed with either of
these directories, since
aclocal --print-ac-dir returns this directory.
The AC_DIR is searched by default.
An -I argument directory is searched before AC_DIR
See:
http://www.slac.stanford.edu/comp/unix/package/rtems/doc/
html/automake/automake.info.Macro_search_path.html
  • Loading branch information
rogererens committed Nov 3, 2012
1 parent f24fc68 commit af068a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Kivy for IOS
pip install cython

#. Build the whole toolchain with `tools/build_all.sh`

Make sure the output ends with '== Build ended'

#. Create an Xcode project for your application with `tools/create-xcode-project.sh test /path/to/app`
#. Open your newly created Xcode project
#. Ensure code signing is setup correctly
Expand Down
2 changes: 1 addition & 1 deletion tools/build-sdlmixer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if [ ! -f libtremor/tremor/.libs/libvorbisidec.a ]; then
OGG_CFLAGS="-I../../libogg/include" \
OGG_LDFLAGS="-L../../libogg/src/.libs" \
PKG_CONFIG_LIBDIR="../../libogg" \
ACLOCAL_FLAGS="-I /usr/local/share/aclocal -I /opt/local/share/aclocal" ./autogen.sh \
ACLOCAL_FLAGS="-I `aclocal --print-ac-dir`" ./autogen.sh \
--disable-shared \
--host=arm-apple-darwin \
--enable-static=yes \
Expand Down

0 comments on commit af068a7

Please sign in to comment.