~ubuntu-branches/ubuntu/natty/ntop/natty

« back to all changes in this revision

Viewing changes to gdchart0.94c/gd-1.8.3/libpng-1.0.8/scripts/libpng.icc

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2005-01-30 21:59:13 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050130215913-xc3ke963bw49b3k4
Tags: 2:3.0-5
* Updated README.Debian file so users will understand what to do at
  install, closes: #291794, #287802.
* Updated ntop init script to give better output.
* Also changed log directory from /var/lib/ntop to /var/log/ntop,
  closes: #252352.
* Quoted the interface list to allow whitespace, closes: #267248.
* Added a couple of logcheck ignores, closes: #269321, #269319.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Project file for libpng (static)
2
 
// IBM VisualAge/C++ version 4.0 or later
3
 
// Copyright (C) 2000 Cosmin Truta
4
 
// For conditions of distribution and use, see copyright notice in png.h
5
 
// Notes:
6
 
//   All modules are compiled in C mode
7
 
//   Tested with IBM VAC++ 4.0 under Win32
8
 
//   Expected to work with IBM VAC++ 4.0 or later under OS/2 and Win32
9
 
//   Can be easily adapted for IBM VAC++ 4.0 or later under AIX
10
 
// For conditions of distribution and use, see copyright notice in png.h
11
 
 
12
 
option incl(searchpath, "../zlib"), opt(level, "2"),
13
 
 link(libsearchpath, "../zlib")
14
 
{
15
 
   target type(lib) "libpng.lib"
16
 
   {
17
 
      source type(c) "png.c"
18
 
      source type(c) "pngerror.c"
19
 
      source type(c) "pngget.c"
20
 
      source type(c) "pngmem.c"
21
 
      source type(c) "pngpread.c"
22
 
      source type(c) "pngread.c"
23
 
      source type(c) "pngrio.c"
24
 
      source type(c) "pngrtran.c"
25
 
      source type(c) "pngrutil.c"
26
 
      source type(c) "pngset.c"
27
 
      source type(c) "pngtrans.c"
28
 
      source type(c) "pngwio.c"
29
 
      source type(c) "pngwrite.c"
30
 
      source type(c) "pngwtran.c"
31
 
      source type(c) "pngwutil.c"
32
 
   }
33
 
}
34
 
 
35
 
option incl(searchpath, "../zlib"), opt(level, "2"),
36
 
 link(libsearchpath, "../zlib")
37
 
{
38
 
   target type(exe) "pngtest.exe"
39
 
   {
40
 
      source type(c) "pngtest.c"
41
 
      source type(lib) "libpng.lib"
42
 
      source type(lib) "zlib.lib"
43
 
   }
44
 
}