diff options
author | edward shu <edward.shu@sun.com> | 2007-06-06 23:05:56 +0800 |
---|---|---|
committer | edward shu <edwards@ming-desktop.(none)> | 2007-06-06 23:48:27 +0800 |
commit | 206e29213f92dd639fb4814ed2f3b6ec27e6f985 (patch) | |
tree | 31cfc9ed0a466f5b29fa111273138fb458879259 /configure.ac | |
parent | db56c640028d2f8072274f3eb603caa481103f4f (diff) | |
download | libpciaccess-206e29213f92dd639fb4814ed2f3b6ec27e6f985.tar.gz libpciaccess-206e29213f92dd639fb4814ed2f3b6ec27e6f985.tar.bz2 libpciaccess-206e29213f92dd639fb4814ed2f3b6ec27e6f985.zip |
Libpciaccess on Solaris Initial integration
Libpciaccess on Solaris Initial integration. It depends on devfs to access
pci configuration space, also xsvc is used for memory map.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2eafcbd..d5c0585 100644 --- a/configure.ac +++ b/configure.ac @@ -78,10 +78,14 @@ case $host_os in *linux*) linux=yes ;; + *solaris*) + solaris=yes + ;; esac AM_CONDITIONAL(LINUX, [test "x$linux" = xyes]) AM_CONDITIONAL(FREEBSD, [test "x$freebsd" = xyes]) +AM_CONDITIONAL(SOLARIS, [test "x$solaris" = xyes]) AC_SUBST(PCIACCESS_CFLAGS) AC_SUBST(PCIACCESS_LIBS) |