~ubuntu-branches/ubuntu/maverick/typespeed/maverick

« back to all changes in this revision

Viewing changes to src/pathnames.h

  • Committer: Bazaar Package Importer
  • Author(s): Dafydd Harries
  • Date: 2007-12-07 05:14:13 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071207051413-zn96fxeem6wknkiz
Tags: 0.6.4-1
* New upstream release. Closes: #375136.
  - High priority due to fix for DoS attack. Closes: #454527
    (CVE-2007-6220).
  - Fixes segfault when $HOME is unset. Closes: #355887.
  - Adds Italian and French word lists, Dutch word file merged.
* New upstream maintainer.
  - Update homepage URL, debian/copyright, debian/watch.
  - This version is not network-compatible with versions prior to 0.5.2.
  - Stricter network code.
  - Improved memory management.
* High score file format has changed: install score conversion program to
  /usr/lib/typespeed and run it when package is configured.
* postinst:
  - Remove obsolete score file backup/create/restore code.
  - Add code to upgrade score files to the new text-based format.
* rules:
  - Update to new autotools build.
  - Put stamp files in debian/.
  - Support DEB_BUILD_OPTS=noopt.
* Remove unnecessary debian/install.
* Update man page installation.
* Change menu file to Games/Action section as per new menu policy.
* Bump to debhelper compat version 5.
* Bump standards version to 3.7.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  typespeed - measures your typing speed
 
3
 *  Copyright (C) 1999-2003   Jani Ollikainen  <bestis@iki.fi>
 
4
 *                          & Jaakko Manelius  <jman@iki.fi>
 
5
 *  Copyright (C) 2006-2007   Tobias Stoeckmann  <tobias@bugol.de>
 
6
 *
 
7
 *  This program is free software; you can redistribute it and/or modify
 
8
 *  it under the terms of the GNU General Public License as published by
 
9
 *  the Free Software Foundation; either version 2 of the License, or
 
10
 *  (at your option) any later version.
 
11
 *
 
12
 *  This program is distributed in the hope that it will be useful,
 
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *  GNU General Public License for more details.
 
16
 *
 
17
 *  You should have received a copy of the GNU General Public License
 
18
 *  along with this program; if not, write to the Free Software
 
19
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
20
 */
 
21
 
 
22
/*
 
23
 * pathnames.h - path definitions
 
24
 *
 
25
 * Please use supplied Makefile to change these values! If you use
 
26
 * Makefile, these definitions will be overwritten anyway.
 
27
 */
 
28
 
 
29
#include <sys/param.h>
 
30
 
 
31
#ifndef CONFIGFILE
 
32
        #define CONFIGFILE "/etc/typespeedrc"
 
33
#endif
 
34
 
 
35
#ifndef HIGHFILE
 
36
        #define HIGHFILE "/var/games/typespeed.score"
 
37
#endif
 
38
 
 
39
#ifndef RULEDIR
 
40
        #define RULEDIR "/usr/local/share/typespeed/rules"
 
41
#endif
 
42
 
 
43
#ifndef WORDDIR
 
44
        #define WORDDIR "/usr/local/share/typespeed/words"
 
45
#endif
 
46