~ubuntu-branches/debian/stretch/arb/stretch

« back to all changes in this revision

Viewing changes to GDE/AxML/axml.h

  • Committer: Package Import Robot
  • Author(s): Andreas Tille, Tim Booth, Andreas Tille
  • Date: 2013-06-24 09:42:03 UTC
  • Revision ID: package-import@ubuntu.com-20130624094203-aubt6orhjdr1m84k
Tags: 5.5-2
[ Tim Booth ]
* debian/rules: Make sure arb_edit4 will be really built and abort package
  building process if not

[ Andreas Tille ]
* Rebuild against libmotiv-dev in main
  Closes: #713061
* Add 4.6.3, 4.7.3 and 4.8.[0-3] to ALLOWED_GCC_VERSIONS
  Closes: #713219
* debian/control:
   - remove DM-Upload-Allowed
   - Build-Depends: libglu1-mesa-dev
   - add raxml to Depends and do not build third party copy any more
     (debian/patches/60_use_debian_packaged_raxml.patch)
* debian/patches/*: DEP3 comments
* debian/patches/50_build_naligner.patch: Fix build issue that was
  caused by some brocken $(CFLAGS)
* debian/rules: use xz compression

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
 
267
267
void  exit();
268
268
 
269
 
#if  ANSI || MALLOC_VOID
270
 
   void *malloc();
271
 
#else
272
 
   char *malloc();
273
 
#endif
274
 
 
275
269
#define  Malloc(x)  malloc((unsigned) (x))       /* BSD */
276
270
/* #define  Malloc(x)  malloc((size_t) (x)) */   /* System V */
277
271