~ubuntu-branches/ubuntu/jaunty/postfix/jaunty

« back to all changes in this revision

Viewing changes to debian/patches/20maps.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Tollef Fog Heen
  • Date: 2006-11-27 09:09:56 UTC
  • Revision ID: james.westby@ubuntu.com-20061127090956-154brf16pz0kler2
Tags: 2.3.4-1ubuntu1
Remove cdb support as cdb isn't in main in Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
diff -urNad postfix~/conf/postfix-files postfix/conf/postfix-files
9
9
--- postfix~/conf/postfix-files 2006-07-24 23:42:11.000000000 -0600
10
10
+++ postfix/conf/postfix-files  2006-10-15 20:55:26.000000000 -0600
11
 
@@ -63,6 +63,12 @@
 
11
@@ -63,6 +63,11 @@
12
12
 $queue_directory/trace:d:$mail_owner:-:700:ucr
13
13
 $daemon_directory/anvil:f:root:-:755
14
14
 $daemon_directory/bounce:f:root:-:755
15
 
+$daemon_directory/dict_cdb.so:f:root:-:755
16
15
+$daemon_directory/dict_ldap.so:f:root:-:755
17
16
+$daemon_directory/dict_pcre.so:f:root:-:755
18
17
+$daemon_directory/dict_mysql.so:f:root:-:755
95
94
+LDAPSO  = dict_ldap.so
96
95
+MYSQLSO = dict_mysql.so
97
96
+PGSQLSO = dict_pgsql.so
98
 
+CDBSO   = dict_cdb.so
 
97
+CDBSO   = 
99
98
 
100
99
-.c.o:; $(CC) $(CFLAGS) -c $*.c
101
100
+.c.o:; $(CC) -fPIC $(CFLAGS) -c $*.c
145
144
+$(LIB_DIR)/$(PGSQLSO): $(PGSQLSO)
146
145
+       cp $(PGSQLSO) $(LIB_DIR)
147
146
+
148
 
+update: $(LIB_DIR)/$(LIB) $(LIB_DIR)/${CDBSO} $(LIB_DIR)/${LDAPSO} $(LIB_DIR)/${MYSQLSO} $(LIB_DIR)/${PGSQLSO} $(HDRS)
 
147
+update: $(LIB_DIR)/$(LIB) $(LIB_DIR)/${LDAPSO} $(LIB_DIR)/${MYSQLSO} $(LIB_DIR)/${PGSQLSO} $(HDRS)
149
148
        -for i in $(HDRS); \
150
149
        do \
151
150
          cmp -s $$i $(INC_DIR)/$$i 2>/dev/null || cp $$i $(INC_DIR); \