Subversion Repositories gelsvn

Rev

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

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