forked from sahlberg/libsmb2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
167 lines (132 loc) · 4.08 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
AC_PREREQ([2.58])
AC_INIT([libsmb2], [3.0.0], [ronniesahlberg@gmail.com])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_TARGET
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects 1.11])
case $target_os in
*android) arch_sub=android;;
esac
#debug options support
AC_ARG_ENABLE([debug],
[AS_HELP_STRING([--enable-debug],[debug program by full level(default is no)])])
AC_ARG_ENABLE([release],
[AS_HELP_STRING([--enable-release],[release program(default is no)])])
AC_ARG_ENABLE([asan],
[AS_HELP_STRING([--enable-asan],[asan program by full level(default is no)])])
dnl We always want 64 bit file offsets
CPPFLAGS="-D_FILE_OFFSET_BITS=64 $CPPFLAGS"
if test "$ac_env_CFLAGS_set" != set; then
if test x$enable_release = xyes;then
CFLAGS="-O2"
elif test x$enable_debug = xyes;then
CFLAGS="-g3 -ggdb -O0";
AC_DEFINE(DEBUG,[ ],[ ])
else
CFLAGS="-g -O2"
fi
if test x$enable_asan = xyes;then
CFLAGS="$CFLAGS -fsanitize=address -fsanitize-recover=all\
-fno-omit-frame-pointer -fno-stack-protector"
fi
if test "$arch_sub" = android;then
CFLAGS="$CFLAGS -fPIE -pie"
fi
fi
echo "------------CFLAGS:$CFLAGS"
echo "------------CPPFLAGS:$CPPFLAGS"
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
AC_PROG_CC
AC_PROG_LIBTOOL
AM_PROG_CC_C_O
AC_ARG_ENABLE([examples],
[AS_HELP_STRING([--enable-examples],
[Build example programs])])
AM_CONDITIONAL([ENABLE_EXAMPLES],
[test "$enable_examples" = "yes"])
AC_ARG_WITH([libkrb5],
[AS_HELP_STRING([--without-libkrb5],
[Do not link with libkrb5 and use builtin
NTLMSSP module for authentication instead.])])
AS_IF([test "x$with_libkrb5" != "xno"], [
MAYBE_LIBKRB5="-lgssapi_krb5"
AC_DEFINE([HAVE_LIBKRB5], [1], [Whether we use gssapi_krb5 or not])
AC_MSG_NOTICE([Build with gssapi_krb5 support])
dnl Check for gssapi/gssapi.h
AC_CHECK_HEADERS([gssapi/gssapi.h], [], [
AC_MSG_ERROR([You need gssapi development files to compile libsmb2.])
])
], [
MAYBE_LIBKRB5=""
AC_MSG_NOTICE([Build WITHOUT gssapi_krb5 support])
])
AC_SUBST([MAYBE_LIBKRB5])
AC_ARG_ENABLE([werror],
[AS_HELP_STRING([--disable-werror],
[Disables building with -Werror by default])])
AS_IF([test "$GCC" = "yes"], [
WARN_CFLAGS="-Wall -W\
-Wno-unused-parameter\
-Wno-unused-result\
-Wno-sign-compare"
AS_IF([test "$enable_werror" != "no"], [
WARN_CFLAGS="${WARN_CFLAGS} -Werror"
])
])
AC_SUBST([WARN_CFLAGS])
LIBSOCKET=
SYS=
case $host in
*solaris*)
AC_CHECK_LIB([socket], [main], , [AC_MSG_ERROR([Can not find required library])])
AC_CHECK_LIB([nsl], [main], , [AC_MSG_ERROR([Can not find required library])])
;;
*mingw32* | *cygwin* | *wince* | *mingwce*)
LIBSOCKET='-lws2_32'
SYS=mingw32
;;
*)
;;
esac
AM_CONDITIONAL([HAVE_WIN32], [test "${SYS}" = "mingw32"])
AC_SUBST([LIBSOCKET])
dnl Check for poll.h
AC_CHECK_HEADERS([poll.h])
dnl Check for unistd.h
AC_CHECK_HEADERS([unistd.h])
dnl Check for netdb.h
AC_CHECK_HEADERS([netdb.h])
dnl Check for sys/ioctl.h
AC_CHECK_HEADERS([sys/ioctl.h])
dnl Check for sys/socket.h
AC_CHECK_HEADERS([sys/socket.h])
dnl Check for sys/uio.h
AC_CHECK_HEADERS([sys/uio.h])
dnl Check for netinet/tcp.h
AC_CHECK_HEADERS([netinet/tcp.h])
dnl Check for netinet/in.h
AC_CHECK_HEADERS([netinet/in.h])
dnl Check for arpa/inet.h
AC_CHECK_HEADERS([arpa/inet.h])
dnl Check if sockaddr data struct includes a "sa_len"
AC_CHECK_MEMBER([struct sockaddr.sa_len], [
AC_DEFINE([HAVE_SOCKADDR_LEN], [1], [Whether sockaddr struct has sa_len])
], [], [
#include <sys/types.h>
#include <sys/socket.h>
])
dnl Check if sockaddr_storage struct includes a "ss_family"
AC_CHECK_MEMBER([struct sockaddr_storage.ss_family], [
AC_DEFINE([HAVE_SOCKADDR_STORAGE], [1], [Whether we have sockaddr_Storage])
], [], [
#include <sys/types.h>
#include <sys/socket.h>
])
dnl Output
AC_CONFIG_FILES([
Makefile
examples/Makefile
include/Makefile
lib/Makefile
])
AC_OUTPUT([libsmb2.pc])