Subversion Repositories gelsvn

Rev

Rev 107 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
// -*- MPC -*-
2
// $Id: zlib.mpb 217 2006-05-05 09:35:48Z bj $
3
 
4
feature(zlib) {
5
  includes += $(ZLIB_ROOT)/include
6
  libpaths += $(ZLIB_ROOT)/lib
7
  macros   += ZLIB
8
 
9
  // @@ Notice: If you are building with Cygwin, you may need to manually
10
  //            change the following library to zlib.
11
  specific(gnuace, make, sle, automake, ghs) {
217 bj 12
    lit_libs += z
107 bj 13
  } else {
217 bj 14
    // For Windows, we need to ensure that the library has a decorator.
15
    // Due to compilation flags used to build this library, we may have
16
    // linkage conflicts if the release version is used with a debug build.
107 bj 17
    libs += zlib
18
  }
19
}