~ubuntu-branches/ubuntu/saucy/juffed/saucy

« back to all changes in this revision

Viewing changes to include/AppInfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Maia Kozheva
  • Date: 2011-04-30 13:43:26 UTC
  • mfrom: (2.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20110430134326-0bnvvo5z2medbdxi
Tags: 0.9.1137-1
* New upstream release.
* Remove debian/juffed.1, added upstream (in debian.in).
* Remove debian/patches/static.patch: we can now bundle the .so after
  upstream has resolved soname issues.
* debian/control:
  - Bump Standards-Version to 0.9.2.
  - Update homepage.
  - Do not build-depend on chrpath, not needed anymore.
* debian/rules:
  - Remove chrpath rule, not needed anymore.
* Add juffed-dev and juffed-plugins packages.
* Do not install the libkeybindings.so plugin: causes a segfault on my
  amd64 machine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
JuffEd - An advanced text editor
3
 
Copyright 2007-2009 Mikhail Murzin
 
3
Copyright 2007-2010 Mikhail Murzin
4
4
 
5
5
This program is free software; you can redistribute it and/or
6
6
modify it under the terms of the GNU General Public License 
16
16
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
17
*/
18
18
 
19
 
#ifndef __JUFF_APP_INFO_H__
20
 
#define __JUFF_APP_INFO_H__
 
19
#ifndef __JUFFED_APP_INFO_H__
 
20
#define __JUFFED_APP_INFO_H__
21
21
 
22
22
#ifdef Q_OS_WIN
23
23
#include "AppInfo.win.h"
 
24
#elif defined APPLEBUNDLE
 
25
#include "AppInfo.apple.h"
24
26
#else
25
27
#include "AppInfo.nix.h"
26
28
#endif