From f33c134f764cb9d1f326a32d5b1e09324db9316b Mon Sep 17 00:00:00 2001 From: "M. Anthony Aiello" Date: Tue, 6 Feb 2024 15:51:21 -0500 Subject: [PATCH] Remove references to nonexistent TOML files. There are no TOML files in the project, but the `zmq.gpr` file mentioned them. `gprbuild` now issues a warning when this happens. --- zmq.gpr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zmq.gpr b/zmq.gpr index 0449b21..978c8e7 100644 --- a/zmq.gpr +++ b/zmq.gpr @@ -31,7 +31,7 @@ ------------------------------------------------------------------------------ with "libzmq.gpr"; project ZMQ is - for Languages use ("Ada", "Makefile", "Python", "Toml"); + for Languages use ("Ada", "Makefile", "Python"); type ZMQ_Kind_Type is ("static", "relocatable"); ZMQ_Kind : ZMQ_Kind_Type := external ("LIBRARY_TYPE", "static"); @@ -91,7 +91,6 @@ project ZMQ is for Specification_Exceptions ("Makefile") use ("Makefile"); for Spec_Suffix ("sed") use ".sed"; for Body_Suffix ("Python") use ".py"; - for Body_Suffix ("Toml") use ".toml"; for Implementation_Exceptions ("Python") use ("configure"); end Naming; end ZMQ;