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

« back to all changes in this revision

Viewing changes to m4/ax_lib_curl.m4

  • Committer: Package Import Robot
  • Author(s): Stig Sandbeck Mathisen, Michael Fladischer, Stig Sandbeck Mathisen
  • Date: 2012-01-23 11:31:08 UTC
  • mfrom: (6.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120123113108-wl1yhiba13q9jusb
Tags: 0.27-1
[Michael Fladischer]
* Patch: fix spelling
* Patch: remove dependency on googleanalytics
* Patch: fix tests
* Use non-authenticating URL for Vcs-Git.
* Add "status" action to init script.

[Stig Sandbeck Mathisen]
* New upstream release (Closes: #621486) (LP: #682680)
* Remove build dependency on drizzle
  (until it reaches testing again)
* Build with support for tokyocabinet
* Remove backported ipv6 patch
* Patch: disable hostile build tests, they take hours...
* Patch: workaround duplicate address issue for tests
* Do not build API documentation, the sources are not shipped in
  upstream tarball
* Update debian/copyright

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
])