Changeset 1594

Show
Ignore:
Timestamp:
05/09/06 15:29:15 (2 years ago)
Author:
benjamin
Message:

replacing c setuid scripts by perl-setuid one

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • alternc-mailman/trunk/debian/changelog

    r1246 r1594  
     1alternc-mailman (1.4.12) stable; urgency=low 
     2 
     3  * Replacing c setuid scripts by perl one. Add dependency on perl-suid 
     4  * set the package to be arch 'all' instead of arch 'any' 
     5 
     6 -- Benjamin Sonntag <benjamin@alternc.org>  Tue,  9 May 2006 15:23:55 +0200 
     7 
     8alternc-mailman (1.4.11) stable; urgency=low 
     9 
     10  * Correcting a bug on postinst that causes a crash for ALL MAILS  
     11    coming in the server : postfix was sending all mails to mailman ! 
     12 
     13 -- Benjamin Sonntag <benjamin@alternc.org>  Mon,  8 May 2006 23:25:30 +0200 
     14 
    115alternc-mailman (1.4.10) stable; urgency=low 
    216 
  • alternc-mailman/trunk/debian/control

    r1246 r1594  
    99Priority: optional 
    1010Section: admin 
    11 Architecture: any 
    12 Depends: mailman (>= 2.1), mysql-client, alternc (>= 0.9.4), debconf 
     11Architecture: all 
     12Depends: mailman (>= 2.1), mysql-client, alternc (>= 0.9.4), debconf, perl-suid 
    1313Description: Mailman module for AlternC 
    1414 AlternC is a hosting software suite based on Valentin 
  • alternc-mailman/trunk/debian/rules

    r1246 r1594  
    1010build-stamp: 
    1111        dh_testdir 
    12         make -C src 
    1312        touch build-stamp 
    1413 
     
    1716        dh_testroot 
    1817        rm -f build-stamp 
    19         make -C src clean 
    2018        dh_clean 
    2119 
     
    3432        install -m 02755 -o root -g list \ 
    3533                src/mailman.create src/mailman.delete src/mailman.list \ 
     34                src/mailman.sub src/mailman.unsub \ 
    3635                debian/alternc-mailman/usr/lib/alternc/ 
    3736        install -m 0644 mailman.sql \ 
  • alternc-mailman/trunk/src/Makefile

    r1228 r1594  
    2626# ---------------------------------------------------------------------- 
    2727# 
    28 CC=gcc 
    29 CFLAGS=-Wall -Werror 
     28 
    3029PROGS=mailman.create mailman.delete mailman.list mailman.sub mailman.unsub 
    31  
    32 all: ${PROGS} 
    33  
    34 clean:  
    35         rm -f *.o core *~ ${PROGS} 
    3630 
    3731install: 
    3832        chown list.list ${PROGS} 
    39         chmod u+s ${PROGS} 
    40  
    41  
    42  
    43  
     33        chmod u+s,og-w ${PROGS}