aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2010-11-04 08:16:57 +0000
committerWerner Koch <[email protected]>2010-11-04 08:16:57 +0000
commit44b27022588dd2c1fe495e305ea1e26187805619 (patch)
tree1651c8c7cabe142d905747a8407c9017d3c004c8 /contrib
parentHopefully last changes for building with MSC. (diff)
downloadgpgme-44b27022588dd2c1fe495e305ea1e26187805619.tar.gz
gpgme-44b27022588dd2c1fe495e305ea1e26187805619.zip
More changes for W32CE with MSC.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog5
-rwxr-xr-xcontrib/conf-w32ce-msc/build.mk8
2 files changed, 6 insertions, 7 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index ccee4948..40e528a7 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,8 @@
+2010-11-04 Werner Koch <[email protected]>
+
+ * conf-w32ce-msc/build.mk (copy-built-source): Revert last
+ change. Does not work with W32CE where MSC defines it in except.h.
+
2010-11-03 Werner Koch <[email protected]>
* conf-w32ce-msc/build.mk (copy-built-source): Create dummy sehmap.h.
diff --git a/contrib/conf-w32ce-msc/build.mk b/contrib/conf-w32ce-msc/build.mk
index 70cae832..74e7ff74 100755
--- a/contrib/conf-w32ce-msc/build.mk
+++ b/contrib/conf-w32ce-msc/build.mk
@@ -219,19 +219,13 @@ copy-static-source:
cd ../contrib/conf-w32ce-msc ; \
cp -t $(targetsrc)/gpgme/src $(conf_sources)
-# We create a dummy sehmap.h which will be included first due to -I. .
-# For some reasons sehmap.h is included by MSC for WindowsCE and
-# introduces a macro "leave" which conflicts of our use of "leave" for
-# a label (leave and enter are pretty common names for pro- and epilog
-# code).
copy-built-source:
@if [ ! -f ./gpgme.h ]; then \
echo "Please build using ./autogen.sh --build-w32ce first"; \
exit 1; \
fi
cp -t $(targetsrc)/gpgme/src $(built_sources)
- echo '/* Dummy replacement for useless header. */' \
- > $(targetsrc)/gpgme/src/sehmap.h
+ echo '/* Dummy io.h header. */' > $(targetsrc)/gpgme/src/io.h
copy-source: copy-static-source copy-built-source