svn commit: r561111 - branches/2021Q1/lang/php80

Torsten Zuehlsdorff tz at FreeBSD.org
Sun Jan 10 21:20:01 UTC 2021


Author: tz
Date: Sun Jan 10 21:20:01 2021
New Revision: 561111
URL: https://svnweb.freebsd.org/changeset/ports/561111

Log:
  MFH: r560908
  
  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:
  branches/2021Q1/lang/php80/Makefile
Directory Properties:
  branches/2021Q1/   (props changed)

Modified: branches/2021Q1/lang/php80/Makefile
==============================================================================
--- branches/2021Q1/lang/php80/Makefile	Sun Jan 10 21:18:08 2021	(r561110)
+++ branches/2021Q1/lang/php80/Makefile	Sun Jan 10 21:20:01 2021	(r561111)
@@ -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-branches mailing list