ax_lib_curl.m4 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # ===========================================================================
  2. # http://www.gnu.org/software/autoconf-archive/ax_lib_curl.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_LIB_CURL([VERSION],[ACTION-IF-SUCCESS],[ACTION-IF-FAILURE])
  8. #
  9. # DESCRIPTION
  10. #
  11. # Checks for minimum curl library version VERSION. If successfull executes
  12. # ACTION-IF-SUCCESS otherwise ACTION-IF-FAILURE.
  13. #
  14. # Defines CURL_LIBS and CURL_CFLAGS.
  15. #
  16. # A simple example:
  17. #
  18. # AX_LIB_CURL([7.19.4],,[
  19. # AC_MSG_ERROR([Your system lacks of libcurl >= 7.19.4])
  20. # ])
  21. #
  22. # This macro is a rearranged version of AC_LIB_CURL from Akos Maroy.
  23. #
  24. # LICENSE
  25. #
  26. # Copyright (c) 2009 Francesco Salvestrini <salvestrini@users.sourceforge.net>
  27. #
  28. # Copying and distribution of this file, with or without modification, are
  29. # permitted in any medium without royalty provided the copyright notice
  30. # and this notice are preserved. This file is offered as-is, without any
  31. # warranty.
  32. #serial 7
  33. AU_ALIAS([AC_CHECK_CURL], [AX_LIB_CURL])
  34. AC_DEFUN([AX_LIB_CURL], [
  35. AX_PATH_GENERIC([curl],[$1],'s/^libcurl\ \+//',[$2],[$3])
  36. ])