diff options
author | Doug Barton <dougb@FreeBSD.org> | 2010-06-22 22:35:54 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2010-06-22 22:35:54 +0000 |
commit | 2d4445970698dd8d712aa50e31b94fcc75d42833 (patch) | |
tree | 47f9147141e10f8d3b7905c161160fe8f2060d68 /security | |
parent | 0df324bae4036ab17377901efb6d0e05a1314699 (diff) | |
download | ports-2d4445970698dd8d712aa50e31b94fcc75d42833.tar.gz ports-2d4445970698dd8d712aa50e31b94fcc75d42833.zip |
Notes
Diffstat (limited to 'security')
-rw-r--r-- | security/gpa/Makefile | 11 | ||||
-rw-r--r-- | security/gpa/files/patch-configure | 13 | ||||
-rw-r--r-- | security/gpa/files/patch-src__server.c | 374 | ||||
-rw-r--r-- | security/gpgme/Makefile | 19 | ||||
-rw-r--r-- | security/gpgme/distinfo | 12 | ||||
-rw-r--r-- | security/gpgme/files/patch-assuan-assuan.h | 10 | ||||
-rw-r--r-- | security/gpgme/files/patch-src-Makefile.in | 159 |
7 files changed, 521 insertions, 77 deletions
diff --git a/security/gpa/Makefile b/security/gpa/Makefile index dee694f78b5f..7d9d3bf2abc3 100644 --- a/security/gpa/Makefile +++ b/security/gpa/Makefile @@ -7,16 +7,16 @@ PORTNAME= gpa PORTVERSION= 0.9.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security MASTER_SITES= http://wald.intevation.org/frs/download.php/603/ MAINTAINER= bsdkaffee@gmail.com COMMENT= A graphical frontend for the GNU Privacy Guard -LIB_DEPENDS= gpgme.18:${PORTSDIR}/security/gpgme -BUILD_DEPENDS= gpgv2:${PORTSDIR}/security/gnupg \ - libassuan-1>=1.0.5:${PORTSDIR}/security/libassuan-1 +LIB_DEPENDS= assuan.0:${PORTSDIR}/security/libassuan \ + gpgme.18:${PORTSDIR}/security/gpgme +BUILD_DEPENDS= gpgv2:${PORTSDIR}/security/gnupg RUN_DEPENDS= gpgv2:${PORTSDIR}/security/gnupg USE_BZIP2= yes @@ -27,6 +27,9 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" \ GPGKEYS_LDAP="${LOCALBASE}/libexec/gpg2keys_ldap" MAKE_JOBS_SAFE= yes +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + OPTIONS= NLS "Native language support" on .include <bsd.port.pre.mk> diff --git a/security/gpa/files/patch-configure b/security/gpa/files/patch-configure new file mode 100644 index 000000000000..82791bea7020 --- /dev/null +++ b/security/gpa/files/patch-configure @@ -0,0 +1,13 @@ +--- ./configure.orig 2010-06-22 05:32:25.000000000 -0400 ++++ ./configure 2010-06-22 05:33:16.000000000 -0400 +@@ -1808,8 +1808,8 @@ + + + NEED_GPG_ERROR_VERSION=1.4 +-NEED_LIBASSUAN_API=1 +-NEED_LIBASSUAN_VERSION=1.0.4 ++NEED_LIBASSUAN_API=2 ++NEED_LIBASSUAN_VERSION=1.1.0 + NEED_GPGME_API=1 + NEED_GPGME_VERSION=1.2.0 + diff --git a/security/gpa/files/patch-src__server.c b/security/gpa/files/patch-src__server.c new file mode 100644 index 000000000000..e4547bd21463 --- /dev/null +++ b/security/gpa/files/patch-src__server.c @@ -0,0 +1,374 @@ +--- ./src/server.c.orig 2009-05-13 03:11:11.000000000 -0400 ++++ ./src/server.c 2010-06-22 05:31:57.000000000 -0400 +@@ -568,7 +568,7 @@ + the last command. A RESET command undoes the effect of this + command. + */ +-static int ++static gpg_error_t + cmd_session (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -594,7 +594,7 @@ + validity right away; if it does not (as here) all recipients are + checked at the time of the ENCRYPT command. All RECIPIENT commands + are cumulative until a RESET or an successful ENCRYPT command. */ +-static int ++static gpg_error_t + cmd_recipient (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -615,7 +615,7 @@ + Set the file descriptor to read a message which is used with + detached signatures. + */ +-static int ++static gpg_error_t + cmd_message (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -659,7 +659,7 @@ + + Encrypt the data received on INPUT to OUTPUT. + */ +-static int ++static gpg_error_t + cmd_encrypt (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -755,7 +755,7 @@ + + Dummy encryption command used to check whether the given recipients + are all valid and to tell the client the preferred protocol. */ +-static int ++static gpg_error_t + cmd_prep_encrypt (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -814,7 +814,7 @@ + @code{RESET} command. A second command overrides the effect of + the first one; if EMAIL is not given the server shall use the + default signing key. */ +-static int ++static gpg_error_t + cmd_sender (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -867,7 +867,7 @@ + + Sign the data received on INPUT to OUTPUT. + */ +-static int ++static gpg_error_t + cmd_sign (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -943,7 +943,7 @@ + If the option --no-verify is given, the server should not try to + verify a signature, in case the input data is an OpenPGP combined + message. */ +-static int ++static gpg_error_t + cmd_decrypt (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -1058,7 +1058,7 @@ + + The DISPLAYSTRING is a percent-and-plus-encoded string with a short + human readable description of the status. */ +-static int ++static gpg_error_t + cmd_verify (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); +@@ -1143,7 +1143,7 @@ + manager is brought into the foregound and that this command + immediatley returns. + */ +-static int ++static gpg_error_t + cmd_start_keymanager (assuan_context_t ctx, char *line) + { + gpa_open_key_manager (NULL, NULL); +@@ -1157,7 +1157,7 @@ + manager is brought into the foregound and that this command + immediatley returns. + */ +-static int ++static gpg_error_t + cmd_start_cardmanager (assuan_context_t ctx, char *line) + { + gpa_open_cardmanager (NULL, NULL); +@@ -1172,7 +1172,7 @@ + manager is brought into the foregound and that this command + immediatley returns. + */ +-static int ++static gpg_error_t + cmd_start_confdialog (assuan_context_t ctx, char *line) + { + gpa_open_settings_dialog (NULL, NULL); +@@ -1191,7 +1191,7 @@ + version - Return the version of the program. + pid - Return the process id of the server. + */ +-static int ++static gpg_error_t + cmd_getinfo (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1295,7 +1295,7 @@ + + Set the files on which to operate. + */ +-static int ++static gpg_error_t + cmd_file (assuan_context_t ctx, char *line) + { + gpg_error_t err = 0; +@@ -1366,7 +1366,7 @@ + + + /* ENCRYPT_FILES --nohup */ +-static int ++static gpg_error_t + cmd_encrypt_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1389,7 +1389,7 @@ + + + /* SIGN_FILES --nohup */ +-static int ++static gpg_error_t + cmd_sign_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1412,7 +1412,7 @@ + + + /* ENCRYPT_SIGN_FILES --nohup */ +-static int ++static gpg_error_t + cmd_encrypt_sign_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1474,7 +1474,7 @@ + + + /* DECRYPT_FILES --nohup */ +-static int ++static gpg_error_t + cmd_decrypt_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1497,7 +1497,7 @@ + + + /* VERIFY_FILES --nohup */ +-static int ++static gpg_error_t + cmd_verify_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1520,7 +1520,7 @@ + + + /* DECRYPT_VERIFY_FILES --nohup */ +-static int ++static gpg_error_t + cmd_decrypt_verify_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1543,7 +1543,7 @@ + + + /* IMPORT_FILES --nohup */ +-static int ++static gpg_error_t + cmd_import_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1567,7 +1567,7 @@ + + + /* CHECKSUM_CREATE_FILES --nohup */ +-static int ++static gpg_error_t + cmd_checksum_create_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1591,7 +1591,7 @@ + + + /* CHECKSUM_VERIFY_FILES --nohup */ +-static int ++static gpg_error_t + cmd_checksum_verify_files (assuan_context_t ctx, char *line) + { + gpg_error_t err; +@@ -1614,8 +1614,8 @@ + } + + +-static void +-reset_notify (assuan_context_t ctx) ++static gpg_error_t ++reset_notify (assuan_context_t ctx, char *line) + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); + +@@ -1639,6 +1639,7 @@ + ctrl->session_number = 0; + xfree (ctrl->session_title); + ctrl->session_title = NULL; ++ return 0; + } + + +@@ -1648,7 +1649,7 @@ + { + static struct { + const char *name; +- int (*handler)(assuan_context_t, char *line); ++ assuan_handler_t handler; + } table[] = { + { "SESSION", cmd_session }, + { "RECIPIENT", cmd_recipient }, +@@ -1681,7 +1682,8 @@ + + for (i=0; table[i].name; i++) + { +- rc = assuan_register_command (ctx, table[i].name, table[i].handler); ++ rc = assuan_register_command (ctx, table[i].name, table[i].handler, ++ NULL); + if (rc) + return rc; + } +@@ -1692,7 +1694,7 @@ + + /* Prepare for a new connection on descriptor FD. */ + static assuan_context_t +-connection_startup (int fd) ++connection_startup (assuan_fd_t fd) + { + gpg_error_t err; + assuan_context_t ctx; +@@ -1700,7 +1702,16 @@ + + /* Get an Assuan context for the already accepted file descriptor + FD. Allow descriptor passing. */ +- err = assuan_init_socket_server_ext (&ctx, ASSUAN_INT2FD(fd), 1|2); ++ err = assuan_new (&ctx); ++ if (err) ++ { ++ g_debug ("failed to initialize the new connection: %s", ++ gpg_strerror (err)); ++ return NULL; ++ } ++ ++ err = assuan_init_socket_server (ctx, fd, ASSUAN_SOCKET_SERVER_FDPASSING ++ | ASSUAN_SOCKET_SERVER_ACCEPTED); + if (err) + { + g_debug ("failed to initialize the new connection: %s", +@@ -1712,7 +1723,7 @@ + { + g_debug ("failed to register commands with Assuan: %s", + gpg_strerror (err)); +- assuan_deinit_server (ctx); ++ assuan_release (ctx); + return NULL; + } + +@@ -1736,8 +1747,8 @@ + { + conn_ctrl_t ctrl = assuan_get_pointer (ctx); + +- reset_notify (ctx); +- assuan_deinit_server (ctx); ++ reset_notify (ctx, NULL); ++ assuan_release (ctx); + g_free (ctrl); + connection_counter--; + if (!connection_counter && shutdown_pending) +@@ -1805,14 +1816,23 @@ + } + else + { ++ int done = 0; + ctrl->in_command++; +- err = assuan_process_next (ctx); ++ err = assuan_process_next (ctx, &done); + ctrl->in_command--; +- g_debug ("assuan_process_next returned: %s", +- err == -1? "EOF": gpg_strerror (err)); ++ if (err) ++ { ++ g_debug ("assuan_process_next returned: %s <%s>", ++ gpg_strerror (err), gpg_strsource (err)); ++ } ++ else ++ { ++ g_debug ("assuan_process_next returned: %s", ++ done ? "done" : "success"); ++ } + if (gpg_err_code (err) == GPG_ERR_EAGAIN) + ; /* Ignore. */ +- else if (gpg_err_code (err) == GPG_ERR_EOF || err == -1) ++ else if (!err && done) + { + if (ctrl->cont_cmd) + ctrl->client_died = 1; /* Need to delay the cleanup. */ +@@ -1868,14 +1888,14 @@ + g_debug ("error accepting connection: %s", strerror (errno)); + goto leave; + } +- if (assuan_sock_check_nonce (ASSUAN_INT2FD(fd), &socket_nonce)) ++ if (assuan_sock_check_nonce ((assuan_fd_t) fd, &socket_nonce)) + { + g_debug ("new connection at fd %d refused", fd); + goto leave; + } + + g_debug ("new connection at fd %d", fd); +- ctx = connection_startup (fd); ++ ctx = connection_startup ((assuan_fd_t) fd); + if (!ctx) + goto leave; + +@@ -1911,7 +1931,7 @@ + + leave: + if (fd != -1) +- assuan_sock_close (ASSUAN_INT2FD (fd)); ++ assuan_sock_close ((assuan_fd_t) fd); + return TRUE; /* Keep the listen_fd in the event loop. */ + } + +@@ -1929,7 +1949,7 @@ + GIOChannel *channel; + unsigned int source_id; + +- assuan_set_assuan_err_source (GPG_ERR_SOURCE_DEFAULT); ++ assuan_set_gpg_err_source (GPG_ERR_SOURCE_DEFAULT); + + socket_name = g_build_filename (gnupg_homedir, "S.uiserver", NULL); + if (strlen (socket_name)+1 >= sizeof serv_addr.sun_path ) +@@ -1974,14 +1994,14 @@ + g_free (socket_name); + socket_name = NULL; + +- if (listen (ASSUAN_FD2INT (fd), 5) == -1) ++ if (listen ((int) fd, 5) == -1) + { + g_debug ("listen() failed: %s\n", strerror (errno)); + assuan_sock_close (fd); + return; + } + #ifdef HAVE_W32_SYSTEM +- channel = g_io_channel_win32_new_socket (ASSUAN_FD2INT(fd)); ++ channel = g_io_channel_win32_new_socket ((int) fd); + #else + channel = g_io_channel_unix_new (fd); + #endif diff --git a/security/gpgme/Makefile b/security/gpgme/Makefile index a62d31858f68..5cc17277079e 100644 --- a/security/gpgme/Makefile +++ b/security/gpgme/Makefile @@ -6,8 +6,7 @@ # PORTNAME= gpgme -PORTVERSION= 1.2.0 -PORTREVISION= 2 +PORTVERSION= 1.3.0 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= gpgme @@ -25,14 +24,19 @@ USE_GMAKE= yes USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes -CONFIGURE_ARGS= --includedir=${PREFIX}/include/gpgme +CONFIGURE_ARGS= --includedir=${PREFIX}/include/gpgme \ + --with-g13=no INFO= gpgme PORTDOCS= AUTHORS ChangeLog COPYING COPYING.LESSER INSTALL \ NEWS README THANKS TODO +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + OPTIONS= GNUPG1 "Use GNUPG 1.x instead of GNUPG 2.x" off \ - PTH "Build alternate lib with GNU portable threads" off + PTH "Build alternate lib with GNU portable threads" off \ + UISERVER "Enable the GNUPG UI Server support" off .include <bsd.port.pre.mk> @@ -48,6 +52,7 @@ RUN_DEPENDS+= gpg2:${PORTSDIR}/security/gnupg CONFIGURE_ARGS+=--with-gpg=${LOCALBASE}/bin/gpg2 \ --with-gpgconf=${LOCALBASE}/bin/gpgconf .if exists(${LOCALBASE}/bin/gpgsm) +LIB_DEPENDS+= assuan.0:${PORTSDIR}/security/libassuan CONFIGURE_ARGS+=--with-gpgsm=${LOCALBASE}/bin/gpgsm .else CONFIGURE_ARGS+=--with-gpgsm=no @@ -62,11 +67,15 @@ CONFIGURE_ARGS+=--without-pth --without-pth-test PLIST_SUB+= WITH_PTH='@comment ' .endif +.if defined(WITH_UISERVER) +CONFIGURE_ARGS+=--enable-fd-passing +LIB_DEPENDS+= assuan.0:${PORTSDIR}/security/libassuan +.endif + verify: checksum gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.sig post-patch: - @${REINPLACE_CMD} -e 's|EOF||g' ${WRKSRC}/assuan/assuan-errors.c @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \ ${WRKSRC}/${CONFIGURE_SCRIPT} \ ${WRKSRC}/src/Makefile.in \ diff --git a/security/gpgme/distinfo b/security/gpgme/distinfo index 4b56ba215c12..731ff0fec03e 100644 --- a/security/gpgme/distinfo +++ b/security/gpgme/distinfo @@ -1,6 +1,6 @@ -MD5 (gpgme-1.2.0.tar.bz2) = 508ee686bd275d908d1dc1938810e045 -SHA256 (gpgme-1.2.0.tar.bz2) = c4ba555ea795a42061f0b03fffe22b3f1cb22fcdbcc0bbbeb0419e59b04ef801 -SIZE (gpgme-1.2.0.tar.bz2) = 845063 -MD5 (gpgme-1.2.0.tar.bz2.sig) = ead07c74f6b82fe77ca632c69897c562 -SHA256 (gpgme-1.2.0.tar.bz2.sig) = 267d6f05d81da2f86c3b34d193cd86ea8ffcdf9b560cc09f6cfec680cd1fac92 -SIZE (gpgme-1.2.0.tar.bz2.sig) = 315 +MD5 (gpgme-1.3.0.tar.bz2) = 4784e3c6086c9c25e9a1b4d9f7c5aa96 +SHA256 (gpgme-1.3.0.tar.bz2) = 74e040fcd46061f6b0d8b621a2a2a48100a7ba5c9f69e7cf207259a6e2e3e6a1 +SIZE (gpgme-1.3.0.tar.bz2) = 869470 +MD5 (gpgme-1.3.0.tar.bz2.sig) = 417b83ac578213de8a3300b8215866ba +SHA256 (gpgme-1.3.0.tar.bz2.sig) = cfaa7322d69e22b8dbfde379106499c8e558fa6ca0a2626722c4cd5e5a0a464e +SIZE (gpgme-1.3.0.tar.bz2.sig) = 315 diff --git a/security/gpgme/files/patch-assuan-assuan.h b/security/gpgme/files/patch-assuan-assuan.h deleted file mode 100644 index b34e4b5ea7cc..000000000000 --- a/security/gpgme/files/patch-assuan-assuan.h +++ /dev/null @@ -1,10 +0,0 @@ ---- assuan/assuan.h.orig Wed Sep 13 15:55:53 2006 -+++ assuan/assuan.h Wed Sep 13 15:56:59 2006 -@@ -23,6 +23,7 @@ - - #include <stdio.h> - #include <sys/types.h> -+#include <sys/socket.h> - #include <unistd.h> - - diff --git a/security/gpgme/files/patch-src-Makefile.in b/security/gpgme/files/patch-src-Makefile.in index 38f6dccb08eb..b6e43e73aa10 100644 --- a/security/gpgme/files/patch-src-Makefile.in +++ b/security/gpgme/files/patch-src-Makefile.in @@ -1,22 +1,26 @@ ---- ./src/Makefile.in.orig 2009-06-20 02:58:28.000000000 -0400 -+++ ./src/Makefile.in 2009-06-20 02:58:43.000000000 -0400 -@@ -131,13 +129,45 @@ - sema.h priv-io.h ath.h posix-util.c posix-sema.c posix-io.c \ - w32-util.c w32-sema.c dirinfo.c debug.c debug.h gpgme.c \ - version.c error.c ath-pth.c w32-io.c --@HAVE_DOSISH_SYSTEM_TRUE@am__objects_5 = w32-io.lo --am_libgpgme_pth_la_OBJECTS = $(am__objects_4) ath-pth.lo \ -- $(am__objects_5) -+@HAVE_GPGSM_TRUE@am__objects_5 = libgpgme_pth_la-engine-gpgsm.lo \ -+@HAVE_GPGSM_TRUE@ libgpgme_pth_la-engine-assuan.lo -+@HAVE_GPGCONF_TRUE@am__objects_6 = libgpgme_pth_la-engine-gpgconf.lo -+@HAVE_DOSISH_SYSTEM_FALSE@am__objects_7 = \ +--- ./src/Makefile.in.orig 2010-01-11 06:06:54.000000000 -0500 ++++ ./src/Makefile.in 2010-06-21 15:31:11.000000000 -0400 +@@ -158,13 +158,52 @@ + vfs-create.c gpgconf.c sema.h priv-io.h ath.h posix-util.c \ + posix-sema.c posix-io.c w32-util.c w32-sema.c dirinfo.c \ + debug.c debug.h gpgme.c version.c error.c ath-pth.c w32-io.c +-@HAVE_DOSISH_SYSTEM_TRUE@am__objects_8 = w32-io.lo +-am_libgpgme_pth_la_OBJECTS = $(am__objects_7) ath-pth.lo \ +- $(am__objects_8) ++@HAVE_GPGSM_TRUE@am__objects_8 = libgpgme_pth_la-engine-gpgsm.lo ++@HAVE_ASSUAN_TRUE@am__objects_9 = libgpgme_pth_la-assuan-support.lo \ ++@HAVE_ASSUAN_TRUE@ libgpgme_pth_la-engine-assuan.lo ++@HAVE_GPGCONF_TRUE@am__objects_10 = libgpgme_pth_la-engine-gpgconf.lo ++@HAVE_UISERVER_TRUE@am__objects_11 = \ ++@HAVE_UISERVER_TRUE@ libgpgme_pth_la-engine-uiserver.lo ++@HAVE_G13_TRUE@am__objects_12 = libgpgme_pth_la-engine-g13.lo ++@HAVE_DOSISH_SYSTEM_FALSE@am__objects_13 = \ +@HAVE_DOSISH_SYSTEM_FALSE@ libgpgme_pth_la-posix-util.lo \ +@HAVE_DOSISH_SYSTEM_FALSE@ libgpgme_pth_la-posix-sema.lo \ +@HAVE_DOSISH_SYSTEM_FALSE@ libgpgme_pth_la-posix-io.lo -+@HAVE_DOSISH_SYSTEM_TRUE@am__objects_7 = libgpgme_pth_la-w32-util.lo \ ++@HAVE_DOSISH_SYSTEM_TRUE@am__objects_13 = libgpgme_pth_la-w32-util.lo \ +@HAVE_DOSISH_SYSTEM_TRUE@ libgpgme_pth_la-w32-sema.lo -+am__objects_8 = libgpgme_pth_la-conversion.lo \ ++am__objects_14 = libgpgme_pth_la-conversion.lo \ + libgpgme_pth_la-get-env.lo libgpgme_pth_la-data.lo \ + libgpgme_pth_la-data-fd.lo libgpgme_pth_la-data-stream.lo \ + libgpgme_pth_la-data-mem.lo libgpgme_pth_la-data-user.lo \ @@ -33,15 +37,18 @@ + libgpgme_pth_la-import.lo libgpgme_pth_la-export.lo \ + libgpgme_pth_la-genkey.lo libgpgme_pth_la-delete.lo \ + libgpgme_pth_la-edit.lo libgpgme_pth_la-getauditlog.lo \ -+ libgpgme_pth_la-opassuan.lo libgpgme_pth_la-engine.lo \ -+ libgpgme_pth_la-engine-gpg.lo $(am__objects_5) \ -+ $(am__objects_6) libgpgme_pth_la-gpgconf.lo $(am__objects_7) \ ++ libgpgme_pth_la-opassuan.lo libgpgme_pth_la-passwd.lo \ ++ libgpgme_pth_la-engine.lo libgpgme_pth_la-engine-gpg.lo \ ++ $(am__objects_8) $(am__objects_9) $(am__objects_10) \ ++ $(am__objects_11) $(am__objects_12) \ ++ libgpgme_pth_la-vfs-mount.lo libgpgme_pth_la-vfs-create.lo \ ++ libgpgme_pth_la-gpgconf.lo $(am__objects_13) \ + libgpgme_pth_la-dirinfo.lo libgpgme_pth_la-debug.lo \ + libgpgme_pth_la-gpgme.lo libgpgme_pth_la-version.lo \ + libgpgme_pth_la-error.lo -+@HAVE_DOSISH_SYSTEM_TRUE@am__objects_9 = libgpgme_pth_la-w32-io.lo -+am_libgpgme_pth_la_OBJECTS = $(am__objects_8) \ -+ libgpgme_pth_la-ath-pth.lo $(am__objects_9) ++@HAVE_DOSISH_SYSTEM_TRUE@am__objects_15 = libgpgme_pth_la-w32-io.lo ++am_libgpgme_pth_la_OBJECTS = $(am__objects_14) \ ++ libgpgme_pth_la-ath-pth.lo $(am__objects_15) libgpgme_pth_la_OBJECTS = $(am_libgpgme_pth_la_OBJECTS) libgpgme_pth_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ @@ -51,59 +58,60 @@ @HAVE_PTH_TRUE@am_libgpgme_pth_la_rpath = -rpath $(libdir) am__libgpgme_pthread_la_SOURCES_DIST = util.h conversion.c get-env.c \ context.h ops.h data.h data.c data-fd.c data-stream.c \ -@@ -152,8 +182,9 @@ - sema.h priv-io.h ath.h posix-util.c posix-sema.c posix-io.c \ - w32-util.c w32-sema.c dirinfo.c debug.c debug.h gpgme.c \ - version.c error.c ath-pthread.c w32-io.c -+@HAVE_DOSISH_SYSTEM_TRUE@am__objects_10 = w32-io.lo - am_libgpgme_pthread_la_OBJECTS = $(am__objects_4) ath-pthread.lo \ -- $(am__objects_5) -+ $(am__objects_10) +@@ -181,8 +220,9 @@ + posix-sema.c posix-io.c w32-util.c w32-sema.c dirinfo.c \ + debug.c debug.h gpgme.c version.c error.c ath-pthread.c \ + w32-io.c ++@HAVE_DOSISH_SYSTEM_TRUE@am__objects_16 = w32-io.lo + am_libgpgme_pthread_la_OBJECTS = $(am__objects_7) ath-pthread.lo \ +- $(am__objects_8) ++ $(am__objects_16) libgpgme_pthread_la_OBJECTS = $(am_libgpgme_pthread_la_OBJECTS) libgpgme_pthread_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -@@ -192,7 +223,7 @@ - engine-gpgconf.c gpgconf.c sema.h priv-io.h ath.h posix-util.c \ - posix-sema.c posix-io.c w32-util.c w32-sema.c dirinfo.c \ - debug.c debug.h gpgme.c version.c error.c ath.c w32-io.c --am_libgpgme_la_OBJECTS = $(am__objects_4) ath.lo $(am__objects_5) -+am_libgpgme_la_OBJECTS = $(am__objects_4) ath.lo $(am__objects_10) +@@ -224,7 +264,7 @@ + gpgconf.c sema.h priv-io.h ath.h posix-util.c posix-sema.c \ + posix-io.c w32-util.c w32-sema.c dirinfo.c debug.c debug.h \ + gpgme.c version.c error.c ath.c w32-io.c +-am_libgpgme_la_OBJECTS = $(am__objects_7) ath.lo $(am__objects_8) ++am_libgpgme_la_OBJECTS = $(am__objects_7) ath.lo $(am__objects_16) libgpgme_la_OBJECTS = $(am_libgpgme_la_OBJECTS) libgpgme_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -@@ -465,10 +498,10 @@ +@@ -515,10 +555,10 @@ # We use a global CFLAGS and CPPFLAGS setting for all library # versions, because then every object file is only compiled once. --AM_CPPFLAGS = $(assuan_cppflags) @GPG_ERROR_CFLAGS@ @PTH_CPPFLAGS@ \ -+AM_CPPFLAGS = $(assuan_cppflags) @GPG_ERROR_CFLAGS@ \ +-AM_CPPFLAGS = @GPG_ERROR_CFLAGS@ @PTH_CPPFLAGS@ \ ++AM_CPPFLAGS = @GPG_ERROR_CFLAGS@ \ @QT4_CORE_CFLAGS@ --AM_CFLAGS = @PTH_CFLAGS@ @GLIB_CFLAGS@ @QT4_CORE_CFLAGS@ -+AM_CFLAGS = @GLIB_CFLAGS@ @QT4_CORE_CFLAGS@ - @HAVE_W32_SYSTEM_TRUE@LTRCCOMPILE = $(LIBTOOL) --mode=compile $(RC) \ - @HAVE_W32_SYSTEM_TRUE@ `echo $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) | \ - @HAVE_W32_SYSTEM_TRUE@ sed -e 's/-I/--include-dir /g;s/-D/--define /g'` -@@ -502,6 +535,7 @@ - libgpgme_pthread_la_LIBADD = $(assuan_libobjs) @LTLIBOBJS@ \ - -lpthread @GPG_ERROR_LIBS@ @NETLIBS@ +-AM_CFLAGS = @LIBASSUAN_CFLAGS@ @PTH_CFLAGS@ @GLIB_CFLAGS@ @QT4_CORE_CFLAGS@ ++AM_CFLAGS = @LIBASSUAN_CFLAGS@ @GLIB_CFLAGS@ @QT4_CORE_CFLAGS@ + @HAVE_W32_SYSTEM_TRUE@RCCOMPILE = $(RC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + @HAVE_W32_SYSTEM_TRUE@ $(AM_CPPFLAGS) $(CPPFLAGS) + +@@ -546,6 +586,7 @@ + libgpgme_pthread_la_LIBADD = $(gpgme_res) @LIBASSUAN_LIBS@ @LTLIBOBJS@ \ + -lpthread @GPG_ERROR_LIBS@ +libgpgme_pth_la_CFLAGS = ${CFLAGS} @PTH_CFLAGS@ - libgpgme_pth_la_LDFLAGS = @PTH_LDFLAGS@ \ + libgpgme_pth_la_LDFLAGS = @PTH_LDFLAGS@ $(no_undefined) $(export_symbols) \ $(libgpgme_version_script_cmd) -version-info \ @LIBGPGME_LT_CURRENT@:@LIBGPGME_LT_REVISION@:@LIBGPGME_LT_AGE@ -@@ -674,7 +708,6 @@ - @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/stpcpy.Plo@am__quote@ +@@ -760,7 +801,6 @@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ttyname_r.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vasprintf.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/assuan-support.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ath-pth.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ath-pthread.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ath.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conversion.Plo@am__quote@ -@@ -709,6 +742,58 @@ +@@ -798,6 +838,64 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/kdpipeiodevice.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/key.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/keylist.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-assuan-support.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-ath-pth.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-conversion.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-data-compat.Plo@am__quote@ @@ -121,9 +129,11 @@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-encrypt-sign.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-encrypt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-engine-assuan.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-engine-g13.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-engine-gpg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-engine-gpgconf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-engine-gpgsm.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-engine-uiserver.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-engine.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-error.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-export.Plo@am__quote@ @@ -138,6 +148,7 @@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-op-support.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-opassuan.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-passphrase.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-passwd.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-posix-io.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-posix-sema.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-posix-util.Plo@am__quote@ @@ -149,6 +160,8 @@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-trustlist.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-verify.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-version.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-vfs-create.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-vfs-mount.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-w32-io.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-w32-sema.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgpgme_pth_la-w32-util.Plo@am__quote@ @@ -159,7 +172,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/op-support.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opassuan.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/passphrase.Plo@am__quote@ -@@ -754,6 +839,370 @@ +@@ -846,6 +944,412 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< @@ -401,6 +414,13 @@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-opassuan.lo `test -f 'opassuan.c' || echo '$(srcdir)/'`opassuan.c + ++libgpgme_pth_la-passwd.lo: passwd.c ++@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-passwd.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-passwd.Tpo -c -o libgpgme_pth_la-passwd.lo `test -f 'passwd.c' || echo '$(srcdir)/'`passwd.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-passwd.Tpo $(DEPDIR)/libgpgme_pth_la-passwd.Plo ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='passwd.c' object='libgpgme_pth_la-passwd.lo' libtool=yes @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-passwd.lo `test -f 'passwd.c' || echo '$(srcdir)/'`passwd.c ++ +libgpgme_pth_la-engine.lo: engine.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-engine.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-engine.Tpo -c -o libgpgme_pth_la-engine.lo `test -f 'engine.c' || echo '$(srcdir)/'`engine.c +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-engine.Tpo $(DEPDIR)/libgpgme_pth_la-engine.Plo @@ -422,6 +442,13 @@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-engine-gpgsm.lo `test -f 'engine-gpgsm.c' || echo '$(srcdir)/'`engine-gpgsm.c + ++libgpgme_pth_la-assuan-support.lo: assuan-support.c ++@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-assuan-support.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-assuan-support.Tpo -c -o libgpgme_pth_la-assuan-support.lo `test -f 'assuan-support.c' || echo '$(srcdir)/'`assuan-support.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-assuan-support.Tpo $(DEPDIR)/libgpgme_pth_la-assuan-support.Plo ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='assuan-support.c' object='libgpgme_pth_la-assuan-support.lo' libtool=yes @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-assuan-support.lo `test -f 'assuan-support.c' || echo '$(srcdir)/'`assuan-support.c ++ +libgpgme_pth_la-engine-assuan.lo: engine-assuan.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-engine-assuan.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-engine-assuan.Tpo -c -o libgpgme_pth_la-engine-assuan.lo `test -f 'engine-assuan.c' || echo '$(srcdir)/'`engine-assuan.c +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-engine-assuan.Tpo $(DEPDIR)/libgpgme_pth_la-engine-assuan.Plo @@ -436,6 +463,34 @@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-engine-gpgconf.lo `test -f 'engine-gpgconf.c' || echo '$(srcdir)/'`engine-gpgconf.c + ++libgpgme_pth_la-engine-uiserver.lo: engine-uiserver.c ++@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-engine-uiserver.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-engine-uiserver.Tpo -c -o libgpgme_pth_la-engine-uiserver.lo `test -f 'engine-uiserver.c' || echo '$(srcdir)/'`engine-uiserver.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-engine-uiserver.Tpo $(DEPDIR)/libgpgme_pth_la-engine-uiserver.Plo ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='engine-uiserver.c' object='libgpgme_pth_la-engine-uiserver.lo' libtool=yes @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-engine-uiserver.lo `test -f 'engine-uiserver.c' || echo '$(srcdir)/'`engine-uiserver.c ++ ++libgpgme_pth_la-engine-g13.lo: engine-g13.c ++@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-engine-g13.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-engine-g13.Tpo -c -o libgpgme_pth_la-engine-g13.lo `test -f 'engine-g13.c' || echo '$(srcdir)/'`engine-g13.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-engine-g13.Tpo $(DEPDIR)/libgpgme_pth_la-engine-g13.Plo ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='engine-g13.c' object='libgpgme_pth_la-engine-g13.lo' libtool=yes @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-engine-g13.lo `test -f 'engine-g13.c' || echo '$(srcdir)/'`engine-g13.c ++ ++libgpgme_pth_la-vfs-mount.lo: vfs-mount.c ++@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-vfs-mount.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-vfs-mount.Tpo -c -o libgpgme_pth_la-vfs-mount.lo `test -f 'vfs-mount.c' || echo '$(srcdir)/'`vfs-mount.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-vfs-mount.Tpo $(DEPDIR)/libgpgme_pth_la-vfs-mount.Plo ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vfs-mount.c' object='libgpgme_pth_la-vfs-mount.lo' libtool=yes @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-vfs-mount.lo `test -f 'vfs-mount.c' || echo '$(srcdir)/'`vfs-mount.c ++ ++libgpgme_pth_la-vfs-create.lo: vfs-create.c ++@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-vfs-create.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-vfs-create.Tpo -c -o libgpgme_pth_la-vfs-create.lo `test -f 'vfs-create.c' || echo '$(srcdir)/'`vfs-create.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-vfs-create.Tpo $(DEPDIR)/libgpgme_pth_la-vfs-create.Plo ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vfs-create.c' object='libgpgme_pth_la-vfs-create.lo' libtool=yes @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -c -o libgpgme_pth_la-vfs-create.lo `test -f 'vfs-create.c' || echo '$(srcdir)/'`vfs-create.c ++ +libgpgme_pth_la-gpgconf.lo: gpgconf.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgpgme_pth_la_CFLAGS) $(CFLAGS) -MT libgpgme_pth_la-gpgconf.lo -MD -MP -MF $(DEPDIR)/libgpgme_pth_la-gpgconf.Tpo -c -o libgpgme_pth_la-gpgconf.lo `test -f 'gpgconf.c' || echo '$(srcdir)/'`gpgconf.c +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libgpgme_pth_la-gpgconf.Tpo $(DEPDIR)/libgpgme_pth_la-gpgconf.Plo @@ -529,4 +584,4 @@ + .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po + @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po |