Subversion Repositories gelsvn

Rev

Rev 217 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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