|
a/src/php/recoll/make.sh |
|
b/src/php/recoll/make.sh |
1 |
#!/bin/sh
|
1 |
#!/bin/sh
|
2 |
phpize --clean
|
2 |
phpize --clean
|
3 |
phpize
|
3 |
phpize
|
|
|
4 |
|
|
|
5 |
# The version of libtool shipped with php at this time (2010-01-29)
|
|
|
6 |
# is buggy (ECHO/echo typo...)
|
|
|
7 |
# autoreconf -i should replace them with the system versions
|
|
|
8 |
# Another approach would be to ship an autoconf'd version to avoid
|
|
|
9 |
# needing autotools on the target compile system. What a mess.
|
|
|
10 |
rm -f ltmain.sh libtool
|
4 |
rm aclocal.m4 -rf
|
11 |
rm -f aclocal.m4
|
5 |
autoreconf
|
12 |
autoreconf -i
|
6 |
./configure --enable-recoll
|
13 |
./configure --enable-recoll
|
7 |
make -j3
|
14 |
make -j3
|