2005-01-26 23:20:21 +01:00
|
|
|
# Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
|
2003-08-05 19:11:04 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
bin_PROGRAMS = gpg-agent
|
2004-12-21 20:05:15 +01:00
|
|
|
libexec_PROGRAMS = gpg-protect-tool gpg-preset-passphrase
|
2005-06-29 16:12:18 +02:00
|
|
|
noinst_PROGRAMS = $(TESTS)
|
2004-02-12 10:27:36 +01:00
|
|
|
|
* configure.ac (gl_INIT): Add gnulib stuff.
(fseeko, ftello, ttyname, isascii): Replaced the AC_REPLACE_FUNCS
by a simple check.
(putc_unlocked): Removed check. Not used.
(strsep, mkdtemp, asprintf): Replaced checks by gnulib checks.
(xsize): Added will probably come handy soon.
(CFLAGS): Use -Wformat-security instead of
-Wformat-nonliteral. Add --Wno-format-y2k.
* gl/, gl/m4/: New.
* gpg-agent.c: Include setenv.h.
* Makefile.am (AM_CPPFLAGS): Added.
* util.h: Add some includes for gnulib.
(ttyname, isascii): Define them inline.
* fseeko.c, ftello.c: Removed.
* strsep.c, mkdtemp.c: Removed.
* ttyname.c, isascii.c: Removed.
* mkdtemp.c: Removed.
* exec.c: Include mkdtemp.h
* keybox-file.c (ftello) [!HAVE_FSEEKO]: New replacement
function. Copied from ../common/ftello.c.
* keybox-update.c (fseeko) [!HAVE_FSEEKO]: New replacement
function. Copied from ../common/iobuf.c.
* scdaemon.c: Include mkdtemp.h.
* misc.c: Include setenv.h.
* symcryptrun.c: Include mkdtemp.h.
2005-06-01 17:46:01 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/common -I$(top_srcdir)/intl
|
2004-02-12 10:27:36 +01:00
|
|
|
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2004-02-12 10:27:36 +01:00
|
|
|
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBASSUAN_CFLAGS) $(PTH_CFLAGS)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
gpg_agent_SOURCES = \
|
|
|
|
gpg-agent.c agent.h \
|
2005-01-26 23:20:21 +01:00
|
|
|
command.c command-ssh.c \
|
2003-08-05 19:11:04 +02:00
|
|
|
query.c \
|
|
|
|
cache.c \
|
|
|
|
trans.c \
|
|
|
|
findkey.c \
|
|
|
|
pksign.c \
|
|
|
|
pkdecrypt.c \
|
|
|
|
genkey.c \
|
|
|
|
protect.c \
|
|
|
|
trustlist.c \
|
|
|
|
divert-scd.c \
|
|
|
|
call-scd.c \
|
2004-01-27 17:40:42 +01:00
|
|
|
learncard.c
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
* configure.ac (gl_INIT): Add gnulib stuff.
(fseeko, ftello, ttyname, isascii): Replaced the AC_REPLACE_FUNCS
by a simple check.
(putc_unlocked): Removed check. Not used.
(strsep, mkdtemp, asprintf): Replaced checks by gnulib checks.
(xsize): Added will probably come handy soon.
(CFLAGS): Use -Wformat-security instead of
-Wformat-nonliteral. Add --Wno-format-y2k.
* gl/, gl/m4/: New.
* gpg-agent.c: Include setenv.h.
* Makefile.am (AM_CPPFLAGS): Added.
* util.h: Add some includes for gnulib.
(ttyname, isascii): Define them inline.
* fseeko.c, ftello.c: Removed.
* strsep.c, mkdtemp.c: Removed.
* ttyname.c, isascii.c: Removed.
* mkdtemp.c: Removed.
* exec.c: Include mkdtemp.h
* keybox-file.c (ftello) [!HAVE_FSEEKO]: New replacement
function. Copied from ../common/ftello.c.
* keybox-update.c (fseeko) [!HAVE_FSEEKO]: New replacement
function. Copied from ../common/iobuf.c.
* scdaemon.c: Include mkdtemp.h.
* misc.c: Include setenv.h.
* symcryptrun.c: Include mkdtemp.h.
2005-06-01 17:46:01 +02:00
|
|
|
gpg_agent_LDADD = ../gl/libgnu.a ../jnlib/libjnlib.a ../common/libcommon.a \
|
2003-08-05 19:11:04 +02:00
|
|
|
$(LIBGCRYPT_LIBS) $(PTH_LIBS) $(LIBASSUAN_LIBS) \
|
2004-09-30 16:34:34 +02:00
|
|
|
-lgpg-error @LIBINTL@
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
gpg_protect_tool_SOURCES = \
|
|
|
|
protect-tool.c \
|
|
|
|
protect.c \
|
|
|
|
minip12.c minip12.h
|
|
|
|
|
2004-12-21 20:05:15 +01:00
|
|
|
gpg_protect_tool_LDADD = ../common/libsimple-pwquery.a \
|
|
|
|
../jnlib/libjnlib.a ../common/libcommon.a \
|
2004-09-30 16:34:34 +02:00
|
|
|
$(LIBGCRYPT_LIBS) -lgpg-error @LIBINTL@
|
2004-12-21 20:05:15 +01:00
|
|
|
if HAVE_W32_SYSTEM
|
|
|
|
gpg_protect_tool_LDADD += -lwsock32
|
|
|
|
endif
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2004-12-21 20:05:15 +01:00
|
|
|
gpg_preset_passphrase_SOURCES = \
|
|
|
|
preset-passphrase.c
|
|
|
|
|
|
|
|
gpg_preset_passphrase_LDADD = ../common/libsimple-pwquery.a \
|
|
|
|
../jnlib/libjnlib.a ../common/libcommon.a \
|
|
|
|
$(LIBGCRYPT_LIBS) -lgpg-error @LIBINTL@
|
|
|
|
if HAVE_W32_SYSTEM
|
|
|
|
gpg_preset_passphrase_LDADD += -lwsock32
|
|
|
|
endif
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2005-06-29 16:12:18 +02:00
|
|
|
#
|
|
|
|
# Module tests
|
|
|
|
#
|
|
|
|
TESTS = t-protect
|
|
|
|
|
|
|
|
t_common_ldadd = ../jnlib/libjnlib.a ../common/libcommon.a \
|
|
|
|
$(LIBGCRYPT_LIBS) -lgpg-error @LIBINTL@
|
|
|
|
|
|
|
|
t_protect_SOURCES = t-protect.c protect.c
|
|
|
|
t_protect_LDADD = $(t_common_ldadd)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|