From 37f0addbe80582e0c89ff8a43b85d88028787856 Mon Sep 17 00:00:00 2001 From: Packit Service Date: Nov 09 2020 14:12:03 +0000 Subject: Add sources defined in the spec file --- diff --git a/SPECS/gpgme-1.13.1.tar.bz2 b/SPECS/gpgme-1.13.1.tar.bz2 new file mode 100644 index 0000000..0e704ae Binary files /dev/null and b/SPECS/gpgme-1.13.1.tar.bz2 differ diff --git a/SPECS/gpgme-multilib.h b/SPECS/gpgme-multilib.h new file mode 100644 index 0000000..574f09d --- /dev/null +++ b/SPECS/gpgme-multilib.h @@ -0,0 +1,20 @@ +/* gpgme-multilib.h */ +/* This file is here to prevent a file conflict on multiarch systems. A + * conflict will occur because gpgme.h has arch-specific definitions. + * + * DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */ + +#ifndef GPGME_MULTILIB_H +#define GPGME_MULTILIB_H +#include + +#if __WORDSIZE == 32 +#include "gpgme-32.h" +#elif __WORDSIZE == 64 +#include "gpgme-64.h" +#else +#error "unexpected value for __WORDSIZE macro" +#endif + +#endif +