2007-07-18 23:04:26 +00:00
|
|
|
#!/bin/sh
|
2007-08-15 20:31:17 +00:00
|
|
|
|
|
|
|
LIBTOOLIZE=libtoolize
|
2007-08-16 15:48:07 +00:00
|
|
|
if ! libtoolize --help >/dev/null 2>&1 && glibtoolize --help >/dev/null 2>&1
|
|
|
|
then
|
2007-08-15 20:31:17 +00:00
|
|
|
LIBTOOLIZE=glibtoolize
|
|
|
|
fi
|
2007-08-16 15:48:07 +00:00
|
|
|
export LIBTOOLIZE
|
2007-08-15 20:31:17 +00:00
|
|
|
|
2007-08-16 19:05:25 +00:00
|
|
|
autoreconf -fi -I m4
|