~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/autorun.sh

merge latest from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
ACLOCAL_FLAGS="-I m4"
11
11
# AUTOHEADER=${AUTOHEADER:-autoheader}
12
12
# AUTOMAKE=${AUTOMAKE:-automake}
 
13
# --add-missing instructs automake to install missing auxiliary files
 
14
# --copy tells it to make copies and not symlinks
13
15
AUTOMAKE_FLAGS="--add-missing --copy --force"
14
16
# AUTOCONF=${AUTOCONF:-autoconf}
15
17
 
40
42
    LIBTOOLIZE=libtoolize
41
43
  elif test \! "x`which glibtoolize 2> /dev/null | grep -v '^no'`" = x; then
42
44
    LIBTOOLIZE=glibtoolize
43
 
  else 
 
45
  else
44
46
    echo "libtoolize 1.5.x wasn't found, exiting"; exit 1
45
47
  fi
46
48
fi
96
98
fi
97
99
 
98
100
 
 
101
# --force means overwrite ltmain.sh script if it already exists 
 
102
run $LIBTOOLIZE $LIBTOOLIZE_FLAGS || die "Can't execute libtoolize"
 
103
 
99
104
run $ACLOCAL $ACLOCAL_FLAGS || die "Can't execute aclocal"
100
105
run $AUTOHEADER || die "Can't execute autoheader"
101
 
 
102
 
# --force means overwrite ltmain.sh script if it already exists 
103
 
run $LIBTOOLIZE $LIBTOOLIZE_FLAGS || die "Can't execute libtoolize"
104
 
 
105
 
# --add-missing instructs automake to install missing auxiliary files
106
 
# and --force to overwrite them if they already exist
107
106
run $AUTOMAKE $AUTOMAKE_FLAGS  || die "Can't execute automake"
108
107
run $AUTOCONF || die "Can't execute autoconf"
109
108
echo -n "Automade with: "