Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Jan 2021 21:20:01 +0000 (UTC)
From:      Torsten Zuehlsdorff <tz@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r561111 - branches/2021Q1/lang/php80
Message-ID:  <202101102120.10ALK1Xk000108@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
 



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