Browse Source

Merge pull request #9412 from neheb/ext

libextractor: Add missing header
lilik-openwrt-22.03
Daniel Golle 5 years ago
committed by GitHub
parent
commit
058bd82c15
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 2 deletions
  1. +2
    -2
      libs/libextractor/Makefile
  2. +13
    -0
      libs/libextractor/patches/010-musl.patch

+ 2
- 2
libs/libextractor/Makefile View File

@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=libextractor
PKG_VERSION:=1.9
PKG_RELEASE:=1
PKG_RELEASE:=2
# ToDo:
# - package missing optional dependencies: libexiv2, gsf, librpm, smf, tidy
@ -16,7 +16,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
PKG_HASH:=f08f257d26c5e9b503f068d6753c8e55cb76f47f73a81da6ed2bba3de3fee2ff
PKG_LICENSE:=GPL-3.0
PKG_LICENSE:=GPL-3.0-or-later
PKG_LICENSE_FILES:=COPYING
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>


+ 13
- 0
libs/libextractor/patches/010-musl.patch View File

@ -0,0 +1,13 @@
diff --git a/src/common/le_architecture.h b/src/common/le_architecture.h
index b863ddb..713acdd 100644
--- a/src/common/le_architecture.h
+++ b/src/common/le_architecture.h
@@ -26,6 +26,8 @@
#if WINDOWS
#include <sys/param.h> /* #define BYTE_ORDER */
+#else
+#include <byteswap.h>
#endif
/* This is copied directly from GNUnet headers */

Loading…
Cancel
Save