Ticket #24474: patch-config.diff
File patch-config.diff, 1.1 KB (added by pixilla (Bradley Giesbrecht), 15 years ago) |
---|
-
(a) defconfig vs. (b) .config
a b 20 20 #BACKEND=mailtrain 21 21 #BACKEND=crm114-exec 22 22 #BACKEND=spool2dir 23 @@BACKEND@@ 23 24 24 25 # Dovecot build/header directory 25 26 # Building the plugin requires configured dovecot sources or having … … 27 28 # point DOVECOT= to the installed headers too. 28 29 #DOVECOT=../dovecot-1.0.5 29 30 #DOVECOT=../dovecot-1.1 30 DOVECOT=/usr/include/dovecot 31 #DOVECOT=/usr/include/dovecot 32 @@DOVECOT@@ 31 33 32 34 # install directory for 'make install' 33 35 # NB no need for a final '/' 34 INSTALLDIR=/usr/lib/dovecot/modules/imap 36 #INSTALLDIR=/usr/lib/dovecot/modules/imap 37 @@INSTALLDIR@@ 35 38 # The user and group for the installed plugin 36 39 USER=root 37 40 GROUP=root … … 39 42 # enable debugging to syslog or stderr 40 43 #DEBUG=stderr 41 44 #DEBUG=syslog 45 @@DEBUG@@ 42 46 43 47 # verbose debugging (lots of output!) 44 48 #DEBUG_VERBOSE=1 49 @@DEBUG_VERBOSE@@ 45 50 46 51 # plugin name, change only if you need to rename the plugin 47 52 # (because, for example, you need two instances for different 48 53 # spam filters installed) 49 PLUGINNAME=antispam 54 #PLUGINNAME=antispam 55 @@PLUGINNAME@@ 50 56 51 57 # extra CFLAGS 52 58 # CFLAGS += -g3 59 @@EXTRA_CFLAGS@@