ae165de876
- ppc-atomic.patch: use libatomic also on ppc OBS-URL: https://build.opensuse.org/request/show/799525 OBS-URL: https://build.opensuse.org/package/show/server:database/redis?expand=0&rev=141
16 lines
397 B
Diff
16 lines
397 B
Diff
Index: redis-5.0.9/src/Makefile
|
|
===================================================================
|
|
--- redis-5.0.9.orig/src/Makefile
|
|
+++ redis-5.0.9/src/Makefile
|
|
@@ -83,6 +83,10 @@ ifneq (,$(filter aarch64 armv,$(uname_M)
|
|
else
|
|
ifneq (,$(findstring armv,$(uname_M)))
|
|
FINAL_LIBS+=-latomic
|
|
+else
|
|
+ifneq (,$(findstring ppc,$(uname_M)))
|
|
+ FINAL_LIBS+=-latomic
|
|
+endif
|
|
endif
|
|
endif
|
|
|