Navigation Menu

Skip to content

Commit

Permalink
Removed automake dependency, to allow Universal binaries on Mac OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Apr 30, 2006
1 parent 1b8f9a5 commit 71f8c28
Show file tree
Hide file tree
Showing 30 changed files with 1,162 additions and 934 deletions.
3 changes: 3 additions & 0 deletions CHANGES
@@ -1,4 +1,7 @@
1.2.7:
Sam Lantinga - Sun Apr 30 09:01:44 PDT 2006
* Removed automake dependency, to allow Universal binaries on Mac OS X
* Added gcc-fat.sh for generating Universal binaries on Mac OS X
Sam Lantinga - Sun Apr 30 01:48:40 PDT 2006
* Updated libtool support to version 1.5.22
Patrice Mandin - Sat Jul 16 16:43:24 UTC 2005
Expand Down
33 changes: 0 additions & 33 deletions Makefile-EXE.wat

This file was deleted.

80 changes: 0 additions & 80 deletions Makefile.am

This file was deleted.

75 changes: 0 additions & 75 deletions Makefile.wat

This file was deleted.

91 changes: 0 additions & 91 deletions SDLMIXER.lnk

This file was deleted.

30 changes: 0 additions & 30 deletions Watcom-EXE.mif

This file was deleted.

Binary file added Watcom-OS2.zip
Binary file not shown.
34 changes: 0 additions & 34 deletions Watcom.mif

This file was deleted.

18 changes: 14 additions & 4 deletions autogen.sh
@@ -1,8 +1,18 @@
#!/bin/sh
#
aclocal
automake --foreign --include-deps --add-missing --copy
autoconf
echo "Generating build information using autoconf"
echo "This may take a while ..."

#./configure $*
# Regenerate configuration files
cp acinclude.m4 aclocal.m4
found=false
for autoconf in autoconf autoconf259
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
done
if test x$found = xfalse; then
echo "Couldn't find autoconf, aborting"
exit 1
fi

# Run configure for this platform
echo "Now you are ready to run ./configure"

0 comments on commit 71f8c28

Please sign in to comment.