svn commit: r560908 - head/lang/php80

Torsten Zuehlsdorff tz at FreeBSD.org
Sat Jan 9 23:59:15 UTC 2021


Author: tz
Date: Sat Jan  9 23:59:14 2021
New Revision: 560908
URL: https://svnweb.freebsd.org/changeset/ports/560908

Log:
  lang/php80: Fix "can't locate API module structure `php8_module' in file /usr/local/libexec/apache24/libphp.so"
  
  Because of the SHORTMODNAME an entry for php8_module was added to httpd.conf when installing www/mod_php80.
  This was an error, because the module is now simple named "php_module".
  
  PR:		251411
  Reported by:	<freebsd-bugzilla at b-society.se>
  Sponsored by:	PHP Update Service

Modified:
  head/lang/php80/Makefile

Modified: head/lang/php80/Makefile
==============================================================================
--- head/lang/php80/Makefile	Sat Jan  9 23:53:20 2021	(r560907)
+++ head/lang/php80/Makefile	Sat Jan  9 23:59:14 2021	(r560908)
@@ -102,7 +102,7 @@ CONFIGURE_ARGS+=--with-apxs2=${APXS}
 PLIST=		${PKGDIR}/pkg-plist.mod
 PKGMESSAGE=	${PKGDIR}/pkg-message.mod
 MODULENAME=	libphp
-SHORTMODNAME=	php8
+SHORTMODNAME=	php
 WARNING=	"!!! If you have a threaded Apache, you must build ${PHP_PORT} with ZTS support to enable thread-safety in extensions !!!"
 .endif
 


More information about the svn-ports-head mailing list