Parent: [73995b] (diff)

Download this file

make.sh    15 lines (13 with data), 416 Bytes

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