2014-09-17 14:05:17 +02:00
|
|
|
--- ./lib/rpmrc.c.orig 2014-07-03 15:11:48.572096075 +0000
|
|
|
|
+++ ./lib/rpmrc.c 2014-09-17 12:04:27.330717791 +0000
|
|
|
|
@@ -79,10 +79,12 @@ struct rpmOption {
|
2013-02-20 18:32:28 +01:00
|
|
|
int localize;
|
|
|
|
};
|
|
|
|
|
2014-09-17 14:05:17 +02:00
|
|
|
+#if defined(__linux__) && (defined(__powerpc__) || defined(__sparc__) || (defined(__arm__) && defined(__ARM_PCS_VFP)))
|
2013-02-20 18:32:28 +01:00
|
|
|
static struct rpmat_s {
|
|
|
|
const char *platform;
|
|
|
|
uint64_t hwcap;
|
|
|
|
} rpmat;
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
typedef struct defaultEntry_s {
|
|
|
|
char * name;
|
2014-09-17 14:05:17 +02:00
|
|
|
@@ -936,7 +938,7 @@ static int is_geode(void)
|
2013-02-20 18:32:28 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
-#if defined(__linux__)
|
2014-09-17 14:05:17 +02:00
|
|
|
+#if defined(__linux__) && (defined(__powerpc__) || defined(__sparc__) || (defined(__arm__) && defined(__ARM_PCS_VFP)))
|
2013-02-20 18:32:28 +01:00
|
|
|
/**
|
2014-02-20 14:18:41 +01:00
|
|
|
* Populate rpmat structure with auxv values
|
2013-02-20 18:32:28 +01:00
|
|
|
*/
|
2014-09-17 14:05:17 +02:00
|
|
|
@@ -993,7 +995,7 @@ static void defaultMachine(rpmrcCtx ctx,
|
2013-02-20 18:32:28 +01:00
|
|
|
canonEntry canon;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
-#if defined(__linux__)
|
2014-09-17 14:05:17 +02:00
|
|
|
+#if defined(__linux__) && (defined(__powerpc__) || defined(__sparc__) || (defined(__arm__) && defined(__ARM_PCS_VFP)))
|
2013-02-20 18:32:28 +01:00
|
|
|
/* Populate rpmat struct with hw info */
|
2014-02-20 14:18:41 +01:00
|
|
|
read_auxv();
|
2013-02-20 18:32:28 +01:00
|
|
|
#endif
|