search for: curltest

Displaying 2 results from an estimated 2 matches for "curltest".

2003 Aug 30
1
Fink's vorbis-tools patch
...AGS="-I$curl_prefix/include" - elif test "x$prefix" != "xNONE"; then - CURL_CFLAGS="-I$prefix/include" - fi - - AC_MSG_CHECKING(for libcurl) - no_curl="" - + CURL_LIBS="/usr/lib/libcurl.a -lssl -lcrypto" if test "x$enable_curltest" = "xyes" ; then - ac_save_CFLAGS="$CFLAGS" - ac_save_LIBS="$LIBS" - CFLAGS="$CFLAGS $CURL_CFLAGS" - LIBS="$LIBS $CURL_LIBS" + + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" + CFLAGS="$CFLA...
2003 Jan 16
1
[PATCH] libcurl detection (and a Mac OS X build problem)
...n error. The following test program would be a better choice: It will fail to build and link on Mac OS X 10.2 unless the correct flags are provided. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <curl/curl.h> int main () { system("touch conf.curltest"); return 0; } void func () { curl_easy_perform( (void*) 0 ); } Attached is a patch which updates the acinclude.m4 in vorbis-tools to test for curl using this program, as well as using "curl-config" to find curl and the library flags. There is a problem with Mac OS X's...