Skip to content

Commit

Permalink
release 3.5.3-6
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengshuxin committed Jan 28, 2022
1 parent a41327d commit 2caf8aa
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ endif
##############################################################################

.PHONY = check help all_lib all samples all clean install uninstall uninstall_all build_one
VERSION = 3.5.1-5
VERSION = 3.5.3-6

default: build_one acl_master
help h:
Expand Down
8 changes: 2 additions & 6 deletions lib_acl/src/event/events_poll.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,8 @@

#ifdef ACL_EVENTS_POLL_STYLE
#if !defined(ACL_WINDOWS)
# if defined(ALPINE)
# include <poll.h>
# else
# include <sys/poll.h>
# endif
#include <unistd.h>
# include <poll.h>
# include <unistd.h>
#endif

#include "events_fdtable.h"
Expand Down
14 changes: 5 additions & 9 deletions lib_acl/src/event/events_poll_thr.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,11 @@
#include "events_define.h"

#if defined(ACL_EVENTS_POLL_STYLE) && !defined(ACL_WINDOWS)
# if defined(ALPINE)
# include <poll.h>
# else
# include <sys/poll.h>
# endif
#include <unistd.h>
#include "events_fdtable.h"
#include "events_dog.h"
#include "events.h"
# include <poll.h>
# include <unistd.h>
# include "events_fdtable.h"
# include "events_dog.h"
# include "events.h"

typedef struct EVENT_POLL_THR {
EVENT_THR event;
Expand Down
2 changes: 1 addition & 1 deletion lib_acl/src/init/acl_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

#include "init.h"

static char *version = "3.5.3-5 20211213-15:56";
static char *version = "3.5.3-6 20220128-23:40";

const char *acl_version(void)
{
Expand Down
10 changes: 3 additions & 7 deletions lib_acl/src/stdlib/iostuff/acl_read_wait.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,9 @@
#endif

#ifdef ACL_UNIX
#include <fcntl.h>
# if defined(ALPINE)
# include <poll.h>
# else
# include <sys/poll.h>
# endif
#include <unistd.h>
# include <fcntl.h>
# include <poll.h>
# include <unistd.h>
#endif

#ifdef ACL_BCB_COMPILER
Expand Down
10 changes: 3 additions & 7 deletions lib_acl/src/stdlib/iostuff/acl_write_wait.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,9 @@
#endif

#ifdef ACL_UNIX
#include <fcntl.h>
# ifdef ALPINE
# include <poll.h>
# else
# include <sys/poll.h>
# endif
#include <unistd.h>
# include <fcntl.h>
# include <poll.h>
# include <unistd.h>
#endif

#ifdef ACL_BCB_COMPILER
Expand Down

0 comments on commit 2caf8aa

Please sign in to comment.