From owner-cvs-lib Mon Aug 21 02:42:42 1995 Return-Path: cvs-lib-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id CAA07351 for cvs-lib-outgoing; Mon, 21 Aug 1995 02:42:42 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id CAA07325 ; Mon, 21 Aug 1995 02:42:28 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id TAA16981; Mon, 21 Aug 1995 19:40:50 +1000 Date: Mon, 21 Aug 1995 19:40:50 +1000 From: Bruce Evans Message-Id: <199508210940.TAA16981@godzilla.zeta.org.au> To: CVS-commiters@freefall.FreeBSD.org, bde@freefall.FreeBSD.org, cvs-lib@freefall.FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net gethostbydns.c res_debug.c res_init.c res_mkquery.c res_query.c res_send.c Sender: cvs-lib-owner@FreeBSD.org Precedence: bulk > Modified: lib/libc/net gethostbydns.c res_debug.c res_init.c > res_mkquery.c res_query.c res_send.c > Log: > Fix bogus include paths, some of which stopped libresolv from compiling. [This changed to "res_config.h".] Perhaps I should have changed libresolv/Makefile (`CFLAGS+= -I${.CURDIR}/../libc/net') instead of changing lots of source files. It seems bogus for libresolv to have to know about the internals of libc/net. OTOH libc/netc/Makefile and the kernel Makefile use -I and `<>' paths to nail down the include path. OTSameH zillions of Makefiles depend on `""' paths working right so that -I${.CURDIR} isn't necessary for compiling in another (obj) directory. Bruce