1 AC_PREREQ(2.60)
2 AC_INIT(ncmpc, 0.26, max@duempel.org)
4 VERSION_MAJOR=0
5 VERSION_MINOR=26
6 VERSION_REVISION=0
7 VERSION_EXTRA=0
9 AC_CONFIG_SRCDIR([src/main.c])
10 AC_CONFIG_AUX_DIR(build)
11 AM_INIT_AUTOMAKE([foreign 1.11 dist-xz subdir-objects])
12 AM_SILENT_RULES
13 AC_CONFIG_HEADERS([config.h])
14 AC_CONFIG_MACRO_DIR([m4])
17 dnl Check for programs
18 AC_PROG_CC_C99
19 AC_PROG_INSTALL
20 AX_WITH_CURSES
22 AS_IF([ test "x$ax_cv_curses" = xno ],
23 [AC_MSG_ERROR([No curses support detected.])
24 ])
26 dnl =======================================================
27 dnl initialize variables
28 dnl =======================================================
30 dnl i18n
31 ALL_LINGUAS=`grep -v '^\#' $srcdir/po/LINGUAS`
33 set -- $CFLAGS
36 dnl
37 dnl ncmpc-mini
38 dnl
40 AC_ARG_ENABLE(mini,
41 AS_HELP_STRING([--enable-mini],
42 [Build ncmpc-mini, i.e. without all optional features @<:@default=no@:>@]),,
43 [enable_mini=no])
45 AM_CONDITIONAL(NCMPC_MINI, test x$enable_mini = xyes)
46 if test "x$enable_mini" = xyes; then
47 AC_DEFINE([NCMPC_MINI], [1], [Build ncmpc-mini, which disables lots of features])
48 auto=no
49 disable_mini=no
50 auto_mini=no
51 else
52 auto=auto
53 disable_mini=yes
54 auto_mini=auto
55 fi
57 AC_CANONICAL_HOST
59 case "$host_os" in
60 mingw32* | windows*)
61 LIBS="$LIBS -lws2_32"
63 AC_CONFIG_FILES([
64 src/win/ncmpc_win32_rc.rc
65 ])
66 AC_CHECK_TOOL(WINDRES, windres)
67 HAVE_WINDOWS=1
68 ;;
69 *)
70 AC_CHECK_FUNC([socket],
71 [],
72 [AC_CHECK_LIB([socket],[socket],[LIBS="$LIBS -lsocket"],
73 [AC_MSG_ERROR(No UNIX socket API found)])
74 ])
76 AC_CHECK_FUNC([gethostbyname],
77 [],
78 [AC_CHECK_LIB([nsl],[gethostbyname],[LIBS="$LIBS -lnsl"],
79 [AC_MSG_ERROR(No UNIX gethostbyname API found)])
80 ])
82 HAVE_WINDOWS=0
83 esac
84 AM_CONDITIONAL([HAVE_WINDOWS], [test $HAVE_WINDOWS -eq 1])
86 dnl multi-byte character support
88 AC_ARG_ENABLE([multibyte],
89 AS_HELP_STRING([--disable-multibyte],
90 [Disable multibyte character support @<:@default=yes@:>@]),,
91 [enable_multibyte=$disable_mini])
93 if test x$enable_multibyte = xyes; then
94 AC_DEFINE([ENABLE_MULTIBYTE], [1], [Enable multibyte character support])
95 else
96 if test "x$ax_cv_curses_enhanced" = xyes; then
97 AC_MSG_WARN(wide characters without multibyte characters makes little sense)
98 fi
99 fi
101 dnl Check for GLib
102 PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.14],,
103 [AC_MSG_ERROR([glib 2.14 is required])])
105 dnl Check for libmpdclient 2.9
106 PKG_CHECK_MODULES([LIBMPDCLIENT], [libmpdclient >= 2.9],,
107 [AC_MSG_ERROR([libmpdclient2 is required])])
109 dnl i18n
111 AC_ARG_ENABLE([locale],
112 AS_HELP_STRING([--disable-locale],
113 [Disable locale support @<:@default=auto@:>@]),,
114 [enable_locale=$auto_mini])
116 if test x$enable_locale = xyes; then
117 AC_CHECK_HEADER([locale.h],,
118 [AC_MSG_ERROR(locale.h is unavailable)])
119 fi
121 if test x$enable_locale = xauto; then
122 AC_CHECK_HEADER([locale.h],
123 [enable_locale=yes],
124 [enable_locale=no])
125 fi
127 if test x$enable_locale = xyes; then
128 AC_DEFINE([ENABLE_LOCALE], [1], [Locale support is enabled])
129 fi
131 if test x$enable_mini != xyes; then
132 AM_NLS
133 else
134 USE_NLS=no
135 fi
137 if test x$USE_NLS = xyes; then
138 AM_GLIB_GNU_GETTEXT
139 GETTEXT_PACKAGE=$PACKAGE
140 AC_SUBST(GETTEXT_PACKAGE)
141 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],
142 ["${GETTEXT_PACKAGE}"],
143 [gettext domain])
144 USE_NLS=$gt_cv_have_gettext
145 if test x$USE_NLS != xyes; then
146 AC_MSG_WARN([NLS support disabled!])
147 fi
148 else
149 AM_PO_SUBDIRS
150 fi
152 dnl enable colors
153 AC_ARG_ENABLE([colors],
154 AS_HELP_STRING([--enable-colors],
155 [Enable color support]),
156 [enable_colors=$enableval],
157 [enable_colors=auto])
158 AC_MSG_CHECKING([whether to include color support])
159 AS_IF([ test "x$enable_colors" = xyes || test "x$enable_colors" = xauto ],
160 [AS_IF([ test "x$disable_mini" = xyes],
161 [AS_IF([ test "x$ax_cv_curses_color" = xyes ],
162 [AC_MSG_RESULT([yes])
163 AC_DEFINE([ENABLE_COLORS], [1], [Enable color support])],
164 [AS_IF([ test "x$enable_colors" = xyes ],
165 AC_MSG_ERROR(["No color support found in curses library"])
166 AC_MSG_RESULT([no]),
167 AC_MSG_RESULT([no])
168 )
169 ])
170 ],
171 [AC_MSG_RESULT([no])
172 AC_MSG_WARN(["Colors disabled due to mini mode being enabled."])]
173 )],
174 [AC_MSG_RESULT([no])])
176 dnl test for LIRC support
178 AC_ARG_ENABLE([lirc],
179 AS_HELP_STRING([--enable-lirc],
180 [Enable LIRC support]),,
181 [enable_lirc=no])
182 if test x$enable_lirc = xyes; then
183 PKG_CHECK_MODULES([LIBLIRCCLIENT], [lirc],,
184 [PKG_CHECK_MODULES([LIBLIRCCLIENT], [liblircclient0],,
185 [AC_MSG_ERROR([lirc not found])]
186 )]
187 )
189 AC_DEFINE([ENABLE_LIRC], [1], [Enable LIRC support])
190 fi
192 AM_CONDITIONAL(ENABLE_LIRC, test x$enable_lirc = xyes)
195 dnl Optional screen - help screen
196 AC_MSG_CHECKING([whether to include the help screen])
197 AC_ARG_ENABLE([help-screen],
198 AS_HELP_STRING([--enable-help-screen],
199 [Enable the help screen @<:@default=yes@:>@]),,
200 [enable_help_screen=$disable_mini])
201 AC_MSG_RESULT([$enable_help_screen])
202 if test "x$enable_help_screen" = "xyes" ; then
203 AC_DEFINE(ENABLE_HELP_SCREEN, 1, [Enable the help screen])
204 fi
206 AM_CONDITIONAL(ENABLE_HELP_SCREEN, test x$enable_help_screen = xyes)
208 dnl Optional - curses getmouse support
210 dnl AC_CHECK_LIB depends on being able to prepend a '-l', remove the '-l' from CURSES_LIB first
211 AC_CHECK_LIB([$(expr substr $CURSES_LIB 3 99)],
212 [getmouse],
213 [ax_cv_curses_mouse=yes],
214 [ax_cv_curses_mouse=no])
216 AC_ARG_ENABLE([mouse],
217 AS_HELP_STRING([--enable-mouse],
218 [Enable curses getmouse support @<:@default=yes@:>@]),
219 [enable_mouse=$enableval],
220 [enable_mouse=auto])
222 AC_MSG_CHECKING([whether to include mouse support])
224 AS_IF([ test "x$enable_mouse" = xyes || test "x$enable_mouse" = xauto ],
225 [AS_IF([ test "x$disable_mini" = xyes],
226 [AS_IF([ test "x$ax_cv_curses_mouse" = xyes ],
227 [AC_MSG_RESULT([yes])
228 AC_DEFINE([HAVE_GETMOUSE], [1], [Enable mouse support])],
229 [AC_MSG_RESULT([no])
230 AS_IF([ test "x$enable_mouse" = xyes ],
231 [AC_MSG_ERROR(["No mouse support found in curses library"])
232 ])
233 ])
234 ],
235 [AC_MSG_RESULT([no])
236 AC_MSG_WARN("Mouse disabled due to mini mode being enabled.")]
237 )],
238 [AC_MSG_RESULT([no])])
240 dnl Optional screen - artist
241 AC_MSG_CHECKING([whether to include the artist screen])
242 AC_ARG_ENABLE([artist-screen],
243 AS_HELP_STRING([--enable-artist-screen],
244 [Enable artist screen @<:@default=yes@:>@]),,
245 [enable_artist_screen=$disable_mini])
246 AC_MSG_RESULT([$enable_artist_screen])
247 if test "x$enable_artist_screen" = "xyes" ; then
248 AC_DEFINE(ENABLE_ARTIST_SCREEN, 1, [Enable artist screen])
249 fi
251 AM_CONDITIONAL(ENABLE_ARTIST_SCREEN, test x$enable_artist_screen = xyes)
253 dnl Optional screen - search
254 AC_MSG_CHECKING([whether to include the search screen])
255 AC_ARG_ENABLE([search-screen],
256 AS_HELP_STRING([--enable-search-screen],
257 [Enable search screen (EXPERIMENTAL) @<:@default=yes@:>@]),,
258 [enable_search_screen=$disable_mini])
259 AC_MSG_RESULT([$enable_search_screen])
260 if test "x$enable_search_screen" = "xyes" ; then
261 AC_DEFINE(ENABLE_SEARCH_SCREEN, 1, [Enable search screen])
262 fi
264 AM_CONDITIONAL(ENABLE_SEARCH_SCREEN, test x$enable_search_screen = xyes)
266 dnl Optional screen - song viewer
267 AC_MSG_CHECKING([whether to include the song viewer screen])
268 AC_ARG_ENABLE([song-screen],
269 AS_HELP_STRING([--enable-song-screen],
270 [Enable song viewer screen @<:@default=yes@:>@]),,
271 [enable_song_screen=$disable_mini])
272 AC_MSG_RESULT([$enable_song_screen])
273 if test "x$enable_song_screen" = "xyes" ; then
274 AC_DEFINE(ENABLE_SONG_SCREEN, 1, [Enable song viewer screen])
275 fi
277 AM_CONDITIONAL(ENABLE_SONG_SCREEN, test x$enable_song_screen = xyes)
279 dnl Optional screen - key editor
280 AC_MSG_CHECKING([whether to include the key editor screen])
281 AC_ARG_ENABLE([key-screen],
282 AS_HELP_STRING([--enable-key-screen],
283 [Enable key editor screen @<:@default=yes@:>@]),,
284 [enable_key_screen=$disable_mini])
285 AC_MSG_RESULT([$enable_key_screen])
286 if test "x$enable_key_screen" = "xyes" ; then
287 AC_DEFINE(ENABLE_KEYDEF_SCREEN, 1, [Enable key editor screen])
288 fi
290 AM_CONDITIONAL(ENABLE_KEYDEF_SCREEN, test x$enable_key_screen = xyes)
292 dnl Optional screen - lyrics
293 AC_MSG_CHECKING([whether to include the lyrics screen])
294 AC_ARG_ENABLE([lyrics-screen],
295 AS_HELP_STRING([--enable-lyrics-screen],
296 [Enable lyrics screen @<:@default=no@:>@]),
297 [enable_lyrics_screen=$enableval],
298 [enable_lyrics_screen=no])
300 case "$host_os" in
301 mingw32* | windows*)
302 AS_IF([ test "x$enable_lyrics_screen" = xyes ],
303 [AC_MSG_ERROR([Lyrics screen is not yet compatible with windows.])
304 ])
305 esac
307 if test "x$enable_lyrics_screen" = "xyes" ; then
308 AC_DEFINE(ENABLE_LYRICS_SCREEN, 1, [Enable lyrics screen])
309 fi
311 AM_CONDITIONAL(ENABLE_LYRICS_SCREEN, test x$enable_lyrics_screen = xyes)
313 AC_MSG_RESULT([$enable_lyrics_screen])
315 AC_ARG_WITH([lyrics-plugin-dir],
316 AS_HELP_STRING([[--with-lyrics-plugin-dir[=DIRECTORY]]],
317 [Directory where lyrics plugins are stored @<:@default=PREFIX/lib/ncmpc/lyrics@:>@]),
318 [lyrics_plugin_dir=$withval],
319 [lyrics_plugin_dir=""])
320 if test "x${lyrics_plugin_dir}" = "x"; then
321 if test "x${prefix}" = "xNONE"; then
322 lyrics_plugin_dir="${ac_default_prefix}/lib/ncmpc/lyrics"
323 else
324 lyrics_plugin_dir="${prefix}/lib/ncmpc/lyrics"
325 fi
326 fi
327 AC_DEFINE_UNQUOTED([LYRICS_PLUGIN_DIR], ["$lyrics_plugin_dir"],
328 [Directory to search for lyrics plugins])
329 AC_SUBST(lyrics_plugin_dir)
331 AM_CONDITIONAL(ENABLE_PLUGIN_LIBRARY, test x$enable_lyrics_screen = xyes)
333 dnl Optional screen - outputs
334 AC_MSG_CHECKING([whether to include the outputs screen])
335 AC_ARG_ENABLE([outputs-screen],
336 AS_HELP_STRING([--enable-outputs-screen],
337 [Enable outputs screen @<:@default=yes@:>@]),,
338 [enable_outputs_screen=$disable_mini])
340 if test "x$enable_outputs_screen" = "xyes" ; then
341 AC_DEFINE(ENABLE_OUTPUTS_SCREEN, 1, [Enable outputs screen])
342 fi
344 AM_CONDITIONAL(ENABLE_OUTPUTS_SCREEN, test x$enable_outputs_screen = xyes)
345 AC_MSG_RESULT([$enable_outputs_screen])
348 dnl Optional screen - client-to-client chat
349 AC_MSG_CHECKING([whether to include the chat screen])
350 AC_ARG_ENABLE([chat-screen],
351 AC_HELP_STRING([--enable-chat-screen],
352 [Enable chat screen @<:@default=no@:>@]),,
353 [enable_chat_screen=no])
354 if test "x$enable_chat_screen" = "xauto"; then
355 enable_chat_screen=yes
356 fi
357 AC_MSG_RESULT([$enable_chat_screen])
358 if test "x$enable_chat_screen" = "xyes" ; then
359 AC_DEFINE(ENABLE_CHAT_SCREEN, 1, [Enable chat screen])
360 fi
361 AM_CONDITIONAL(ENABLE_CHAT_SCREEN, test x$enable_chat_screen = xyes)
363 AM_CONDITIONAL(ENABLE_SCREEN_TEXT,
364 test x$enable_lyrics_screen = xyes -o x$enable_chat_screen = xyes)
366 dnl
367 dnl Windows OS Resource File
368 dnl
369 AC_SUBST(VERSION_MAJOR)
370 AC_SUBST(VERSION_MINOR)
371 AC_SUBST(VERSION_REVISION)
372 AC_SUBST(VERSION_EXTRA)
374 dnl
375 dnl build options
376 dnl
378 AC_ARG_ENABLE(werror,
379 AS_HELP_STRING([--enable-werror],
380 [Treat warnings as errors @<:@default=no@:>@]),,
381 enable_werror=no)
383 if test "x$enable_werror" = xyes; then
384 AX_APPEND_COMPILE_FLAGS([-Werror])
385 fi
387 AC_ARG_ENABLE(debug,
388 AS_HELP_STRING([--enable-debug],
389 [Enable debugging @<:@default=no@:>@]),,
390 enable_debug=no)
392 if test "x$enable_debug" = xno; then
393 AM_CFLAGS="$AM_CFLAGS -DNDEBUG"
395 AX_APPEND_COMPILE_FLAGS([-ffunction-sections])
396 AX_APPEND_COMPILE_FLAGS([-fdata-sections])
398 AX_APPEND_LINK_FLAGS([-Wl,--gc-sections])
399 fi
401 AC_ARG_ENABLE(test,
402 AS_HELP_STRING([--enable-test],
403 [build the test programs @<:@default=no@:>@]),,
404 enable_test=$enable_debug)
406 AM_CONDITIONAL(ENABLE_TEST, test "x$enable_test" = xyes)
408 dnl
409 dnl autogenerated documentation
410 dnl
412 AC_ARG_ENABLE(documentation,
413 AS_HELP_STRING([--enable-documentation],
414 [build doxygen documentation @<:@default=no@:>@]),,
415 enable_documentation=no)
417 if test x$enable_documentation = xyes; then
418 AC_PATH_PROG(DOXYGEN, doxygen)
419 if test x$DOXYGEN = x; then
420 AC_MSG_ERROR([doxygen not found])
421 fi
422 AC_SUBST(DOXYGEN)
423 fi
425 AM_CONDITIONAL(ENABLE_DOCUMENTATION, test x$enable_documentation = xyes)
427 dnl
428 dnl CFLAGS
429 dnl
431 AC_SUBST(AM_CFLAGS)
433 AX_APPEND_COMPILE_FLAGS([-fvisibility=hidden])
434 AX_APPEND_COMPILE_FLAGS([-ffast-math])
435 AX_APPEND_COMPILE_FLAGS([-ftree-vectorize])
437 AX_APPEND_COMPILE_FLAGS([-Wall])
438 AX_APPEND_COMPILE_FLAGS([-Wextra])
439 AX_APPEND_COMPILE_FLAGS([-Wno-deprecated-declarations])
440 AX_APPEND_COMPILE_FLAGS([-Wmissing-prototypes])
441 AX_APPEND_COMPILE_FLAGS([-Wshadow])
442 AX_APPEND_COMPILE_FLAGS([-Wpointer-arith])
443 AX_APPEND_COMPILE_FLAGS([-Wstrict-prototypes])
444 AX_APPEND_COMPILE_FLAGS([-Wcast-qual])
445 AX_APPEND_COMPILE_FLAGS([-Wwrite-strings])
448 dnl
449 dnl Generate output files
450 dnl
452 AC_CONFIG_FILES([Makefile po/Makefile.in po/Makefile])
453 AC_OUTPUT(doc/doxygen.conf)