aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
blob: 16a13571d1c0dba76dc1ce49d633516e56217db8 (plain) (blame)
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
dnl
dnl  $Id$
dnl

AC_INIT
AC_CONFIG_SRCDIR([src/main.c])
AM_INIT_AUTOMAKE([ncmpc], [0.11.2-svn])
AM_CONFIG_HEADER([config.h])

dnl Check for programs
AC_PROG_CC
AC_PROG_INSTALL
dnl AC_PROG_LIBTOOL
AC_PROG_LIBTOOL

dnl =======================================================
dnl initialize variables
dnl =======================================================

dnl i18n
ALL_LINGUAS="es da de fr gl no ru sv"

set -- $CFLAGS

dnl
dnl Check for types
dnl

AC_MSG_RESULT([$ac_have_socklen_t]) 

dnl
dnl Check for headers
dnl

AC_CHECK_HEADER([libgen.h],
                AC_DEFINE([HAVE_LIBGEN_H], [1], [glibc - libgen.h]),
		,)

AC_CHECK_HEADER([locale.h],
 	        AC_DEFINE([HAVE_LOCALE_H], [1], [locale.h]),
		,)


dnl
dnl Check for functions
dnl
AC_CHECK_FUNCS([basename strcasestr])


dnl
dnl Check for libraries
dnl

dnl Try to find the socket functions
AC_CHECK_FUNC([socket],
	      [], 
              [AC_CHECK_LIB([socket],[socket],[LIBS="$LIBS -lsocket"],
	                    [AC_MSG_ERROR(No UNIX socket API found)])
              ])

dnl Try to find the gethostbyname functions
AC_CHECK_FUNC([gethostbyname],
	      [], 
              [AC_CHECK_LIB([nsl],[gethostbyname],[LIBS="$LIBS -lnsl"],
	                    [AC_MSG_ERROR(No UNIX gethostbyname API found)])
              ])


dnl ncurses
ncurses=auto
AC_ARG_WITH([ncurses],
	    AC_HELP_STRING([--with-ncurses], [compile/link with ncurses library] ),
	    [ncurses=ncurses])
AC_ARG_WITH(ncursesw,
	    AC_HELP_STRING([--with-ncursesw], [compile/link with wide-char ncurses library @<:@default@:>@]),
	    [ncurses=ncursesw])

if test "x$ncurses" = "xauto"; then
	AC_CHECK_LIB([ncursesw], 
		     [initscr],
		     [ncurses=ncursesw],
		     [ncurses=ncurses])
fi
		     
AC_CHECK_HEADER([ncursesw/ncurses.h],
 	        [have_ncursesw_h=yes],
		,)




AC_CHECK_LIB([$ncurses], 
	     [initscr],
	     [LIBS="$LIBS -l$ncurses"], 
	     [AC_MSG_ERROR($ncurses library is required)])


if test "x$ncurses" != "xncursesw" ; then
	if test "x$have_ncursesw_h" = "xyes" ; then
		 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, [wide-char wget_ch()])
   		 AC_DEFINE(USE_NCURSESW, 1, [use wide-char ncurses library])
	fi
fi



dnl Check for glib-2.4
PKG_CHECK_MODULES([GLIB], 
		  [glib-2.0 >= 2.4],
		  [glib24=yes],
		  [AC_MSG_WARN([glib-2.4 is required for NLS support!])])
if test "x$glib24" != "xyes"; then
   PKG_CHECK_MODULES([GLIB], 
		     [glib-2.0 >= 2.2],
		     [nls=no],
		     [AC_MSG_ERROR([glib-2.2 is required])])
fi


dnl i18n
AM_NLS
if test "x$glib24" = "xyes"; then
  nls=$USE_NLS
else
  USE_NLS=no
  AC_SUBST(USE_NLS)
fi

if test "x$nls" = "xyes"; then
   AM_GLIB_GNU_GETTEXT
   GETTEXT_PACKAGE=$PACKAGE
   AC_SUBST(GETTEXT_PACKAGE)
   AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], 
                      ["${GETTEXT_PACKAGE}"], 
                      [gettext domain])
  nls=$gt_cv_have_gettext
  if test "x$nls" != "xyes"; then
     AC_MSG_WARN([NLS support disabled!])
  fi
else
  AM_PO_SUBDIRS
fi

dnl check for gthreads
PKG_CHECK_MODULES([GTHREAD], 
		  [gthread-2.0],
		  [gthread=yes],
		  [AC_MSG_WARN([gthread-2.0 >= 0.20 is required the lyrics screen])])
AC_SUBST(GTHREAD_LIBS)
AC_SUBST(GTHREAD_CFLAGS)
		  
dnl check for gmodule
PKG_CHECK_MODULES([GMODULE], 
		  [gmodule-2.0],
		  [gmodule=yes],
		  [AC_MSG_WARN([gmodule-2.0 >= 0.20 is required the plugin system])])
AC_SUBST(GMODULE_LIBS)
AC_SUBST(GMODULE_CFLAGS)

dnl check for libcurl
PKG_CHECK_MODULES([libcurl], 
		  [libcurl],
		  [libcurl=yes],
		  #[libcurl=yes,LIBS="$LIBS -lcurl"], #doesn't work for me on arch
		  [AC_MSG_WARN([libcurl is required for the lyrics screen])])

if test "x$libcurl" = "xyes"; then
 LIBS="$LIBS -lcurl" 
fi
		  
dnl check for expat
expat=expat
AC_CHECK_LIB([$expat], 
	     [XML_ParserCreate],
	     [have_expat=yes], 
	     [AC_MSG_WARN($expat library is required for lyrics screen)])
if test "x$have_expat" = "xyes"; then
LIBS="$LIBS -l$expat"
fi
		  
#if test "x$gthread-2.0" != "xyes"; then
#  PKG_CHECK_MODULES([GTHREAD], 
#		     [glib-2.0 >= 2.2],
#		     [nls=no],
#		     [AC_MSG_ERROR([glib-2.2 is required])])
#fi

dnl disbale raw mode
AC_MSG_CHECKING([Place the terminal into raw mode])
AC_ARG_ENABLE([raw-mode],
	AC_HELP_STRING([--disable-raw-mode],
		       [Disable raw terminal mode]),
		       [use_raw=$enableval], 
                       [use_raw=yes])
AC_MSG_RESULT([$use_raw])
if test "x$use_raw" = "xyes" ; then
  AC_DEFINE([ENABLE_RAW_MODE], [1], [Place the terminal into raw mode])
fi

dnl Debugging 
AC_MSG_CHECKING([whether to build with debug support])
AC_ARG_ENABLE([debug], 
              AC_HELP_STRING([--enable-debug],
                             [Enable debugging @<:@default=no@:>@]),
	      [enable_debug="$enableval"], 
	      [enable_debug=no])
AC_MSG_RESULT([$enable_debug])
if test "x$enable_debug" = "xyes" ; then
   CFLAGS="$CFLAGS -g -DDEBUG"
fi

dnl CFLAGS

AC_SUBST(AM_CFLAGS)

CHECK_CFLAG([-Wall])
CHECK_CFLAG([-Wextra])
CHECK_CFLAG([-Wno-deprecated-declarations])
CHECK_CFLAG([-Wmissing-prototypes])
CHECK_CFLAG([-Wdeclaration-after-statement])
CHECK_CFLAG([-Wshadow])
CHECK_CFLAG([-Wpointer-arith])
CHECK_CFLAG([-Wstrict-prototypes])
CHECK_CFLAG([-Wcast-qual])
CHECK_CFLAG([-Wwrite-strings])

dnl Optional screen - help screen
#AC_MSG_CHECKING([whether to include the help screen])
#AC_ARG_ENABLE([help-screen], 
#              AC_HELP_STRING([--enable-help-screen],
#	                     [Enable the help screen @<:@default=yes@:>@]),
#	      [help_screen="$enableval"],
#	      [help_screen=yes])
#AC_MSG_RESULT([$help_screen])
#if test "x$help_screen" = "xyes" ; then
#   AC_DEFINE(ENABLE_HELP_SCREEN, 1, [Enable the help screen])
#fi

dnl Optional screen - browse screen
#AC_MSG_CHECKING([whether to include the browse screen])r
#AC_ARG_ENABLE([browse-screen], 
#              AC_HELP_STRING([--enable-browse-screen],
#	                     [Enable the browse screen @<:@default=yes@:>@]),
#	      [browse_screen="$enableval"],
#	      [browse_screen=yes])
#AC_MSG_RESULT([$browse_screen])
#if test "x$browse_screen" = "xyes" ; then
#   AC_DEFINE(ENABLE_BROWSE_SCREEN, 1, [Enable the browse screen])
#fi

dnl Optional - curses getmouse support
AC_MSG_CHECKING([whether to include mouse support])
AC_ARG_ENABLE([mouse], 
              AC_HELP_STRING([--enable-mouse],
	                     [Enable curses getmouse support @<:@default=yes@:>@]),
	      [getmouse="$enableval"],
	      [getmouse=yes])
AC_MSG_RESULT([$getmouse])
if test "x$getmouse" = "xyes" ; then
   AC_CHECK_LIB([$ncurses], 
	        [getmouse],
		[AC_DEFINE([HAVE_GETMOUSE], [1], [$ncurses - getmouse()])],
		[])
fi

dnl Plugin loading for lyrics sources
AC_MSG_CHECKING([whether to include the plugin infrastructure])
AC_ARG_ENABLE([plugin-support],
	     AC_HELP_STRING([--enable-plugin-support],
			    [Enable loading lyrics plugins @<:@default=yes@:>@]),
	     [plugin_support="$enableval"],
	     [plugin_support=yes])
if test "x$plugin_support" != "xyes" ; then
    AC_DEFINE(DISABLE_PLUGIN_SYSTEM, 1, [Disable plugin system])
fi

if test "x$gmodule" != "xyes" ; then
    AC_DEFINE(DISABLE_PLUGIN_SYSTEM, 1, [Disable plugin system])
    plugin_support=no
fi
AC_MSG_RESULT([$plugin_support])

dnl Optional screen - artist
AC_MSG_CHECKING([whether to include the artist screen])
AC_ARG_ENABLE([artist-screen], 
              AC_HELP_STRING([--enable-artist-screen],
	                     [Enable artist screen (EXPERIMENTAL) @<:@default=no@:>@]),
	      [artist_screen="$enableval"],
	      [artist_screen=no])
AC_MSG_RESULT([$artist_screen])
if test "x$artist_screen" != "xyes" ; then
   AC_DEFINE(DISABLE_ARTIST_SCREEN, 1, [Disable artist screen])
fi

dnl Optional screen - search
AC_MSG_CHECKING([whether to include the search screen])
AC_ARG_ENABLE([search-screen], 
              AC_HELP_STRING([--enable-search-screen],
	                     [Enable search screen (EXPERIMENTAL) @<:@default=yes@:>@]),
	      [search_screen="$enableval"],
	      [search_screen=yes])
AC_MSG_RESULT([$search_screen])
if test "x$search_screen" != "xyes" ; then
   AC_DEFINE(DISABLE_SEARCH_SCREEN, 1, [Disable search screen])
fi
  
dnl Optional screen - key editor
AC_MSG_CHECKING([whether to include the key editor screen])
AC_ARG_ENABLE([key-screen], 
              AC_HELP_STRING([--enable-key-screen],
	                     [Enable key editor screen @<:@default=yes@:>@]),
	      [keydef_screen="$enableval"],
	      [keydef_screen=yes])
AC_MSG_RESULT([$keydef_screen])
if test "x$keydef_screen" != "xyes" ; then
   AC_DEFINE(DISABLE_KEYDEF_SCREEN, 1, [Disable key editor screen])
fi

dnl Optional screen - clock
AC_MSG_CHECKING([whether to include the clock screen])
AC_ARG_ENABLE([clock-screen], 
              AC_HELP_STRING([--enable-clock-screen],
	                     [Enable clock screen @<:@default=yes@:>@]),
	      [clock_screen="$enableval"],
	      [clock_screen=yes])
AC_MSG_RESULT([$clock_screen])
if test "x$clock_screen" != "xyes" ; then
   AC_DEFINE(DISABLE_CLOCK_SCREEN, 1, [Disable clock screen])
fi

dnl Optional screen - lyrics
AC_MSG_CHECKING([whether to include the lyrics screen]) 
AC_ARG_ENABLE([lyrics-screen], 
              AC_HELP_STRING([--enable-lyrics-screen],
	                     [Enable lyrics screen @<:@default=no@:>@]),
	      [lyrics_screen="$enableval"],
	      [lyrics_screen=yes])	
if test "x$lyrics_screen" != "xyes" ; then
   AC_DEFINE(DISABLE_LYRICS_SCREEN, 1, [Disable lyrics screen])
   lyrics_screen=no
fi
#lyrics_screen=yes
#if test "x$libcurl" != "xyes" ; then
# AC_MSG_RESULT([$lyrics_screen])  
 # AC_DEFINE(DISABLE_LYRICS_SCREEN, 1, [Disable lyrics screen])
  # lyrics_screen=no
#fi
if test "x$gthread" != "xyes" ; then
   AC_DEFINE(DISABLE_LYRICS_SCREEN, 1, [Disable lyrics screen])
   lyrics_screen=no
fi
#if test "x$have_expat" != "xyes" ; then
#   AC_DEFINE(DISABLE_LYRICS_SCREEN, 1, [Disable lyrics screen])
#   lyrics_screen=no
#fi

AC_MSG_RESULT([$lyrics_screen])

dnl hd
AC_MSG_CHECKING([whether to build with .lyrics support])
AC_ARG_WITH([lyrics-hd],
	    AC_HELP_STRING([[--with-lyrics-leoslyrics[=plugin/fixed/no]]],
		       [enable leoslyrics lyrics source @<:@default=plugin@:>@]),
	[hd=$withval],
	[hd=plugin])

if test "x$plugin_support" != "xyes" ; then
    if test "x$hd" == "xplugin" ; then
	hd=fixed
	AC_MSG_NOTICE([Enable lyrics plugin support to compile as a plugin!])
   fi
fi	
AC_MSG_RESULT([$hd])
if test "x$hd" == "xfixed"; then
    AC_DEFINE_UNQUOTED([ENABLE_LYRSRC_HD], 1,
		   [~/.lyrics inclusion])
fi
if test "x$hd" == "xplugin" ; then
    src_lyr_plugins="${src_lyr_plugins}hd "
fi
AM_CONDITIONAL(HD_FIXED, test x$hd = xfixed)

dnl leoslyrics
AC_MSG_CHECKING([whether to build with leoslyrics])
AC_ARG_WITH([lyrics-leoslyrics],
	    AC_HELP_STRING([[--with-lyrics-leoslyrics[=plugin/fixed/no]]],
		       [enable leoslyrics lyrics source @<:@default=plugin@:>@]),
	[leoslyrics=$withval],
	[leoslyrics=plugin])

if test "x$plugin_support" != "xyes" ; then
    if test "x$leoslyrics" == "xplugin" ; then
	leoslyrics=fixed
	AC_MSG_NOTICE([Enable lyrics plugin support to compile as a plugin!])
   fi
fi	

if test "x$have_expat" != "xyes" ; then
    leoslyrics=no
fi
if test "x$libcurl" != "xyes" ; then
    leoslyrics=no
fi

if test "x$leoslyrics" == "xplugin" ; then
    src_lyr_plugins="${src_lyr_plugins}leoslyrics "
fi
AC_MSG_RESULT([$leoslyrics])

if test "x$leoslyrics" == "xfixed" ; then 
    AC_DEFINE_UNQUOTED([ENABLE_LYRSRC_LEOSLYRICS], 1,
		   [Leoslyrics inclusion])
fi

#if test "x$leoslyrics" == "xfixed" ; then
 #   src_lyr_fixed="${src_lyr_fixed}../plugins/leoslyrics/lyrics_leoslyrics.c "
 #   leoslyrics_fixed=yes
#fi
AM_CONDITIONAL(LEOSLYRICS_FIXED, test x$leoslyrics = xfixed)

dnl plugins directory
AC_ARG_WITH([plugin-dir],
	    AC_HELP_STRING([[--with-plugin-dir[=DIRECTORY]]],
		       [Directory where plugins are stored @<:@default=/usr/share/ncmpc/modules@:>@]),
	[plugindir=$withval],
	[plugindir="/usr/share/ncmpc/modules"])
AC_DEFINE_UNQUOTED([PLUGIN_DIR_SYSTEM], ["$plugindir"],
		   [Directory to search for plugins])

AC_SUBST(plugindir)
dnl Default host
AC_MSG_CHECKING([for default MPD host])
AC_ARG_WITH([default-host],
	    AC_HELP_STRING([--with-default-host=ARG],
	                   [Default MPD host @<:@localhost@:>@]),
            [DEFAULT_HOST="$withval"],
            [DEFAULT_HOST="localhost"])
AC_MSG_RESULT([$DEFAULT_HOST])
AC_DEFINE_UNQUOTED([DEFAULT_HOST], ["$DEFAULT_HOST"], [Default MPD host])

dnl Default port
AC_MSG_CHECKING([for default MPD port])
AC_ARG_WITH([default-port],
            AC_HELP_STRING([--with-default-port=ARG],
                           [Default port @<:@6600@:>@]),
            [DEFAULT_PORT="$withval"],
            [DEFAULT_PORT="6600"])
AC_MSG_RESULT([$DEFAULT_PORT])
AC_DEFINE_UNQUOTED([DEFAULT_PORT],     [$DEFAULT_PORT],   [Default MPD port])
AC_DEFINE_UNQUOTED([DEFAULT_PORT_STR], ["$DEFAULT_PORT"], [Default MPD port])

dnl Default timedisplay type
AC_MSG_CHECKING([for default timedisplay type])
AC_ARG_WITH([default-timedisplay_type],
	    AC_HELP_STRING([--with-default-timedisplay_type=ARG],
	                   [default_timedisplay]),
            [DEFAULT_TIMEDISPLAY_TYPE="$withval"],
            [DEFAULT_TIMEDISPLAY_TYPE="elapsed"])
AC_MSG_RESULT([$DEFAULT_TIMEDISPLAY_TYPE])
AC_DEFINE_UNQUOTED([DEFAULT_TIMEDISPLAY_TYPE], ["$DEFAULT_TIMEDISPLAY_TYPE"], [Default way to display time, either 'elapsed' or 'remaining'])
AC_SUBST(src_lyr_plugins)
AC_SUBST(src_lyr_fixed)
AC_CONFIG_FILES([Makefile src/Makefile plugins/Makefile doc/Makefile po/Makefile 
		plugins/hd/Makefile 
		plugins/leoslyrics/Makefile])
AC_OUTPUT
AC_MSG_WARN([TO BUILD AN INSTALL THE PLUGINS cd TO THE plugins DIRECTORY AND EXECUTE make && make install THERE])