Ignore:
Timestamp:
08/29/2024 05:15:47 PM (4 weeks ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
12.2, trunk
Children:
0d715637
Parents:
53cddae6
Message:

postfix does not accept a space after -D.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/mail/postfix.xml

    r53cddae6 r351881f  
    3737    </para>
    3838
    39     &lfs121_checked;
     39    &lfs122_checked;
    4040
    4141    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    162162      <note>
    163163        <para>
    164           For all variants of the CCARGS you should ensure that '-D NO_NIS' is
     164          For all variants of the CCARGS you should ensure that '-DNO_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, '-D NO_DB' needs to be specified as well.
     167          not installed, '-DNO_DB' needs to be specified as well.
    168168        </para>
    169169      </note>
     
    178178      </para>
    179179
    180 <screen><userinput>CCARGS="-D NO_NIS -D NO_DB"
     180<!-- This package does not accept a space between -D and the argument. -->
     181
     182<screen><userinput>CCARGS="-DNO_NIS -DNO_DB"
    181183AUXLIBS=""</userinput></screen>
    182184
     
    199201
    200202<screen><userinput>if [ -r /usr/lib/libsasl2.so ]; then
    201   CCARGS="$CCARGS -D USE_SASL_AUTH -D USE_CYRUS_SASL -I/usr/include/sasl"
     203  CCARGS="$CCARGS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl"
    202204  AUXLIBS="$AUXLIBS -lsasl2"
    203205fi</userinput></screen>
     
    212214
    213215<screen><userinput>if [ -r /usr/lib/liblmdb.so ]; then
    214   CCARGS="$CCARGS -D HAS_LMDB"
     216  CCARGS="$CCARGS -DHAS_LMDB"
    215217  AUXLIBS="$AUXLIBS -llmdb"
    216218fi</userinput></screen>
     
    226228
    227229<screen><userinput>if [ -r /usr/lib/libldap.so -a -r /usr/lib/liblber.so ]; then
    228   CCARGS="$CCARGS -D HAS_LDAP"
     230  CCARGS="$CCARGS -DHAS_LDAP"
    229231  AUXLIBS="$AUXLIBS -lldap -llber"
    230232fi</userinput></screen>
     
    241243
    242244<screen><userinput>if [ -r /usr/lib/libsqlite3.so ]; then
    243   CCARGS="$CCARGS -D HAS_SQLITE"
     245  CCARGS="$CCARGS -DHAS_SQLITE"
    244246  AUXLIBS="$AUXLIBS -lsqlite3 -lpthread"
    245247fi</userinput></screen>
     
    256258
    257259<screen><userinput>if [ -r /usr/lib/libmysqlclient.so ]; then
    258   CCARGS="$CCARGS -D HAS_MYSQL -I/usr/include/mysql"
     260  CCARGS="$CCARGS -DHAS_MYSQL -I/usr/include/mysql"
    259261  AUXLIBS="$AUXLIBS -lmysqlclient -lz -lm"
    260262fi</userinput></screen>
     
    271273
    272274<screen><userinput>if [ -r /usr/lib/libpq.so ]; then
    273   CCARGS="$CCARGS -D HAS_PGSQL -I/usr/include/postgresql"
     275  CCARGS="$CCARGS -DHAS_PGSQL -I/usr/include/postgresql"
    274276  AUXLIBS="$AUXLIBS -lpq -lz -lm"
    275277fi</userinput></screen>
     
    287289
    288290<screen><literal>if [ -r <replaceable>&lt;/path/to/CDB&gt;</replaceable>/libcdb.a ]; then
    289   CCARGS="$CCARGS -D HAS_CDB"
     291  CCARGS="$CCARGS -DHAS_CDB"
    290292  AUXLIBS="$AUXLIBS <replaceable>&lt;/path/to/CDB&gt;</replaceable>/libcdb.a"
    291293fi</literal></screen>
     
    302304
    303305<screen><userinput>if [ -r /usr/lib/libssl.so -a -r /usr/lib/libcrypto.so ]; then
    304   CCARGS="$CCARGS -D USE_TLS -I/usr/include/openssl/"
     306  CCARGS="$CCARGS -DUSE_TLS -I/usr/include/openssl/"
    305307  AUXLIBS="$AUXLIBS -lssl -lcrypto"
    306308fi</userinput></screen>
     
    369371
    370372    <para>
    371       <option>CCARGS="-D NO_EAI ..."</option>: this will turn off SMTPUTF8
     373      <option>CCARGS="-DNO_EAI ..."</option>: this will turn off SMTPUTF8
    372374      support, for example  if the rest of your email address infrastructure
    373375      cannot handle UTF-8 email addresses and message header values.
Note: See TracChangeset for help on using the changeset viewer.