mailman/mailman-apache.conf

Fri, 16 Jan 2009 10:58:21 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2009 10:58:21 +0100
changeset 92
645923d1e875
permissions
-rw-r--r--

Correct and improve code logic, buildconf, and packaging. In particular:
1. Use descriptive variable names <var>libs instead of just <var>.
2. Although Nokia states in all Qt builds that 'NOTE: When linking
against OpenSSL, you can override the default library names
through OPENSSL_LIBS.' and even gives an example, their own
configuration logic rejects such an attempt. Correct this by
hard coding the OpenSSL library string in the configure script.
3. Consistently use the whitespace substitution [\t ] throughout.
4. Patch the buggy INCPATH of SQL plugin Qmake project files.
5. Add the 'x11' configuration variable to the qtconfig Qmake
project using the src/gui/gui.pro file as a model. This is
needed for qtconfig although not in other tools, because
the qtconfig buildconf indirectly includes qt_x11_p.h which
is dependent on X11 headers.
6. Avoid 'ld.so: fatal: hardware capability unsupported: SSE2 AMD_3DNow'
on platforms for which the config.tests/unix/[3dnow|sse2] succeed
although unsopported at run time by testing for the x86-64
instruction set at build time and regulating hardware capabilities.
7. Correctly install the desinger plugin by explicitly building it.
8. Remove custom plugin installation logic which is unnecessary.
9. Correct removal of temporary paths from shared object files.

     1 ##
     2 ##  mailman-apache.conf -- Apache Configuration for Mailman
     3 ##
     5 <VirtualHost host.example.com>
     6     #   server information
     7     ServerName        host.example.com
     8     ServerAdmin       hostmaster@host.example.com
     9     ServerSignature   on
    11     #   document area
    12     DocumentRoot @l_prefix@/libexec/mailman/htdocs/
    13     <Directory "@l_prefix@/libexec/mailman/htdocs">
    14         Options       FollowSymLinks
    15         AllowOverride None
    16         Order         allow,deny
    17         Allow         from all
    18     </Directory>
    20     #   pipermail area
    21     Alias /mailman/pipermail/ @l_prefix@/var/mailman/archives/public/
    22     <Directory "@l_prefix@/var/mailman/archives/public">
    23         Options       FollowSymLinks
    24         AllowOverride None
    25         Order         allow,deny
    26         Allow         from all
    27     </Directory>
    29     #   icon area
    30     Alias /mailman/icons/ @l_prefix@/libexec/mailman/icons/
    31     <Directory "@l_prefix@/libexec/mailman/icons">
    32         Options       FollowSymLinks
    33         AllowOverride None
    34         Order         allow,deny
    35         Allow         from all
    36     </Directory>
    38     #   executable area
    39     ScriptAlias /mailman/ @l_prefix@/libexec/mailman/cgi-bin/
    40     <Directory "@l_prefix@/libexec/mailman/cgi-bin">
    41         Options       FollowSymLinks ExecCGI
    42         AllowOverride None
    43         Order         allow,deny
    44         Allow         from all
    45     </Directory>
    47     #   logging
    48     CustomLog         @l_prefix@/var/mailman/logs/http-access.log common
    49     ErrorLog          @l_prefix@/var/mailman/logs/http-error.log
    50     LogLevel          warn
    51 </VirtualHost>

mercurial