~clint-fewbar/ubuntu/precise/gearmand/drop-unneeded-patches

« back to all changes in this revision

Viewing changes to m4/ax_lib_curl.m4

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2009-09-28 21:43:31 UTC
  • mto: (1.2.3 upstream) (6.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20090928214331-9bku0d3v1b1ypgp4
ImportĀ upstreamĀ versionĀ 0.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
33
 
#serial 7
34
 
 
35
 
AU_ALIAS([AC_CHECK_CURL], [AX_LIB_CURL])
36
 
AC_DEFUN([AX_LIB_CURL], [
37
 
  AX_PATH_GENERIC([curl],[$1],'s/^libcurl\ \+//',[$2],[$3])
38
 
])