File: configurepatch

package info (click to toggle)
libapr-memcache 0.7.0-3.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 996 kB
  • sloc: sh: 8,435; ansic: 1,272; makefile: 38
file content (39 lines) | stat: -rw-r--r-- 1,200 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Description: fix configure.ac
 * Added AC_CONFIG_MACRO_DIR to include m4 files of libapr-memcache
 * Added missing LT_INIT
 * Remove obsolete extra options form AM_INIT_AUTOMAKE
 This way autoreconf can do its magic and work.
 .
 libapr-memcache (0.7.0-3) unstable; urgency=low
 .
   * debian/rules removed unneeded export command from rules file
   * debian/rules now using autotools-dev (Closes: #722789)
Author: Bastiaan Franciscus van den Dikkenberg <bas@dikkenberg.net>
Bug-Debian: http://bugs.debian.org/722789

---

Origin: <vendor|upstream|other>, <url of original patch>
Bug-Debian: http://bugs.debian.org/722789
Bug-Ubuntu: https://launchpad.net/bugs/1282283
Last-Update: <2014-02-22>

--- libapr-memcache-0.7.0.orig/configure.ac
+++ libapr-memcache-0.7.0/configure.ac
@@ -1,13 +1,14 @@
 AC_INIT(apr_memcache, 0.7.0)
+AC_CONFIG_MACRO_DIR([m4])
 OOO_CONFIG_NICE(config.nice)
 AC_PREREQ(2.53)
 AC_CONFIG_SRCDIR([memcache/apr_memcache.c])
 AC_CONFIG_AUX_DIR(config)
 AM_MAINTAINER_MODE
 AC_CANONICAL_TARGET
-AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
+AM_INIT_AUTOMAKE
+LT_INIT
 AM_CONFIG_HEADER([include/apr_memcache_config.h:config.in])
-
 AC_PROG_CC
 AC_PROG_LD
 AC_PROG_INSTALL