diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-03-03 22:31:58 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-03 22:31:58 +0000 |
commit | c753072ae14495e3a02c5e2d44b6d346465a0c95 (patch) | |
tree | e94b04d8d45d395f726e6426ec93668c23a528ee | |
parent | 243942a7aa359ae08f73760f063b0da26ba5b664 (diff) |
moved the disable-thread warning to the switch code so that the AIX 4.3
automatic disable won't cause a warning
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8f6e757b0..3df18c2fc 100644 --- a/configure.in +++ b/configure.in @@ -594,11 +594,11 @@ printf("just fine"); AC_ARG_ENABLE(thread,dnl [ --disable-thread tell configure to not look for thread-safe functions], OPT_THREAD=off + AC_MSG_WARN(libcurl will not get built using thread-safe functions) ) if test X"$OPT_THREAD" = Xoff then - AC_MSG_WARN(libcurl will not get built using thread-safe functions) AC_DEFINE(DISABLED_THREADSAFE, 1, \ Set to explicitly specify we don't want to use thread-safe functions) else |