~ubuntu-branches/debian/sid/gmtp/sid

« back to all changes in this revision

Viewing changes to src/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2011-01-24 17:21:38 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110124172138-30ssabr3ki093ji8
Tags: 0.8-1
* New upstream release.
* Refresh patches.
* Update debian/copyright.
* Add patch to improve the Italian translation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
*
 
3
*   File: config.h
 
4
*   
 
5
*   Copyright (C) 2009-2011 Darran Kartaschew
 
6
*
 
7
*   This file is part of the gMTP package.
 
8
*
 
9
*   gMTP is free software; you can redistribute it and/or modify
 
10
*   it under the terms of the BSD License as included within the
 
11
*   file 'COPYING' located in the root directory
 
12
*
 
13
*/
 
14
 
 
15
#ifndef _CONFIG_H
 
16
#define _CONFIG_H
 
17
 
 
18
#ifdef  __cplusplus
 
19
extern "C" {
 
20
#endif
 
21
 
 
22
#define PACKAGE "gmtp"
 
23
#define PACKAGE_TITLE "gMTP"
 
24
#define PACKAGE_VERSION "0.8"
 
25
 
 
26
// Turn off translations for now.
 
27
//#ifdef  ENABLE_NLS
 
28
//#undef  ENABLE_NLS
 
29
//#endif
 
30
 
 
31
#define ENABLE_NLS
 
32
 
 
33
#ifdef  __cplusplus
 
34
}
 
35
#endif
 
36
 
 
37
#endif  /* _CONFIG_H */
 
38