From nobody Mon Apr 24 20:16:21 2023 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Q4xH73SF0z47JBl; Mon, 24 Apr 2023 20:16:35 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-lf1-f49.google.com (mail-lf1-f49.google.com [209.85.167.49]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Q4xH70lnbz3Pwh; Mon, 24 Apr 2023 20:16:35 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: by mail-lf1-f49.google.com with SMTP id 2adb3069b0e04-4eed6ddcae1so21155328e87.0; Mon, 24 Apr 2023 13:16:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1682367392; x=1684959392; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=AowRtd72NF++q0Vxp4aKHeBf4DnE7+7DbEyjCTwLVJ8=; b=eXoK+MVxozmV0S2VpvGyZrMdKIT0j5B1j0Qv6tGpaU9uBLFOyGKKh1RUdVte1eTvrb f1aYXPsNoKU7iTdcJrYidwyzYfxmEQab4VT2ywqqMUNqMH1is/TdzHmyVV4JoAn3AZUI pbUpI95l0eY/eRjHAfa2VbX9DPOrBp2ALwmJWhBAJZdfH/x9lBN0CzQ0ARWj6IZ6eDNW yluGSEy4SPzwBm0zfTgT/Um7gfdGv72/7ZzWjv3T1heojpNEWSycCamDxjb5PdojLwPk QCWBGhkjHpFYmjIEUKw8ARaLFhOVLv5lcjFwPCjIK1xMTP0TfV0EqCpr4GtZ0WbAOg1Y Q5tQ== X-Gm-Message-State: AAQBX9egmbs9IwVVFM7433T6+M75VosHXEaH+yfBxc+Ip7VlHijCv7Sg KAYmMxU1eW9JSH2NeI7MDxpJjCQ/aRjFmFoe6dbtWBem X-Google-Smtp-Source: AKy350ZCM35k/9yObrYWB7z96iXk6W2wqeMKvGXYRcTHC4fnULl5XCJa9tXzpSeA6syQsfbCty9jE6eyerpe7RZB5EM= X-Received: by 2002:a05:6512:32c1:b0:4eb:412e:b06a with SMTP id f1-20020a05651232c100b004eb412eb06amr4847641lfg.22.1682367391979; Mon, 24 Apr 2023 13:16:31 -0700 (PDT) List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 References: <202304242001.33OK19wU009301@gitrepo.freebsd.org> In-Reply-To: <202304242001.33OK19wU009301@gitrepo.freebsd.org> From: Antoine Brodin Date: Mon, 24 Apr 2023 20:16:21 +0000 Message-ID: Subject: Re: git: 9f5034f55a47 - main - Mk/Uses/php.mk: Refactor To: Muhammad Moinur Rahman Cc: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4Q4xH70lnbz3Pwh X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:15169, ipnet:209.85.128.0/17, country:US]; TAGGED_FROM(0.00)[] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Mon, Apr 24, 2023 at 8:01=E2=80=AFPM Muhammad Moinur Rahman wrote: > > The branch main has been updated by bofh: > > URL: https://cgit.FreeBSD.org/ports/commit/?id=3D9f5034f55a47591288167cd4= 9fe4bb963143caed > > commit 9f5034f55a47591288167cd49fe4bb963143caed > Author: Muhammad Moinur Rahman > AuthorDate: 2023-04-24 19:59:31 +0000 > Commit: Muhammad Moinur Rahman > CommitDate: 2023-04-24 20:01:01 +0000 > > Mk/Uses/php.mk: Refactor > > - Replace old USE_APACHE_RUN with USES=3Dapache:run > - Prior to php8.0 there was a check for the required libname which > contained the version number of php. Remove the conditional. > > Sponsored by: Bounce Experts > --- > Mk/Uses/php.mk | 7 +------ > 1 file changed, 1 insertion(+), 6 deletions(-) Hi, Overriding USES doesn't look good. Maybe it should be something like this instead: apache_ARGS?=3Drun .include "${USESDIR}/apache.mk" Antoine