diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2014-01-18 17:19:14 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2014-01-27 23:39:48 +0000 |
commit | 6bfccc7ec4f0705595385f6684b6849663f781b4 (patch) | |
tree | 8fc059d191c7cde1d633f5e221c8f508127fa31c /src/common_init.c | |
parent | 06f562584a885eff7366dca82caf746e62b5a21f (diff) |
Windows/Cygwin: Add support through the WinIo library
V2:
- Add support for unmapping
- Add a README.cygwin
Reviewed-by: Martin Peres <martin.peres@free.fr>
Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Diffstat (limited to 'src/common_init.c')
-rw-r--r-- | src/common_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common_init.c b/src/common_init.c index 7c9db9c..a127a8b 100644 --- a/src/common_init.c +++ b/src/common_init.c @@ -62,7 +62,7 @@ pci_system_init( void ) err = pci_system_openbsd_create(); #elif defined(__sun) err = pci_system_solx_devfs_create(); -#elif defined(__GNU__) +#elif defined(__GNU__) || defined(__CYGWIN__) err = pci_system_x86_create(); #endif |