1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Remove -I option to common.

* dirmngr/Makefile.am (AM_CPPFLAGS): Remove -I$(top_srcdir)/common.
* g10/Makefile.am (AM_CPPFLAGS): Ditto.
* g13/Makefile.am (AM_CPPFLAGS): Ditto.
* kbx/Makefile.am (AM_CPPFLAGS): Ditto.
* scd/Makefile.am (AM_CPPFLAGS): Ditto.
* sm/Makefile.am (AM_CPPFLAGS): Ditto.
* tools/Makefile.am (AM_CPPFLAGS): Ditto.
* Throughout: Follow the change.

Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2017-03-07 20:21:23 +09:00
parent de3838372a
commit 70aca95d68
164 changed files with 446 additions and 451 deletions

View file

@ -20,7 +20,7 @@
EXTRA_DIST = mkerrors
AM_CPPFLAGS = -I$(top_srcdir)/common
AM_CPPFLAGS =
include $(top_srcdir)/am/cmacros.am

View file

@ -33,7 +33,7 @@
#include "../common/argparse.h"
#include "../common/stringhelp.h"
#include "../common/utf8conv.h"
#include "i18n.h"
#include "../common/i18n.h"
#include "keybox-defs.h"
#include "../common/init.h"
#include <gcrypt.h>

View file

@ -25,7 +25,7 @@
#include "keybox-defs.h"
#include <gcrypt.h>
#include "host2net.h"
#include "../common/host2net.h"
/* Argg, we can't include ../common/util.h */
char *bin2hexcolon (const void *buffer, size_t length, char *stringbuf);

View file

@ -36,7 +36,7 @@
#include <gcrypt.h>
#include "../common/openpgpdefs.h"
#include "host2net.h"
#include "../common/host2net.h"
/* Assume a valid OpenPGP packet at the address pointed to by BUFBTR
which has a maximum length as stored at BUFLEN. Return the header

View file

@ -27,8 +27,8 @@
#include "keybox-defs.h"
#include <gcrypt.h>
#include "host2net.h"
#include "mbox-util.h"
#include "../common/host2net.h"
#include "../common/mbox-util.h"
#define xtoi_1(p) (*(p) <= '9'? (*(p)- '0'): \
*(p) <= 'F'? (*(p)-'A'+10):(*(p)-'a'+10))

View file

@ -27,7 +27,7 @@
#endif
#include "keybox-defs.h"
#include "utilproto.h"
#include "../common/utilproto.h"
static void *(*alloc_func)(size_t n) = malloc;