Ignore:
Timestamp:
08/27/2024 08:03:55 AM (7 weeks ago)
Author:
Thomas Trepl <thomas@…>
Branches:
lazarus
Children:
53d0e62a
Parents:
7d55a6a (diff), c36ca685 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/mail/postfix.xml

    r7d55a6a rde61ab1  
    162162      <note>
    163163        <para>
    164           For all variants of the CCARGS you should ensure that -DNO_NIS is
     164          For all variants of the CCARGS you should ensure that '-D NO_NIS' is
    165165          specified so that the build does not attempt to access an rpcsvc
    166166          header which do not exist in BLFS.  If &berkeley-db; is
    167           not installed, -DNO_DB needs to be specified as well.
     167          not installed, '-D NO_DB' needs to be specified as well.
    168168        </para>
    169169      </note>
     
    178178      </para>
    179179
    180 <screen><userinput>CCARGS="-DNO_NIS -DNO_DB"
     180<screen><userinput>CCARGS="-D NO_NIS -D NO_DB"
    181181AUXLIBS=""</userinput></screen>
    182182
     
    199199
    200200<screen><userinput>if [ -r /usr/lib/libsasl2.so ]; then
    201   CCARGS="$CCARGS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl"
     201  CCARGS="$CCARGS -D USE_SASL_AUTH -D USE_CYRUS_SASL -I/usr/include/sasl"
    202202  AUXLIBS="$AUXLIBS -lsasl2"
    203203fi</userinput></screen>
     
    212212
    213213<screen><userinput>if [ -r /usr/lib/liblmdb.so ]; then
    214   CCARGS="$CCARGS -DHAS_LMDB"
     214  CCARGS="$CCARGS -D HAS_LMDB"
    215215  AUXLIBS="$AUXLIBS -llmdb"
    216216fi</userinput></screen>
     
    226226
    227227<screen><userinput>if [ -r /usr/lib/libldap.so -a -r /usr/lib/liblber.so ]; then
    228   CCARGS="$CCARGS -DHAS_LDAP"
     228  CCARGS="$CCARGS -D HAS_LDAP"
    229229  AUXLIBS="$AUXLIBS -lldap -llber"
    230230fi</userinput></screen>
     
    241241
    242242<screen><userinput>if [ -r /usr/lib/libsqlite3.so ]; then
    243   CCARGS="$CCARGS -DHAS_SQLITE"
     243  CCARGS="$CCARGS -D HAS_SQLITE"
    244244  AUXLIBS="$AUXLIBS -lsqlite3 -lpthread"
    245245fi</userinput></screen>
     
    256256
    257257<screen><userinput>if [ -r /usr/lib/libmysqlclient.so ]; then
    258   CCARGS="$CCARGS -DHAS_MYSQL -I/usr/include/mysql"
     258  CCARGS="$CCARGS -D HAS_MYSQL -I/usr/include/mysql"
    259259  AUXLIBS="$AUXLIBS -lmysqlclient -lz -lm"
    260260fi</userinput></screen>
     
    271271
    272272<screen><userinput>if [ -r /usr/lib/libpq.so ]; then
    273   CCARGS="$CCARGS -DHAS_PGSQL -I/usr/include/postgresql"
     273  CCARGS="$CCARGS -D HAS_PGSQL -I/usr/include/postgresql"
    274274  AUXLIBS="$AUXLIBS -lpq -lz -lm"
    275275fi</userinput></screen>
     
    287287
    288288<screen><literal>if [ -r <replaceable>&lt;/path/to/CDB&gt;</replaceable>/libcdb.a ]; then
    289   CCARGS="$CCARGS -DHAS_CDB"
     289  CCARGS="$CCARGS -D HAS_CDB"
    290290  AUXLIBS="$AUXLIBS <replaceable>&lt;/path/to/CDB&gt;</replaceable>/libcdb.a"
    291291fi</literal></screen>
     
    302302
    303303<screen><userinput>if [ -r /usr/lib/libssl.so -a -r /usr/lib/libcrypto.so ]; then
    304   CCARGS="$CCARGS -DUSE_TLS -I/usr/include/openssl/"
     304  CCARGS="$CCARGS -D USE_TLS -I/usr/include/openssl/"
    305305  AUXLIBS="$AUXLIBS -lssl -lcrypto"
    306306fi</userinput></screen>
     
    369369
    370370    <para>
    371       <option>CCARGS="-DNO_EAI ..."</option>: this will turn off SMTPUTF8
     371      <option>CCARGS="-D NO_EAI ..."</option>: this will turn off SMTPUTF8
    372372      support, for example  if the rest of your email address infrastructure
    373373      cannot handle UTF-8 email addresses and message header values.
Note: See TracChangeset for help on using the changeset viewer.