diff options
author | Werner Koch <wk@gnupg.org> | 2010-03-24 13:15:30 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2010-03-24 13:15:30 +0100 |
commit | f080b353ed4ea5c16ad3fda79497a0ebe3be9a7d (patch) | |
tree | ce173438e276aa2ac40a254e557219ce1a25ba23 /am | |
parent | Reorganized the exechelp code. (diff) | |
download | gnupg2-f080b353ed4ea5c16ad3fda79497a0ebe3be9a7d.tar.xz gnupg2-f080b353ed4ea5c16ad3fda79497a0ebe3be9a7d.zip |
More changes for CE. gpgsm does now build and run a keylisting.
Diffstat (limited to 'am')
-rw-r--r-- | am/cmacros.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/am/cmacros.am b/am/cmacros.am index be34ca372..da45a67b7 100644 --- a/am/cmacros.am +++ b/am/cmacros.am @@ -48,6 +48,15 @@ if GNUPG_PROTECT_TOOL_PGM AM_CPPFLAGS += -DGNUPG_DEFAULT_PROTECT_TOOL="\"@GNUPG_PROTECT_TOOL_PGM@\"" endif +# Under Windows we use LockFileEx. WindowsCE provides this only on +# the WindowsMobile 6 platform and thus we need to use the coredll6 +# import library. +if HAVE_W32CE_SYSTEM +extra_sys_libs = -lcoredll6 +else +extra_sys_libs = +endif + # Convenience macros libcommon = ../common/libcommon.a |