diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-07-16 10:03:33 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-07-16 10:03:33 +0000 |
commit | 4ebd353ae131f360d8295def30bffc931db7f9f0 (patch) | |
tree | d7555a135a227a8c03ddf4d9cb6cedd31bd88025 | |
parent | 1af6b72fc1e27c5e493570ea6e8c95c0519be4f8 (diff) | |
download | openocd_libswd-4ebd353ae131f360d8295def30bffc931db7f9f0.tar.gz openocd_libswd-4ebd353ae131f360d8295def30bffc931db7f9f0.tar.bz2 openocd_libswd-4ebd353ae131f360d8295def30bffc931db7f9f0.tar.xz openocd_libswd-4ebd353ae131f360d8295def30bffc931db7f9f0.zip |
- disable using parport ppdev under win32 hosts
git-svn-id: svn://svn.berlios.de/openocd/trunk@2545 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index f91d6c7a..79e80dd5 100644 --- a/configure.in +++ b/configure.in @@ -453,6 +453,7 @@ esac case $host in *-cygwin*) is_win32=yes + parport_use_ppdev=no AC_COMPILE_IFELSE(AC_LANG_PROGRAM([],[return __MINGW32__;]), [is_mingw=yes],[is_mingw=no]) @@ -474,6 +475,7 @@ case $host in *-mingw*) is_mingw=yes is_win32=yes + parport_use_ppdev=no if test x$parport_use_giveio = xno; then AC_MSG_WARN([--disable-parport-giveio is not supported by MinGW32 hosts]) |