diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-12-20 08:51:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-12-20 08:51:34 +0000 |
commit | a08aed314714648148f8cbc1bb7d2308d1cb4e54 (patch) | |
tree | 87e0d6dd144572b3a5856d3f83782e2e1a6a9c12 /configure.ac | |
parent | 2e75d7f3f5e9b9f96758cecd9a562692083d73d2 (diff) | |
download | c-ares-a08aed314714648148f8cbc1bb7d2308d1cb4e54.tar.gz c-ares-a08aed314714648148f8cbc1bb7d2308d1cb4e54.tar.bz2 c-ares-a08aed314714648148f8cbc1bb7d2308d1cb4e54.zip |
use AC_PROG_LIBTOOL after AC_DISABLE_SHARED
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 0942942..b068d4c 100644 --- a/configure.ac +++ b/configure.ac @@ -20,9 +20,6 @@ AC_SEARCH_LIBS(socket, socket) dnl check for cygwin stuff AC_LIBTOOL_WIN32_DLL -dnl libtool setup -AC_PROG_LIBTOOL - dnl ************************************************************ dnl Option to switch on debug options. This makes an assumption that dnl this is built as an 'ares' subdir in the curl source tree. Subject for @@ -57,6 +54,9 @@ AC_HELP_STRING([--disable-debug],[Disable debug options]), AC_MSG_RESULT(no) ) +dnl libtool setup +AC_PROG_LIBTOOL + dnl Checks for header files. AC_HEADER_STDC |