From patchwork Mon Apr 10 17:02:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 67562 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 502123858436 for ; Mon, 10 Apr 2023 17:02:39 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from sonata.ens-lyon.org (sonata.ens-lyon.org [140.77.166.138]) by sourceware.org (Postfix) with ESMTPS id 504763858C52 for ; Mon, 10 Apr 2023 17:02:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 504763858C52 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=bounce.ens-lyon.org Received: from localhost (localhost [127.0.0.1]) by sonata.ens-lyon.org (Postfix) with ESMTP id 3CABC20199; Mon, 10 Apr 2023 19:02:15 +0200 (CEST) Received: from sonata.ens-lyon.org ([127.0.0.1]) by localhost (sonata.ens-lyon.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ipUJflBgiVIV; Mon, 10 Apr 2023 19:02:15 +0200 (CEST) Received: from begin (lfbn-bor-1-1163-184.w92-158.abo.wanadoo.fr [92.158.138.184]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by sonata.ens-lyon.org (Postfix) with ESMTPSA id 0576120198; Mon, 10 Apr 2023 19:02:15 +0200 (CEST) Received: from samy by begin with local (Exim 4.96) (envelope-from ) id 1pluuE-00HTqb-1r; Mon, 10 Apr 2023 19:02:14 +0200 From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Flavio Cruz , commit-hurd@gnu.org Subject: [hurd, commited] hurd: Stop depending on the default_pager stubs provided by gnumach Date: Mon, 10 Apr 2023 19:02:13 +0200 Message-Id: <20230410170213.4166302-1-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 X-Spam-Status: No, score=-13.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_DNSWL_LOW, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org Sender: "Libc-alpha" From: Flavio Cruz The hurd source tree already provides the same stubs and they are only needed there. Message-Id: --- sysdeps/mach/configure | 3 +-- sysdeps/mach/configure.ac | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sysdeps/mach/configure b/sysdeps/mach/configure index 8c341d59dc..b08872b8bc 100644 --- a/sysdeps/mach/configure +++ b/sysdeps/mach/configure @@ -248,8 +248,7 @@ mach_interface_list= for ifc in mach mach4 gnumach \ clock clock_priv host_priv host_security ledger lock_set \ processor processor_set task task_notify thread_act vm_map \ - memory_object memory_object_default default_pager \ - machine/mach_i386 \ + memory_object memory_object_default machine/mach_i386 \ ; do as_ac_Header=`$as_echo "ac_cv_header_mach/${ifc}.defs" | $as_tr_sh` ac_fn_c_check_header_preproc "$LINENO" "mach/${ifc}.defs" "$as_ac_Header" diff --git a/sysdeps/mach/configure.ac b/sysdeps/mach/configure.ac index 579c0021d5..537677c1d7 100644 --- a/sysdeps/mach/configure.ac +++ b/sysdeps/mach/configure.ac @@ -63,8 +63,7 @@ mach_interface_list= for ifc in mach mach4 gnumach \ clock clock_priv host_priv host_security ledger lock_set \ processor processor_set task task_notify thread_act vm_map \ - memory_object memory_object_default default_pager \ - machine/mach_i386 \ + memory_object memory_object_default machine/mach_i386 \ ; do AC_CHECK_HEADER(mach/${ifc}.defs, [dnl mach_interface_list="$mach_interface_list $ifc"],, -)