summaryrefslogtreecommitdiffstats
path: root/zipconf.h
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2013-08-08 10:58:49 +0200
committerRemi Collet <fedora@famillecollet.com>2013-08-08 10:58:49 +0200
commit78ef147bbb6d9964f90207014412c8395e53e2a4 (patch)
treebf50025c107666d7922321f1429c2ce640d2e25d /zipconf.h
parent382118baf6b037764e0bc4fdb17ee6089c93f4af (diff)
libzip: sync with rawhide
Diffstat (limited to 'zipconf.h')
-rw-r--r--zipconf.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/zipconf.h b/zipconf.h
deleted file mode 100644
index 89a6da1..0000000
--- a/zipconf.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Kluge to support multilib installation of both 32 and 64-bit RPMS:
- * we need to arrange that header files that appear in both RPMs are
- * identical. Hence, this file is architecture-independent and calls
- * in an arch-dependent file that will appear in just one RPM.
- *
- * To avoid breaking arches not explicitly supported by Fedora, we
- * use this indirection file *only* on known multilib arches.
- */
-#if defined(__x86_64__)
-#include "zipconf_x86_64.h"
-#elif defined(__i386__)
-#include "zipconf_i386.h"
-#elif defined(__ppc64__) || defined(__powerpc64__)
-#include "zipconf_ppc64.h"
-#elif defined(__ppc__) || defined(__powerpc__)
-#include "zipconf_ppc.h"
-#elif defined(__s390x__)
-#include "zipconf_s390x.h"
-#elif defined(__s390__)
-#include "zipconf_s390.h"
-#elif defined(__sparc__) && defined(__arch64__)
-#include "zipconf_sparc64.h"
-#elif defined(__sparc__)
-#include "zipconf_sparc.h"
-#endif