~ubuntu-branches/ubuntu/trusty/cuneiform/trusty

« back to all changes in this revision

Viewing changes to cuneiform_src/Kern/rblock/sources/c/lterrors.c

  • Committer: Bazaar Package Importer
  • Author(s): Jakub Wilk, c-assert.diff, slovenian-slv.diff
  • Date: 2011-01-26 21:53:07 UTC
  • mfrom: (5.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20110126215307-62x61mcesr607qb7
Tags: 1.0.0+dfsg-2
* Upload to unstable.
* Explicitly build-depend on pkg-config. Thanks to Stefano Rivera for the
  bug report.
* Add Vcs-* fields.
* Use the standard C assert() macro, rather than custom Cuneiform one.
  [c-assert.diff]
* Pass CFLAGS, CXXFLAGS and LDFLAGS (get from dpkg-buildflags) to cmake
  (closes: #608345). Thanks to Sami Liedes for the bug report.
  + Build depend on dpkg-dev (>= 1.15.7).
* Pass --parallel to dh.
  + Bump debhelper minimum version to 7.4.10.
* Update debian/copyright to the latest DEP-5 version.
* Bump year in debian/copyright.
* Explicitly link to GraphicsMagick (rather than via the ImageMagick
  compatibility layer).
* Don't ship /usr/lib/cuneiform/*.so symlinks. These libraries are
  considered private, at least until #598616 is fixed.
* Rename some private variables in debian/rules to make them lowercase.
* Update patch headers.
* Provide proper ‘build-arch’ and ‘build-indep’ targets in debian/rules.
* Document input format in the manual page (closes: #572061). Thanks to
  Janusz S. Bień for the bug report.
* Use ‘slv’ (rather than ‘slo’) as language code for Slovenian.
  [slovenian-slv.diff]
* Fix package description: Slovenian is supported, Slovak is not.
* Improve documentation of the language (-l) option (closes: #602512).
  Thanks to Jari Aalto for the bug report.
* Install reasons file for vrms.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
}
102
102
 
103
103
# ifdef LT_STAND_ALONE
104
 
void ErrorNoEnoughMemory (PBYTE message)
 
104
void ErrorNoEnoughMemory (puchar message)
105
105
{
106
106
    LDPUMA_Console ("No enough memory - press any key\nMESSAGE:%s",message);
107
107
//    LT_Getch ();
111
111
//    exit (-1);
112
112
}
113
113
 
114
 
void ErrorInternal (PSTR s)
 
114
void ErrorInternal (char * s)
115
115
{
116
116
    LDPUMA_Console ("Internal error: %s - press any key\n", s);
117
117
//    LT_Getch ();
404
404
        }
405
405
 
406
406
 
407
 
void ErrorNoEnoughMemory (PBYTE message)
 
407
void ErrorNoEnoughMemory (puchar message)
408
408
{
409
409
 
410
410
    message=message;
419
419
    error_exit (ERR_comp, ERROR_NO_ENOUGH_MEMORY);
420
420
}
421
421
 
422
 
void ErrorInternal (PSTR s)
 
422
void ErrorInternal (char * s)
423
423
{
424
424
 
425
425