Changeset 1198


Ignore:
Timestamp:
Oct 7, 2010 1:16:10 AM (3 years ago)
Author:
hailfinger
Message:

The Direct I/O library for Mac OS X is now called DirectHW to make sure
people can find it via an internet search. DirectIO was a generic name
for a concept and thus not a good distinguisher for a library.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@…>
Acked-by: Idwer Vollering <vidwer@…>

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r1151 r1198  
    4343ifeq ($(OS_ARCH), Darwin) 
    4444CPPFLAGS += -I/opt/local/include -I/usr/local/include 
     45# DirectIO framework can be found in the DirectHW library. 
    4546LDFLAGS += -framework IOKit -framework DirectIO -L/opt/local/lib -L/usr/local/lib 
    4647endif 
  • trunk/README

    r1186 r1198  
    8888To compile and run on Darwin/Mac OS X: 
    8989 
    90  Install DirectIO from coresystems GmbH. 
    91  DirectIO is available at http://www.coresystems.de/en/directio. 
     90 Install DirectHW from coresystems GmbH. 
     91 DirectHW is available at http://www.coresystems.de/en/directhw . 
    9292 
    9393To cross-compile on Linux for DOS: 
  • trunk/cbtable.c

    r1196 r1198  
    204204 
    205205#ifdef __DARWIN__ 
    206         /* This is a hack. DirectIO fails to map physical address 0x00000000. 
     206        /* This is a hack. DirectHW fails to map physical address 0x00000000. 
    207207         * Why? 
    208208         */ 
  • trunk/hwaccess.h

    r1196 r1198  
    194194#else 
    195195#if defined(__DARWIN__) 
     196    /* Header is part of the DirectHW library. */ 
    196197    #include <DirectIO/darwinio.h> 
    197198    #define off64_t off_t 
Note: See TracChangeset for help on using the changeset viewer.