forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
executable file
·247 lines (224 loc) · 7.17 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT(LCUI, 2.2.0, [email protected])
# Silence warning: ar: 'u' modifier ignored since 'D' is the default
AC_SUBST(AR_FLAGS, [cr])
# Check system type
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([include/LCUI_Build.h])
AC_CONFIG_HEADERS([include/config.h])
AC_CONFIG_MACRO_DIR([m4])
# Checks for programs.
AC_PROG_AWK
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_RANLIB
# Checks for libraries.
# FIXME: Replace `main' with a function in `-lm':
AC_CHECK_LIB([m], [main])
# Checks for header files.
AC_PATH_X
AC_CHECK_HEADERS([limits.h locale.h stdint.h stdlib.h string.h sys/time.h unistd.h wchar.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_INT32_T
AC_TYPE_INT64_T
AC_TYPE_SIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([gettimeofday memset pow select sqrt strcasecmp strstr])
# Make --enable-silent-rules the default.
# To get verbose build output you may configure
# with --disable-silent-rules or use "make V=1".
AM_SILENT_RULES([yes])
PKG_INSTALLDIR
AX_CODE_COVERAGE
PACKAGE_LIBS=""
CFLAGS="-Wall -D _GNU_SOURCE"
CXXFLAG="-Wall -D _GNU_SOURCE"
export C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/include/libxml2:/usr/include/freetype2/
# pthread
want_thread=no
thread_name=pthread
AC_ARG_WITH(pthread, AC_HELP_STRING([--with-pthread], [use pthread (default)]))
if test "x$with_pthread" != "xno"; then
AX_PTHREAD([
want_thread=yes
CC="$PTHREAD_CC"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
PACKAGE_LIBS="$PACKAGE_LIBS $PTHREAD_LIBS"
AC_DEFINE_UNQUOTED([LCUI_THREAD_PTHREAD], 1, [Define to 1 if you are using pthread support.])
], [AC_MSG_ERROR([The support could not be configured for the POSIX thread programming interface.])])
fi
# openmp
want_openmp=no
AC_ARG_WITH(openmp, AC_HELP_STRING([--with-openmp], [use openmp (default)]))
if test "x$with_openmp" != "xno"; then
AC_OPENMP
if test "x$OPENMP_CFLAGS" != "x"; then
want_openmp=yes
CFLAGS="$CFLAGS $OPENMP_CFLAGS"
AC_DEFINE_UNQUOTED(USE_OPENMP, 1, Define to 1 if you are using OpenMP support.)
else
AC_MSG_ERROR([The support could not be configured for the OpenMP.])
fi
else
want_openmp=no
fi
# libxml2
enable_builder=yes
AC_ARG_ENABLE(lcui-builder, AC_HELP_STRING([--enable-lcui-builder],
[enable lcui-builder module to build GUI with XML [default=yes]]), [enable_builder=$enableval])
if test "$enable_builder" = "yes"; then
AC_CHECK_HEADERS([libxml/parser.h],[
AC_CHECK_LIB([xml2], [xmlParseFile], [
enable_builder=yes
PACKAGE_LIBS="$PACKAGE_LIBS -lxml2"
CFLAGS="$CFLAGS -I/usr/include/libxml2"
AC_DEFINE_UNQUOTED([USE_LCUI_BUILDER], 1, [Define to 1 if you enabled LCUIBuilder function module.])
], [enable_builder=no])
], [enable_builder=no])
fi
# freetype
want_font_engine=yes
font_engine_name=none
AC_ARG_ENABLE(font-engine, AC_HELP_STRING([--enable-font-engine],
[turn on font-engine [default=yes]]), [want_font_engine=$enableval])
if test "$want_font_engine" = yes; then
PKG_CHECK_MODULES([FREETYPE], [freetype2], [
want_font_engine=yes
font_engine_name=freetype2
PACKAGE_LIBS="$PACKAGE_LIBS $FREETYPE_LIBS"
CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
AC_DEFINE_UNQUOTED([LCUI_FONT_ENGINE_FREETYPE], 1, [Define to 1 if you have the FreeType font engine.])
], [want_font_engine=no])
else
want_font_engine=no
fi
# fontconfig
want_fontconfig=yes
AC_ARG_ENABLE(fontconfig, AC_HELP_STRING([--enable-fontconfig],
[turn on fontconfig [default=yes]]), [want_fontconfig=$enableval])
if test "$want_fontconfig" = yes; then
AC_CHECK_HEADERS([fontconfig/fontconfig.h], [
AC_CHECK_LIB([fontconfig], [FcInitLoadConfigAndFonts], [
want_fontconfig=yes
PACKAGE_LIBS="$PACKAGE_LIBS `pkg-config --libs fontconfig`"
CFLAGS="$CFLAGS `pkg-config --cflags-only-I fontconfig`"
AC_DEFINE_UNQUOTED([USE_FONTCONFIG], 1, [Define to 1 if you have Fontconfig.])
], [want_fontconfig=no])
], [want_fontconfig=no])
else
want_fontconfig=no
fi
# video output
want_video_output=yes
want_video_driver_x11=no
want_video_driver_framebuffer=no
video_driver_name=none
AC_ARG_ENABLE(video-output, AC_HELP_STRING([--enable-video-output],
[turn on video-output [default=yes]]), [want_video_output=$enableval])
if test "$want_video_output" = yes; then
AC_CHECK_HEADERS([linux/fb.h],[
video_driver_name=framebuffer
want_video_driver_framebuffer=yes
AC_DEFINE_UNQUOTED([LCUI_VIDEO_DRIVER_FRAMEBUFFER], 1, [Define to 1 if you select FrameBuffer for video support.])
], [])
AC_CHECK_HEADERS([X11/Xlib.h],[
AC_CHECK_LIB([X11], [XOpenDisplay], [
video_driver_name=x11
want_video_driver_x11=yes
PACKAGE_LIBS="$PACKAGE_LIBS `pkg-config --libs x11`"
CFLAGS="$CFLAGS `pkg-config --cflags-only-I x11`"
AC_DEFINE_UNQUOTED([LCUI_VIDEO_DRIVER_X11], 1, [Define to 1 if you select XWindow for video support.])
], [])
], [])
else
want_video_output=no
fi
# libpng
want_png=no
AC_ARG_WITH(png, AC_HELP_STRING([--with-png], [use libpng (default)]))
if test "x$with_png" != "xno"; then
AC_CHECK_HEADERS([png.h],[
AC_CHECK_LIB([png], [png_sig_cmp],[
want_png=yes
PACKAGE_LIBS="$PACKAGE_LIBS `pkg-config --libs libpng`"
CFLAGS="$CFLAGS `pkg-config --cflags-only-I libpng`"
AC_DEFINE_UNQUOTED([USE_LIBPNG], 1, [Define to 1 if you have the libpng.])
], [want_png=no])
], [want_png=no])
fi
# libjpeg
want_jpeg=no
AC_ARG_WITH(jpeg, AC_HELP_STRING([--with-jpeg], [use libjpeg (default)]))
if test "x$with_jpeg" != "xno"; then
AC_CHECK_HEADERS([jpeglib.h setjmp.h],[
AC_CHECK_LIB([jpeg], [jpeg_start_decompress],[
want_jpeg=yes
PACKAGE_LIBS="$PACKAGE_LIBS -ljpeg"
AC_DEFINE_UNQUOTED([USE_LIBJPEG], 1, [Define to 1 if you have the libjpeg])
], [want_jpeg=no])
], [want_jpeg=no])
fi
# debug
want_debug=no
AC_MSG_CHECKING(whether to enable debugging)
AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
[turn on debugging [default=no]]), want_debug=$enableval)
if test "$want_debug" = "yes"; then
CFLAGS="$CFLAGS -g"
CXXFLAG="$CXXFLAGS -g"
AC_MSG_RESULT(yes)
else
CFLAGS="$CFLAGS -O2"
CXXFLAG="$CXXFLAGS -O2"
AC_MSG_RESULT(no)
fi
AC_SUBST(PACKAGE_LIBS)
AC_SUBST(CFLAGS)
AC_SUBST(CXXFLAGS)
AC_CONFIG_FILES([
lcui2.pc
Makefile
build/Makefile
include/Makefile
include/LCUI/Makefile
include/LCUI/font/Makefile
include/LCUI/draw/Makefile
include/LCUI/gui/widget/Makefile
include/LCUI/gui/Makefile
include/LCUI/util/Makefile
src/Makefile
src/font/Makefile
src/font/in-core/Makefile
src/draw/Makefile
src/thread/Makefile
src/image/Makefile
src/util/Makefile
src/gui/Makefile
src/platform/Makefile
test/Makefile
])
AC_OUTPUT
echo
echo
echo -e "Build with lcui-builder support .... : $enable_builder"
echo -e "Build with libpng support .......... : $want_png"
echo -e "Build with libjpeg support ......... : $want_jpeg"
echo -e "Build with font-engine support ..... : $font_engine_name"
echo -e "Build with fontconfig support ...... : $want_fontconfig"
echo -e "Build with thread support .......... : $thread_name"
echo -e "Build with OpenMP support .......... : $want_openmp"
echo -e "Build with video support ........... : $video_driver_name"
echo