summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-06-27 11:32:10 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-06-27 11:32:10 +0000
commit6ce2d8e606d33dad421ed450a81353fac9c27aa7 (patch)
tree30e1a13fed3d0aa73b03290196240746ee22a46e
parent80b75c8239748047451f58a2c4c31316704407f9 (diff)
downloadMPC-6ce2d8e606d33dad421ed450a81353fac9c27aa7.tar.gz
ChangeLogTag: Mon Jun 27 06:28:54 2005 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog8
-rw-r--r--config/zzip.mpb9
2 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 980cafdd..5cbf3b18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Mon Jun 27 06:28:54 2005 Chad Elliott <elliott_c@ociweb.com>
+
+ * config/zzip.mpb:
+
+ Developers insist on naming libraries differently for Windows.
+ So, for UNIX related projects we use zzip and for all others we
+ use zziplib.
+
Fri Jun 24 12:47:06 2005 Chad Elliott <elliott_c@ociweb.com>
* PROBLEM-REPORT-FORM:
diff --git a/config/zzip.mpb b/config/zzip.mpb
index 261879aa..d73581f2 100644
--- a/config/zzip.mpb
+++ b/config/zzip.mpb
@@ -5,5 +5,12 @@ feature(zzip) {
includes += $(ZZIP_ROOT)/include
macros += USE_ZZIP
libpaths += $(ZZIP_ROOT)/lib
- lit_libs += zzlib
+
+ // @@ Notice: If you are building with Cygwin, you may need to manually
+ // change the following library to zziplib.
+ specific(gnuace, make, sle, automake, ghs) {
+ lit_libs += zzip
+ } else {
+ lit_libs += zziplib
+ }
}