Subversion Repositories gelsvn

Rev

Rev 107 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 107 Rev 217
Line 1... Line 1...
1
// -*- MPC -*-
1
// -*- MPC -*-
2
// $Id: zlib.mpb 107 2005-09-02 16:42:23Z 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
    libs += z
12
    lit_libs += z
13
  } else {
13
  } else {
-
 
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.
14
    libs += zlib
17
    libs += zlib
15
  }
18
  }
16
}
19
}