• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1!
2! This is a simple driver file with information used by make.com to
3! check if external libraries (like t1lib and freetype) are available on
4! the system.
5!
6! Layout of the file:
7!
8!    - Lines starting with ! are treated as comments
9!    - Elements in a data line are separated by # signs
10!    - The elements need to be listed in the following order
11!      1.) Name of the Library
12!      2.) Location where the object library can be found
13!      3.) Location where the include files for the library can be found
14!      4.) Include file used to verify library location
15!      5.) CPP define to pass to the build to indicate availability of
16!          the library
17!
18! Example: The following  lines show how definitions
19!          might look like. They are site specific and the locations of the
20!          library and include files need almost certainly to be changed.
21!
22! Location: All of the libaries can be found at the following addresses
23!
24!   ZLIB:     http://www.decus.de:8080/www/vms/sw/zlib.htmlx
25!
26BZ2LIB # sys$library:libbz2.olb # decc$user_include: # bzlib.h # FT_CONFIG_OPTION_SYSTEM_ZLIB
27PNGLIB # sys$library:libpng.olb # sys$library: # png.h # FT_CONFIG_OPTION_SYSTEM_ZLIB
28ZLIB # sys$library:libz.olb # sys$library: # zlib.h # FT_CONFIG_OPTION_SYSTEM_ZLIB
29