~ubuntu-dev/ubuntu/lucid/dovecot/lucid-201002101901

« back to all changes in this revision

Viewing changes to debian/patches/quota-mountpoint.patch

  • Committer: Bazaar Package Importer
  • Author(s): Marco Nenciarini
  • Date: 2009-12-17 10:52:53 UTC
  • mfrom: (1.13.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 61.
  • Revision ID: james.westby@ubuntu.com-20091217105253-guybg5b34vmits39
* New upstream release.
* debian/patches/gold-fix.patch: Removed. Fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Author: Jaldhar H. Vyas <jaldhar@debian.org>
2
 
Description: fixes missing get_mountpoint() error by statically linking in the mountpoint code.
3
 
 
4
 
--- dovecot-1.2.7.orig/src/plugins/quota/Makefile.am
5
 
+++ dovecot-1.2.7/src/plugins/quota/Makefile.am
6
 
@@ -13,6 +13,11 @@
7
 
 module_LTLIBRARIES = \
8
 
        lib10_quota_plugin.la
9
 
 
10
 
+# get some functions included which only plugins use. liblib should probably
11
 
+# be a shared library so this wouldn't be needed.
12
 
+unused_sources = \
13
 
+       ../../lib/mountpoint.c
14
 
+
15
 
 quota_dist_sources = \
16
 
        quota.c \
17
 
        quota-count.c \
18
 
@@ -21,7 +26,8 @@
19
 
        quota-dirsize.c \
20
 
        quota-maildir.c \
21
 
         quota-plugin.c \
22
 
-       quota-storage.c
23
 
+       quota-storage.c \
24
 
+       $(unused_sources)
25
 
 
26
 
 lib10_quota_plugin_la_SOURCES = \
27
 
        $(quota_dist_sources) \