~ubuntu-branches/ubuntu/utopic/vflib3/utopic

« back to all changes in this revision

Viewing changes to src/fileman.c

  • Committer: Bazaar Package Importer
  • Author(s): OHURA Makoto
  • Date: 2008-06-12 23:08:47 UTC
  • mfrom: (1.2.1 upstream) (4.1.2 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080612230847-2ko62fof5f4jmnm2
Tags: 3.6.14.dfsg-1
* Remove ccv/TBL/RFC/rfc1489.txt, which is a non-free file.
 (Closes: #464433)
* debian/patches/06_strdup_implicit_pointer_conversion.dpatch: New
  patch.  Add -D_GNU_SOURCE to CFLAGS to enable prototype definition
  of strdup(3). (Closes: #464465)
* debian/rules:
  - Add autoconf2.13 before executing configure script.
  - Run configure script with FreeType2.
  - Move DH_COMPAT variable to debian/compat.
  - Don't ignore make clean error.
* debian/control:
  - Add autoconf2.13 and libfreetype6-dev to Build-Depends: field.
  - Add xutils-dev to Build-Depends: field for xmkmf.
  (Closes: #484200, #485224)
  - Remove x-dev and xutils from Build-Depends: field.
* debian/patches/04_not_ln_parent_dir.dpatch: New patch.  Don't make a
  symlink at parent directory.
* Remove unused debian patch.
* debian/patches/07_build_with_freetype2.dpatch: New patch. Build with
  FreeType2 library. (Closes: #431779, #431781)

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
 
306
306
  if (debug_fileman != 0){
307
307
    printf("VFlib fileman: fopen(\"%s\", \"%s\")\n", path, mode);
308
 
    printf(" ==> %p\n", fp);
 
308
    printf(" ==> %p\n", (void*)fp);
309
309
  }
310
310
 
311
311
  return fp;
317
317
  FILE *fp = (FILE*)v;
318
318
 
319
319
  if (debug_fileman != 0)
320
 
    printf("VFlib fileman: fclose %p\n", fp);
 
320
    printf("VFlib fileman: fclose %p\n", (void*)fp);
321
321
 
322
322
  if (fp != NULL)
323
323
    fclose(fp);