Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Jun 2012 04:30:16 GMT
From:      "Janky Jay, III" <ek@purplehat.org>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/168345: security/maia fails after php5 upgrade
Message-ID:  <201206030430.q534UGYZ055048@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/168345; it has been noted by GNATS.

From: "Janky Jay, III" <ek@purplehat.org>
To: bug-followup@FreeBSD.org, freebsd.users@gmail.com
Cc:  
Subject: Re: ports/168345: security/maia fails after php5 upgrade
Date: Sat, 02 Jun 2012 22:19:30 -0600

 This is a multi-part message in MIME format.
 --------------070208020408080907080709
 Content-Type: text/plain; charset=ISO-8859-1
 Content-Transfer-Encoding: 7bit
 
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
 This is due to PHP 5.4 dropping support for sqlite2. Therefore,
 sqlite3 (databases/php5-sqlite3) needs to replace it. Either install
 the port manually or (recommended fix) is to change the "USE_PHP ="
 extension list in the security/maia/Makefile to "sqlite3" as opposed
 to just "sqlite". Attached is a patch that fixes this issue.
 
 Regards,
 Janky Jay, III
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.11 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
 
 iEYEARECAAYFAk/K5c4ACgkQZ5znzUsaCyR9gwCfa+9nc5eVZVTPKg5pE7Z4NCJF
 9hUAnRhUPpNi4Ip0+Q1XeM6n2izlJXyu
 =NK3E
 -----END PGP SIGNATURE-----
 
 --------------070208020408080907080709
 Content-Type: text/x-diff;
  name="maia_sqlite_freebsd.patch"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="maia_sqlite_freebsd.patch"
 
 --- Makefile.orig	2012-06-02 22:09:27.000000000 -0600
 +++ Makefile	2012-06-02 22:09:38.000000000 -0600
 @@ -100,7 +100,7 @@
  .if defined(WITH_WEBHOST)
  USE_PHP=	bcmath ctype dom gettext hash iconv imap json mbstring \
  		mcrypt pdo pdo_sqlite posix session simplexml sockets \
 -		sqlite tokenizer xml wddx xmlreader xmlwriter xmlrpc
 +		sqlite3 tokenizer xml wddx xmlreader xmlwriter xmlrpc
  .endif
  
  .if defined(WITH_MYSQL)
 
 --------------070208020408080907080709--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206030430.q534UGYZ055048>