Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # Run this to generate all the initial makefiles, etc. |
| 3 | |
Elliot Lee | 8f8b4c8 | 1998-12-23 00:37:26 +0000 | [diff] [blame] | 4 | srcdir=`dirname $0` |
| 5 | test -z "$srcdir" && srcdir=. |
| 6 | |
| 7 | THEDIR=`pwd` |
| 8 | cd $srcdir |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 9 | DIE=0 |
| 10 | |
| 11 | (autoconf --version) < /dev/null > /dev/null 2>&1 || { |
| 12 | echo |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 13 | echo "You must have autoconf installed to compile libxml." |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 14 | echo "Download the appropriate package for your distribution," |
William M. Brack | 476cd96 | 2003-08-13 11:09:42 +0000 | [diff] [blame] | 15 | echo "or see http://www.gnu.org/software/autoconf" |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 16 | DIE=1 |
| 17 | } |
| 18 | |
Colin Walters | ca03efc | 2012-01-27 06:56:23 -0500 | [diff] [blame] | 19 | (libtoolize --version) < /dev/null > /dev/null 2>&1 || { |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 20 | echo |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 21 | echo "You must have libtool installed to compile libxml." |
William M. Brack | 476cd96 | 2003-08-13 11:09:42 +0000 | [diff] [blame] | 22 | echo "Download the appropriate package for your distribution," |
| 23 | echo "or see http://www.gnu.org/software/libtool" |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 24 | DIE=1 |
| 25 | } |
| 26 | |
William M. Brack | 476cd96 | 2003-08-13 11:09:42 +0000 | [diff] [blame] | 27 | (automake --version) < /dev/null > /dev/null 2>&1 || { |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 28 | echo |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 29 | DIE=1 |
William M. Brack | 476cd96 | 2003-08-13 11:09:42 +0000 | [diff] [blame] | 30 | echo "You must have automake installed to compile libxml." |
| 31 | echo "Download the appropriate package for your distribution," |
| 32 | echo "or see http://www.gnu.org/software/automake" |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | if test "$DIE" -eq 1; then |
| 36 | exit 1 |
| 37 | fi |
| 38 | |
Daniel Veillard | cd1d944 | 2001-06-23 18:53:44 +0000 | [diff] [blame] | 39 | test -f entities.c || { |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 40 | echo "You must run this script in the top-level libxml directory" |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 41 | exit 1 |
| 42 | } |
| 43 | |
Daniel Veillard | 16d3a61 | 2012-02-29 09:34:32 +0800 | [diff] [blame] | 44 | EXTRA_ARGS= |
| 45 | if test "x$1" = "x--system"; then |
| 46 | shift |
| 47 | prefix=/usr |
| 48 | libdir=$prefix/lib |
| 49 | sysconfdir=/etc |
| 50 | localstatedir=/var |
| 51 | if [ -d /usr/lib64 ]; then |
| 52 | libdir=$prefix/lib64 |
| 53 | fi |
| 54 | EXTRA_ARGS="--prefix=$prefix --sysconfdir=$sysconfdir --localstatedir=$localstatedir --libdir=$libdir" |
| 55 | echo "Running ./configure with $EXTRA_ARGS $@" |
| 56 | else |
| 57 | if test -z "$NOCONFIGURE" && test -z "$*"; then |
| 58 | echo "I am going to run ./configure with no arguments - if you wish " |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 59 | echo "to pass any to it, please specify them on the $0 command line." |
Daniel Veillard | 16d3a61 | 2012-02-29 09:34:32 +0800 | [diff] [blame] | 60 | fi |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 61 | fi |
| 62 | |
Rob Richards | bdf24b9 | 2010-04-26 16:09:34 -0400 | [diff] [blame] | 63 | if [ ! -d $srcdir/m4 ]; then |
| 64 | mkdir $srcdir/m4 |
| 65 | fi |
| 66 | |
Daniel Veillard | 743311b | 2010-03-10 10:35:56 +0100 | [diff] [blame] | 67 | # Replaced by autoreconf below |
Daniel Richard G | ec4fc52 | 2012-08-17 10:04:30 +0800 | [diff] [blame] | 68 | autoreconf -if -Wall |
Elliot Lee | 8f8b4c8 | 1998-12-23 00:37:26 +0000 | [diff] [blame] | 69 | |
| 70 | cd $THEDIR |
Arturo Espinosa | cd69df9 | 1998-12-28 23:49:02 +0000 | [diff] [blame] | 71 | |
| 72 | if test x$OBJ_DIR != x; then |
| 73 | mkdir -p "$OBJ_DIR" |
| 74 | cd "$OBJ_DIR" |
| 75 | fi |
| 76 | |
Colin Walters | 81809d5 | 2012-01-05 10:08:03 -0500 | [diff] [blame] | 77 | if test -z "$NOCONFIGURE"; then |
Daniel Veillard | 16d3a61 | 2012-02-29 09:34:32 +0800 | [diff] [blame] | 78 | $srcdir/configure $EXTRA_ARGS "$@" |
| 79 | echo |
Javier Jardón | 05fd028 | 2012-04-02 17:39:26 +0100 | [diff] [blame] | 80 | echo "Now type 'make' to compile libxml2." |
Colin Walters | 81809d5 | 2012-01-05 10:08:03 -0500 | [diff] [blame] | 81 | fi |