From: <smi...@us...> - 2003-10-19 14:37:52
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv31159/scripts Modified Files: imap php Log Message: php & imap compile broke again, this should help Index: imap =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/imap,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- imap 18 Oct 2003 18:11:50 -0000 1.1 +++ imap 19 Oct 2003 11:54:49 -0000 1.2 @@ -29,7 +29,8 @@ make slx SSLTYPE=unix.nopwd SSLINCLUDE=/usr/ssl/ EXTRACFLAGS=-I/usr/include/openssl $PMAKE all || exit 1 strip_debug # copy the stuff, we need it later - cp c-client/*.h /usr/include || exit 1 + mkdir -p /usr/include/imap || exit 1 + cp c-client/*.h /usr/include/imap || exit 1 cp c-client/*.a /usr/lib || exit 1 ln -sf c-client.a /usr/lib/libc-client.a || exit 1 Index: php =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- php 18 Oct 2003 18:11:50 -0000 1.4 +++ php 19 Oct 2003 11:54:49 -0000 1.5 @@ -32,11 +32,12 @@ if [ "$CONFIG_PHP" = "y" ]; then ./configure --with-apxs2=/usr/sbin/apxs --with-mysql=/usr --disable-cgi --with-openssl --with-zlib --with-bz2 --enable-calendar \ --with-jpeg-dir=/usr --enable-dba --with-gdbm --with-db4 --with-inifile --with-flatfile --with-dom --with-dom-xslt \ - --with-config-file-path=/etc --with-dom-exslt --enable-ftp --with-gd --with-gmp --with-kerberos \ + --with-config-file-path=/etc --with-dom-exslt --enable-ftp --with-gd --with-gmp \ --enable-gd-native-ttf --with-ldap --with-mcrypt --with-mhash --with-msession--with-pgsql --with-snmp \ - --with-imap=$IMAPDIR --with-imap-ssl \ + --with-imap=$IMAPDIR --with-imap-ssl \ --sysconfdir=/etc --with-config-file-path=/etc --prefix=/usr || exit 1 - # not working --enable-xslt + # + # not working --enable-xslt --with-kerberos # do not use --with-cyrus make $PMAKE all || exit 1 strip_debug |