Skip to content

Commit 1e72b67

Browse files
author
ubuntu14
committed
prepare for acl 3.1.5
1 parent 1618216 commit 1e72b67

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ endif
7676
##############################################################################
7777

7878
.PHONY = check help all_lib all samples all clean install uninstall uninstall_all build_bin build_src build_one
79-
VERSION = 3.1.4.4
79+
VERSION = 3.1.5
8080

8181
help:
8282
@(echo "usage: make help|all|all_lib|all_samples|clean|install|uninstall|uninstall_all|build_bin|build_src|build_one")

Makefile.debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ endif
6161
##############################################################################
6262

6363
.PHONY = check help all_lib all samples all clean install uninstall uninstall_all build_bin build_src build_one
64-
VERSION = 3.1.3
64+
VERSION = 3.1.5
6565

6666
help:
6767
@(echo "usage: make help|all|all_lib|all_samples|clean|install|uninstall|uninstall_all|build_bin|build_src|build_one")

lib_acl/StdAfx.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ int acl_secure_vsnprintf(char *buf, size_t size, const char *fmt, va_list ap);
4242
# include <pthread.h>
4343
# include <dlfcn.h>
4444
# include <dirent.h>
45+
# include <netinet/in.h>
4546
# include <netinet/ip.h>
4647
# include <netinet/tcp.h>
4748
# include <netdb.h>

lib_acl/src/init/acl_init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#include "init.h"
2626

27-
static char *version = "acl_3.1.4.4";
27+
static char *version = "acl_3.1.5";
2828

2929
const char *acl_version(void)
3030
{
Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
base_path = ../../..
2-
PROG = string
32
include ../../Makefile.in
3+
#Path for SunOS
4+
ifeq ($(findstring SunOS, $(UNIXNAME)), SunOS)
5+
EXTLIBS = -liconv
6+
endif
7+
ifeq ($(findstring FreeBSD, $(UNIXNAME)), FreeBSD)
8+
EXTLIBS = -L/usr/local/lib -liconv
9+
endif
10+
ifeq ($(findstring Darwin, $(UNIXNAME)), Darwin)
11+
EXTLIBS += -L/usr/lib -liconv
12+
endif
13+
PROG = string

0 commit comments

Comments
 (0)