-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
193 lines (163 loc) · 5.6 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT([libmotslideshow], [0.0.1], [[email protected]])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR([config])
AC_CONFIG_HEADERS([src/config.h])
AM_INIT_AUTOMAKE(foreign subdir-objects tar-ustar dist-zip)
AX_CREATE_PKGCONFIG_INFO
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
# This lets us use PACKAGE_VERSION in Makefiles
AC_SUBST(PACKAGE_VERSION)
# Libtool -version-info (ABI version)
LTVER="5:0:0"
AC_SUBST(LTVER)
# Take a copy of original flags
MOTSLIDESHOW_ORIG_CFLAGS="${CFLAGS:-none}"
MOTSLIDESHOW_ORIG_CPPFLAGS="${CPPFLAGS:-none}"
MOTSLIDESHOW_ORIG_CXXFLAGS="${CXXFLAGS:-none}"
# Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AX_CXX_COMPILE_STDCXX_11([noext], [mandatory])
AC_PROG_SED
AC_PROG_AWK
PKG_PROG_PKG_CONFIG
m4_pattern_forbid([^PKG_[A-Z_]+$], [missing some pkg-config macros (pkg-config package)])
# Libtool configuration for different targets. See acinclude.m4
AC_ARG_VAR([XMLTO], [Path to xmlto command])
AC_PATH_PROG([XMLTO], [xmlto])
AC_ARG_VAR([ASCIIDOC], [Path to asciidoc command])
AC_PATH_PROG([ASCIIDOC], [asciidoc])
LIBMOTSLIDESHOW_CONFIG_LIBTOOL
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
# Check whether to build a with debug symbols
LIBMOTSLIDESHOW_CHECK_ENABLE_DEBUG
# By default compiling with -Werror except OSX.
libmotslideshow_werror="yes"
# By default use DSO visibility
libmotslideshow_dso_visibility="yes"
# Platform specific checks
libmotslideshow_on_mingw32="no"
libmotslideshow_on_cygwin="no"
libmotslideshow_on_android="no"
libmotslideshow_on_linux="no"
# Set some default features required
CPPFLAGS="$CPPFLAGS"
# For host type checks
AC_CANONICAL_HOST
# OS-specific tests
case "${host_os}" in
*linux*)
# Define on Linux to enable all library features. Define if using a gnu compiler
if test "x$GXX" = "xyes"; then
CPPFLAGS="-D_GNU_SOURCE $CPPFLAGS"
fi
AC_DEFINE(MOTSLIDESHOW_HAVE_LINUX, 1, [Have Linux OS])
libmotslideshow_on_linux="yes"
case "${host_os}" in
*android*)
AC_DEFINE(MOTSLIDESHOW_HAVE_ANDROID, 1, [Have Android OS])
libmotslideshow_on_android="yes"
;;
esac
;;
*freebsd*)
# Define on FreeBSD to enable all library features
CPPFLAGS="-D__BSD_VISIBLE $CPPFLAGS"
AC_DEFINE(MOTSLIDESHOW_HAVE_FREEBSD, 1, [Have FreeBSD OS])
;;
*darwin*)
# Define on Darwin to enable all library features
CPPFLAGS="-D_DARWIN_C_SOURCE $CPPFLAGS"
libmotslideshow_pedantic="no"
libmotslideshow_werror="no"
AC_DEFINE(MOTSLIDESHOW_HAVE_OSX, 1, [Have DarwinOSX OS])
;;
*mingw*)
AC_DEFINE(MOTSLIDESHOW_HAVE_WINDOWS, 1, [Have Windows OS])
AC_DEFINE(MOTSLIDESHOW_HAVE_MINGW32, 1, [Have MinGW32])
AC_CHECK_HEADERS(windows.h)
AC_CHECK_LIB(ws2_32, main, ,
[AC_MSG_ERROR([cannot link with ws2_32.dll.])])
AC_CHECK_LIB(rpcrt4, main, ,
[AC_MSG_ERROR([cannot link with rpcrt4.dll.])])
AC_CHECK_LIB(iphlpapi, main, ,
[AC_MSG_ERROR([cannot link with iphlpapi.dll.])])
# mingw32 defines __int64_t as long long
libmotslideshow_on_mingw32="yes"
libmotslideshow_dso_visibility="no"
if test "x$enable_static" = "xyes"; then
AC_MSG_ERROR([Building static libraries is not supported under MinGW32])
fi
# Set FD_SETSIZE to 1024
CPPFLAGS=" -DFD_SETSIZE=1024 $CPPFLAGS"
;;
*cygwin*)
# Define on Cygwin to enable all library features
CPPFLAGS="-D_GNU_SOURCE $CPPFLAGS"
AC_DEFINE(MOTSLIDESHOW_HAVE_CYGWIN, 1, [Have Cygwin])
libmotslideshow_on_cygwin="yes"
libmotslideshow_dso_visibility="no"
if test "x$enable_static" = "xyes"; then
AC_MSG_ERROR([Building static libraries is not supported under Cygwin])
fi
;;
*)
AC_MSG_ERROR([unsupported system: ${host_os}.])
;;
esac
# Checks for libraries
PKG_CHECK_MODULES([LIBMOT], [mot]) # libmot
# Check whether to build docs / install man pages
LIBMOTSLIDESHOW_CHECK_DOC_BUILD
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(\
errno.h \
time.h \
unistd.h \
limits.h \
stddef.h \
stdlib.h \
string.h \
arpa/inet.h \
netinet/tcp.h \
netinet/in.h \
sys/socket.h \
sys/time.h)
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_HEADER_TIME
AC_TYPE_UINT32_T
AC_C_VOLATILE
AM_CONDITIONAL(ON_MINGW, test "x$libmotslideshow_on_mingw32" = "xyes")
AM_CONDITIONAL(ON_CYGWIN, test "x$libmotslideshow_on_cygwin" = "xyes")
AM_CONDITIONAL(ON_ANDROID, test "x$libmotslideshow_on_android" = "xyes")
AM_CONDITIONAL(ON_LINUX, test "x$libmotslideshow_on_linux" = "xyes")
# Checks for library functions.
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(perror gettimeofday clock_gettime memset socket getifaddrs freeifaddrs fork posix_memalign)
AC_CHECK_HEADERS([alloca.h])
AM_CONDITIONAL(HAVE_FORK, test "x$ac_cv_func_fork" = "xyes")
# Subst LIBMOTSLIDESHOW_EXTRA_CFLAGS & CXXFLAGS & LDFLAGS
AC_SUBST(LIBMOTSLIDESHOW_EXTRA_CFLAGS)
AC_SUBST(LIBMOTSLIDESHOW_EXTRA_CXXFLAGS)
AC_SUBST(LIBMOTSLIDESHOW_EXTRA_LDFLAGS)
# set pkgconfigdir, allow override
AC_ARG_WITH([pkgconfigdir],
AS_HELP_STRING([--with-pkgconfigdir=PATH],
[Path to the pkgconfig directory [[LIBDIR/pkgconfig]]]),
[pkgconfigdir="$withval"],
[pkgconfigdir='${libdir}/pkgconfig'])
AC_SUBST([pkgconfigdir])
AC_CONFIG_FILES([ \
Makefile \
src/libmotslideshow.pc \
doc/Makefile])
AC_OUTPUT