From owner-p4-projects@FreeBSD.ORG Wed Aug 6 00:09:48 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id CE7FD1065677; Wed, 6 Aug 2008 00:09:47 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 921801065674 for ; Wed, 6 Aug 2008 00:09:47 +0000 (UTC) (envelope-from thompsa@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 49B068FC0A for ; Wed, 6 Aug 2008 00:09:47 +0000 (UTC) (envelope-from thompsa@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.2/8.14.2) with ESMTP id m7609lJF084850 for ; Wed, 6 Aug 2008 00:09:47 GMT (envelope-from thompsa@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.2/8.14.1/Submit) id m7609l7n084848 for perforce@freebsd.org; Wed, 6 Aug 2008 00:09:47 GMT (envelope-from thompsa@freebsd.org) Date: Wed, 6 Aug 2008 00:09:47 GMT Message-Id: <200808060009.m7609l7n084848@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to thompsa@freebsd.org using -f From: Andrew Thompson To: Perforce Change Reviews Cc: Subject: PERFORCE change 146744 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2008 00:09:48 -0000 http://perforce.freebsd.org/chv.cgi?CH=146744 Change 146744 by thompsa@thompsa_burger on 2008/08/06 00:08:54 missed file in ifc. Affected files ... .. //depot/projects/vap/sys/conf/files#46 edit Differences ... ==== //depot/projects/vap/sys/conf/files#46 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/sys/conf/files,v 1.1319 2008/07/28 21:47:04 jhb Exp $ +# $FreeBSD: src/sys/conf/files,v 1.1321 2008/07/31 03:51:53 emax Exp $ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and @@ -613,34 +613,38 @@ dev/ed/if_ed_pci.c optional ed pci dev/eisa/eisa_if.m standard dev/eisa/eisaconf.c optional eisa -dev/em/if_em.c optional em \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_80003es2lan.c optional em \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_82540.c optional em \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_82541.c optional em \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_82542.c optional em \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_82543.c optional em \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_82571.c optional em \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_api.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_ich8lan.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_mac.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_manage.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_nvm.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_phy.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/em" -dev/em/e1000_osdep.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/em" +dev/e1000/if_em.c optional em \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/if_igb.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_80003es2lan.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_82540.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_82541.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_82542.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_82543.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_82571.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_82575.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/e1000/e1000_ich8lan.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_api.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_mac.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_manage.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_nvm.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_phy.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" +dev/e1000/e1000_osdep.c optional em | igb \ + compile-with "${NORMAL_C} -I$S/dev/e1000" dev/et/if_et.c optional et dev/en/if_en_pci.c optional en pci dev/en/midway.c optional en @@ -697,10 +701,6 @@ dev/ieee488/pcii.c optional pcii dev/ieee488/tnt4882.c optional tnt4882 dev/ieee488/upd7210.c optional pcii | tnt4882 -dev/igb/if_igb.c optional igb \ - compile-with "${NORMAL_C} -I$S/dev/igb" -dev/igb/e1000_82575.c optional igb | em \ - compile-with "${NORMAL_C} -I$S/dev/igb" dev/iicbus/ad7418.c optional ad7418 dev/iicbus/ds1339.c optional ds1339 dev/iicbus/ds1672.c optional ds1672 @@ -1867,6 +1867,7 @@ netgraph/bluetooth/socket/ng_btsocket_l2cap.c optional netgraph_bluetooth_socket netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c optional netgraph_bluetooth_socket netgraph/bluetooth/socket/ng_btsocket_rfcomm.c optional netgraph_bluetooth_socket +netgraph/bluetooth/socket/ng_btsocket_sco.c optional netgraph_bluetooth_socket netgraph/netflow/netflow.c optional netgraph_netflow netgraph/netflow/ng_netflow.c optional netgraph_netflow netgraph/ng_UI.c optional netgraph_UI