rspamd: make SECTION_RODATA actually be .rodata rather than .text.

(This is the first broken port I found due to the data in .text warning).

ok sthen (maintainer)
This commit is contained in:
tb 2023-01-21 12:32:12 +00:00
parent 8a8c4287e7
commit 1bf96add18
2 changed files with 13 additions and 1 deletions

View File

@ -3,7 +3,7 @@ COMMENT= event-driven spam filtering system in C/Lua
GH_ACCOUNT= vstakhov
GH_PROJECT= rspamd
GH_TAGNAME= 3.4
REVISION= 0
REVISION= 1
CATEGORIES= mail

View File

@ -0,0 +1,12 @@
Index: src/libcryptobox/macro.S
--- src/libcryptobox/macro.S.orig
+++ src/libcryptobox/macro.S
@@ -79,7 +79,7 @@
.endm
.macro SECTION_RODATA
- .text
+ .rodata
.endm
#endif