Skip to content

Commit 99ca7f8

Browse files
committed
Travis: --enable-dba --with-gdbm --tcadb
1 parent 018395e commit 99ca7f8

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ notifications:
1010
env:
1111
- REPORT_EXIT_STATUS=1 TEST_PHP_EXECUTABLE=./sapi/cli/php
1212

13+
before_install:
14+
# Required by dba-tcadb
15+
- sudo apt-get install -qq libtokyocabinet-dev
16+
1317
before_script:
1418
# Compile PHP
1519
- ./travis/compile.sh

travis/compile.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
#!/bin/bash
22
./buildconf
33
./configure \
4+
--without-pear \
45
--with-pdo-mysql \
56
--with-mysql \
67
--with-mysqli \
78
--with-pgsql \
89
--with-pdo-pgsql \
910
--with-pdo-sqlite \
11+
--enable-dba \
12+
--with-gdbm \
13+
--with-tcadb \
1014
--enable-intl \
11-
--without-pear \
1215
--with-gd \
1316
--with-jpeg-dir=/usr \
1417
--with-png-dir=/usr \
@@ -36,4 +39,4 @@
3639
--enable-bcmath \
3740
--enable-fastcgi \
3841
--with-mime-magic
39-
make
42+
make

0 commit comments

Comments
 (0)