From owner-freebsd-questions@FreeBSD.ORG Sun Apr 17 14:24:01 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 877C316A4CE for ; Sun, 17 Apr 2005 14:24:01 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id F18F743D1D for ; Sun, 17 Apr 2005 14:24:00 +0000 (GMT) (envelope-from artifexor@gmail.com) Received: by rproxy.gmail.com with SMTP id j1so850168rnf for ; Sun, 17 Apr 2005 07:24:00 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Wrzio5oJeAvXAbXA7nPphAElyBXzF5aK8RNJrwmf+iGPtccbTCJwNw4e0UH1uyqYUYkhsscddlfKDCVbzRtW/fIBdDHUwX8axqn6yidUzZSpTbeHFZ/fgKJmnh6MWRZW1WWc2YrYfruKffcKHKU+FGmHTbuwu2olRdBvBGV+lmI= Received: by 10.38.66.45 with SMTP id o45mr321280rna; Sun, 17 Apr 2005 07:24:00 -0700 (PDT) Received: by 10.38.150.78 with HTTP; Sun, 17 Apr 2005 07:24:00 -0700 (PDT) Message-ID: <9cbf3f07050417072481b3b45@mail.gmail.com> Date: Sun, 17 Apr 2005 16:24:00 +0200 From: artifex maximus To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: autoconf259 question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: artifex maximus List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Apr 2005 14:24:01 -0000 Hello! I try to make a working configure.in but I have the following problem. I write this: AC_CHECK_HEADERS([netinet/in_systm.h]) AC_CHECK_HEADERS([netinet/in.h]) AC_CHECK_HEADERS([netinet/ip.h],,, [code to insert]) I run autoheader259 to make config.h.in. Thereafter I run configure that doesn't found netinet/ip.h and doesn't define HAVE_NETINET_IP_H. checking netinet/in_systm.h usability... yes checking netinet/in_systm.h presence... yes checking for netinet/in_systm.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking for netinet/ip.h... no File is exist: # ls -l /usr/include/netinet/ip.h -r--r--r-- 1 root wheel 6790 Mar 24 08:50 /usr/include/netinet/ip.h My system: FreeBSD * 5.4-STABLE FreeBSD 5.4-STABLE #0: Thu Apr 7 00:27:04 CEST 2005 root@* i386 What is the problem? Any idea? Thanks, artifex