mailman/mailman-apache.conf

Sun, 03 Apr 2011 13:34:55 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sun, 03 Apr 2011 13:34:55 +0200
changeset 337
f71e028eb3e2
permissions
-rw-r--r--

Correct and improve several packaging aspects including...
Correct datadir path for python modules, correct jar(1) path for
building libgcj classes, strip libexecdir path of version numbers,
improve name of oblbld build path, clean whitespace from as(1) and
ld(1) GNU detection, remove seemingly discarded '--with-local-prefix'
configure argument, and correct hardcoded lto plugin libtool archive
dependency information.

Most importantly, correct IA32 architecture detection logic in
config.gcc to correctly emit SSE2 instructions conditionally, leading
to the removal of all '-march' bootstrap options and replacement with
unconditional (for IA32/AMD64) '-mtune=native' options. Comments and
buildtime warnings are corrected appropriately. In theory these changes
cause a more portable, orthoganal, and optimal bootstrap to be built.

     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