~ubuntu-branches/ubuntu/hardy/logrotate/hardy-updates

« back to all changes in this revision

Viewing changes to config.h

  • Committer: Bazaar Package Importer
  • Author(s): Paul Martin
  • Date: 2005-09-03 13:37:53 UTC
  • mfrom: (1.1.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050903133753-j413n48ft2od5fai
Tags: 3.7.1-2
* Patches:
  + 40-compressutime: Preserve mtime/atime on compression.
    (Closes: #286957)
  + 40-scripterrors: Give error messages identifying log file on
    script errors. (Closes: #122691, #195790, #222050, #306020)

* Patch debian/control to fix FTBFS on kfreebsd-i386. (Closes:
  #320331).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 */
4
4
 
5
5
#ifdef __hpux
6
 
    #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx -s"
 
6
    #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx"
7
7
    #define COMPRESS_COMMAND "/usr/contrib/bin/gzip"
8
8
    #define UNCOMPRESS_COMMAND " /usr/contrib/bin/gunzip"
9
9
    #define STATEFILE "/var/run/logrotate.status"
10
10
#endif
11
11
 
12
12
#ifdef SunOS
13
 
    #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx -s"
 
13
    #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx"
14
14
    #define COMPRESS_COMMAND "/usr/local/bin/gzip"
15
15
    #define UNCOMPRESS_COMMAND "/usr/local/bin/gunzip"
16
16
    #define STATEFILE "/var/log/logrotate.status"
20
20
 * Default settings for Linux - leave these last.
21
21
 */
22
22
#ifndef DEFAULT_MAIL_COMMAND
23
 
    #define DEFAULT_MAIL_COMMAND "/bin/mail -s"
 
23
    #define DEFAULT_MAIL_COMMAND "/bin/mail"
24
24
#endif
25
25
 
26
26
#ifndef COMPRESS_COMMAND