From: Antonio Huete Jimenez Date: Sat, 4 Sep 2010 16:17:38 +0000 (+0200) Subject: include - Install smbus headers in the system. X-Git-Tag: v2.9.0~301^2 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/1912e72f82c0f47c6e9b94059355bed4e417b5cb include - Install smbus headers in the system. This will fix gkrellm build as it was trying to include smb.h, which wasn't in /usr/include/machine anymore. In-collaboration-with: --- diff --git a/etc/mtree/BSD.include.dist b/etc/mtree/BSD.include.dist index e741f8a031..afcf5f5055 100644 --- a/etc/mtree/BSD.include.dist +++ b/etc/mtree/BSD.include.dist @@ -13,15 +13,17 @@ scsi .. .. - pccard + isa .. - usb + pccard .. pci .. ppbus .. - isa + smbus + .. + usb .. .. c++ diff --git a/include/Makefile b/include/Makefile index c79c57d4ab..6551ac08e1 100644 --- a/include/Makefile +++ b/include/Makefile @@ -66,7 +66,7 @@ LSUBDIRS= bus/cam bus/cam/scsi \ netgraph/mppc netgraph/one2many netgraph/ppp \ netgraph/pppoe netgraph/pptpgre netgraph/rfc1490 netgraph/socket \ netgraph/tee netgraph/tty netgraph/vjc \ - bus/cam bus/usb bus/pccard bus/pci bus/isa bus/ppbus \ + bus/cam bus/usb bus/pccard bus/pci bus/isa bus/ppbus bus/smbus \ netproto/atalk netproto/atm netproto/ipsec netproto/ipx \ netproto/key netproto/natm netproto/ncp netproto/ns netproto/smb \ netproto/atm/ipatm netproto/atm/sigpvc netproto/atm/spans \