2004-02-12 10:27:58 +01:00
|
|
|
# cmacros.am - C macro definitions
|
|
|
|
# Copyright (C) 2004 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of GnuPG.
|
|
|
|
#
|
|
|
|
# GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2004-02-12 10:27:58 +01:00
|
|
|
# (at your option) any later version.
|
2011-02-04 12:57:53 +01:00
|
|
|
#
|
2004-02-12 10:27:58 +01:00
|
|
|
# GnuPG is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-02-04 12:57:53 +01:00
|
|
|
#
|
2004-02-12 10:27:58 +01:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-07-04 21:49:40 +02:00
|
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2004-02-12 10:27:58 +01:00
|
|
|
|
|
|
|
localedir = $(datadir)/locale
|
|
|
|
|
2015-06-09 21:29:15 +02:00
|
|
|
# NB: AM_CFLAGS may also be used by tools running on the build
|
|
|
|
# platform to create source files.
|
2011-02-04 12:57:53 +01:00
|
|
|
AM_CPPFLAGS += -DLOCALEDIR=\"$(localedir)\"
|
2004-02-12 10:27:58 +01:00
|
|
|
|
|
|
|
if ! HAVE_DOSISH_SYSTEM
|
|
|
|
AM_CPPFLAGS += -DGNUPG_BINDIR="\"$(bindir)\"" \
|
|
|
|
-DGNUPG_LIBEXECDIR="\"$(libexecdir)\"" \
|
|
|
|
-DGNUPG_LIBDIR="\"$(libdir)/@PACKAGE@\"" \
|
2005-11-28 12:52:25 +01:00
|
|
|
-DGNUPG_DATADIR="\"$(datadir)/@PACKAGE@\"" \
|
2010-06-09 18:53:51 +02:00
|
|
|
-DGNUPG_SYSCONFDIR="\"$(sysconfdir)/@PACKAGE@\"" \
|
|
|
|
-DGNUPG_LOCALSTATEDIR="\"$(localstatedir)\""
|
2004-02-12 10:27:58 +01:00
|
|
|
endif
|
|
|
|
|
2007-06-14 19:05:07 +02:00
|
|
|
|
|
|
|
# If a specific protect tool program has been defined, pass its name
|
|
|
|
# to cc. Note that these macros should not be used directly but via
|
|
|
|
# the gnupg_module_name function.
|
2004-02-12 10:27:58 +01:00
|
|
|
if GNUPG_AGENT_PGM
|
|
|
|
AM_CPPFLAGS += -DGNUPG_DEFAULT_AGENT="\"@GNUPG_AGENT_PGM@\""
|
|
|
|
endif
|
|
|
|
if GNUPG_PINENTRY_PGM
|
|
|
|
AM_CPPFLAGS += -DGNUPG_DEFAULT_PINENTRY="\"@GNUPG_PINENTRY_PGM@\""
|
|
|
|
endif
|
|
|
|
if GNUPG_SCDAEMON_PGM
|
|
|
|
AM_CPPFLAGS += -DGNUPG_DEFAULT_SCDAEMON="\"@GNUPG_SCDAEMON_PGM@\""
|
|
|
|
endif
|
|
|
|
if GNUPG_DIRMNGR_PGM
|
|
|
|
AM_CPPFLAGS += -DGNUPG_DEFAULT_DIRMNGR="\"@GNUPG_DIRMNGR_PGM@\""
|
|
|
|
endif
|
|
|
|
if GNUPG_PROTECT_TOOL_PGM
|
|
|
|
AM_CPPFLAGS += -DGNUPG_DEFAULT_PROTECT_TOOL="\"@GNUPG_PROTECT_TOOL_PGM@\""
|
|
|
|
endif
|
2010-06-09 18:53:51 +02:00
|
|
|
if GNUPG_DIRMNGR_LDAP_PGM
|
|
|
|
AM_CPPFLAGS += -DGNUPG_DEFAULT_DIRMNGR_LDAP="\"@GNUPG_DIRMNGR_LDAP_PGM@\""
|
|
|
|
endif
|
2007-06-14 19:05:07 +02:00
|
|
|
|
2010-03-24 13:15:30 +01:00
|
|
|
# Under Windows we use LockFileEx. WindowsCE provides this only on
|
|
|
|
# the WindowsMobile 6 platform and thus we need to use the coredll6
|
2010-11-23 19:46:41 +01:00
|
|
|
# import library. We also want to use a stacksize of 256k instead of
|
|
|
|
# the 2MB which is the default with cegcc. 256k is the largest stack
|
|
|
|
# we use with pth.
|
2010-03-24 13:15:30 +01:00
|
|
|
if HAVE_W32CE_SYSTEM
|
|
|
|
extra_sys_libs = -lcoredll6
|
2011-02-04 12:57:53 +01:00
|
|
|
extra_bin_ldflags = -Wl,--stack=0x40000
|
2010-03-24 13:15:30 +01:00
|
|
|
else
|
2011-02-04 12:57:53 +01:00
|
|
|
extra_sys_libs =
|
|
|
|
extra_bin_ldflags =
|
2010-03-24 13:15:30 +01:00
|
|
|
endif
|
|
|
|
|
2013-04-25 13:00:16 +02:00
|
|
|
if HAVE_W32_SYSTEM
|
|
|
|
.rc.o:
|
|
|
|
$(WINDRES) $(DEFAULT_INCLUDES) $(INCLUDES) "$<" "$@"
|
|
|
|
|
|
|
|
endif
|
|
|
|
resource_objs =
|
2007-06-14 19:05:07 +02:00
|
|
|
|
|
|
|
# Convenience macros
|
|
|
|
libcommon = ../common/libcommon.a
|
|
|
|
libcommonpth = ../common/libcommonpth.a
|
2014-05-02 10:33:19 +02:00
|
|
|
libcommontls = ../common/libcommontls.a
|
|
|
|
libcommontlsnpth = ../common/libcommontlsnpth.a
|