mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
- acpid is compiled with -Werror, and gcc 4.1.1 warns about mismatching
pointers. Fix it by using socklen_t type. - Modify acpid.mk to apply all available patches. Convert ACPI_SOCKETFILE adjustment from sed script to a patch. Thanks to Pavel Roskin
This commit is contained in:
parent
c33db03a19
commit
8bdb7bd3aa
11
package/acpid/acpid-sign-warning.patch
Normal file
11
package/acpid/acpid-sign-warning.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- acpid-1.0.4/ud_socket.c
|
||||||
|
+++ acpid-1.0.4/ud_socket.c
|
||||||
|
@@ -58,7 +58,7 @@ ud_accept(int listenfd, struct ucred *cr
|
||||||
|
while (1) {
|
||||||
|
int newsock = 0;
|
||||||
|
struct sockaddr_un cliaddr;
|
||||||
|
- int len = sizeof(struct sockaddr_un);
|
||||||
|
+ socklen_t len = sizeof(struct sockaddr_un);
|
||||||
|
|
||||||
|
newsock = accept(listenfd, (struct sockaddr *)&cliaddr, &len);
|
||||||
|
if (newsock < 0) {
|
11
package/acpid/acpid-socket-path.patch
Normal file
11
package/acpid/acpid-socket-path.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- acpid-1.0.4/acpid.h
|
||||||
|
+++ acpid-1.0.4/acpid.h
|
||||||
|
@@ -32,7 +32,7 @@
|
||||||
|
#define ACPI_EVENTFILE ACPI_PROCDIR "/event"
|
||||||
|
#define ACPI_CONFDIR "/etc/acpi/events"
|
||||||
|
#define ACPI_LOGFILE "/var/log/acpid"
|
||||||
|
-#define ACPI_SOCKETFILE "/var/run/acpid.socket"
|
||||||
|
+#define ACPI_SOCKETFILE "/tmp/acpid.socket"
|
||||||
|
#define ACPI_SOCKETMODE 0666
|
||||||
|
#define ACPI_MAX_ERRS 5
|
||||||
|
|
@ -10,12 +10,12 @@ ACPID_SITE=http://ftp.debian.org/debian/pool/main/a/acpid
|
|||||||
$(DL_DIR)/$(ACPID_SOURCE):
|
$(DL_DIR)/$(ACPID_SOURCE):
|
||||||
$(WGET) -P $(DL_DIR) $(ACPID_SITE)/$(ACPID_SOURCE)
|
$(WGET) -P $(DL_DIR) $(ACPID_SITE)/$(ACPID_SOURCE)
|
||||||
|
|
||||||
$(ACPID_DIR)/Makefile: $(DL_DIR)/$(ACPID_SOURCE)
|
$(ACPID_DIR)/.unpacked: $(DL_DIR)/$(ACPID_SOURCE)
|
||||||
$(ZCAT) $(DL_DIR)/$(ACPID_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
$(ZCAT) $(DL_DIR)/$(ACPID_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
||||||
$(SED) "s:ACPI_SOCKETFILE.*:ACPI_SOCKETFILE \"/tmp/acpid.socket\":" $(ACPID_DIR)/acpid.h
|
toolchain/patch-kernel.sh $(ACPID_DIR) package/acpid/ acpid\*.patch
|
||||||
touch -c $(ACPID_DIR)/Makefile
|
touch $(ACPID_DIR)/.unpacked
|
||||||
|
|
||||||
$(ACPID_DIR)/acpid: $(ACPID_DIR)/Makefile
|
$(ACPID_DIR)/acpid: $(ACPID_DIR)/.unpacked
|
||||||
$(MAKE) CC=$(TARGET_CC) -C $(ACPID_DIR)
|
$(MAKE) CC=$(TARGET_CC) -C $(ACPID_DIR)
|
||||||
$(STRIP) -s $(ACPID_DIR)/acpid
|
$(STRIP) -s $(ACPID_DIR)/acpid
|
||||||
$(STRIP) -s $(ACPID_DIR)/acpi_listen
|
$(STRIP) -s $(ACPID_DIR)/acpi_listen
|
||||||
|
Loading…
x
Reference in New Issue
Block a user