From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CB6DC46704; Fri, 9 May 2025 23:52:27 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 63B964025D; Fri, 9 May 2025 23:52:27 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 20D8D4025A for ; Fri, 9 May 2025 23:52:25 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1213) id 1C11221199FB; Fri, 9 May 2025 14:52:24 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1C11221199FB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1746827544; bh=DWt2fS9vaA7tqlTA7zfykd7znnrPYYmfMkPtINeuj58=; h=From:To:Cc:Subject:Date:From; b=nBK5BqL1Lrnr0QdfBeoyopsUGYvAOORqkFktjikc2Bt0xnqgq57Q548l1dAKGxuDL rkYUJRiGdEF698NZYlHWClM/cQR+IrGMmk9dnQPuXRiE4EYMGeWSNNLyVGbg4uNFSN 7Rplcv8PoihJQqR95KtCA5fZr0p9MZN9Zp55kYCw= From: Andre Muezerie To: Ori Kam Cc: dev@dpdk.org, Andre Muezerie Subject: [PATCH] regexdev: enable to be compiled on Windows Date: Fri, 9 May 2025 14:52:14 -0700 Message-Id: <1746827534-19881-1-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Now that mbuf is compiling on Windows, this library can be enabled as well. Signed-off-by: Andre Muezerie --- lib/regexdev/meson.build | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/regexdev/meson.build b/lib/regexdev/meson.build index 426e764ece..7e12d8cd6d 100644 --- a/lib/regexdev/meson.build +++ b/lib/regexdev/meson.build @@ -1,12 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright 2020 Mellanox Technologies, Ltd -if is_windows - build = false - reason = 'not supported on Windows' - subdir_done() -endif - sources = files('rte_regexdev.c') headers = files('rte_regexdev.h', 'rte_regexdev_driver.h') indirect_headers += files('rte_regexdev_core.h') -- 2.49.0.vfs.0.2