diff options
author | Yang Tse <yangsita@gmail.com> | 2007-03-07 18:02:35 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-03-07 18:02:35 +0000 |
commit | 389a15a867e6b26eaccb65d5f4bece2291c723a9 (patch) | |
tree | 3b81f828a15c625f5b8f9866f6c07c5921b548c6 | |
parent | 74befdfbe0be43e02d72bbfd5021a1f61bc2684d (diff) |
fix test leftover in previous commit
-rw-r--r-- | ares/configure.ac | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ares/configure.ac b/ares/configure.ac index d1905d264..e62506558 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -86,7 +86,7 @@ m4_defun([AC_LIBTOOL_F77],[]) dnl force libtool to build static libraries with PIC on AMD64 AC_MSG_CHECKING([if target is AMD64 (to build static libraries with PIC)]) case $host in - x86_64*linux* | *-*-cygwin) + x86_64*linux*) AC_MSG_RESULT([yes]) with_pic=yes ;; diff --git a/configure.ac b/configure.ac index 5bcbce4fb..22c86e36e 100644 --- a/configure.ac +++ b/configure.ac @@ -130,7 +130,7 @@ m4_defun([AC_LIBTOOL_F77],[]) dnl force libtool to build static libraries with PIC on AMD64 AC_MSG_CHECKING([if target is AMD64 (to build static libraries with PIC)]) case $host in - x86_64*linux* | *-*-cygwin) + x86_64*linux*) AC_MSG_RESULT([yes]) with_pic=yes ;; |