Code

playlist: added function playlist_move()
[ncmpc.git] / configure.ac
index 18aa36191d33851a7b8b43adbdf632f9a96e280c..92b46c3e972cf58c23193cf62466080e43344383 100644 (file)
@@ -1,10 +1,8 @@
-dnl
-dnl  $Id$
-dnl
-
-AC_INIT(ncurses MPD client, 0.12~git, max@duempel.org, ncmpc)
+AC_PREREQ(2.60)
+AC_INIT(ncmpc, 0.16~git, max@duempel.org)
 AC_CONFIG_SRCDIR([src/main.c])
-AM_INIT_AUTOMAKE([gnu 1.9 dist-bzip2])
+AC_CONFIG_AUX_DIR(build)
+AM_INIT_AUTOMAKE([foreign 1.9 dist-bzip2])
 AM_CONFIG_HEADER([config.h])
 AC_CONFIG_MACRO_DIR([m4])
 
@@ -17,24 +15,10 @@ dnl initialize variables
 dnl =======================================================
 
 dnl i18n
-ALL_LINGUAS="es da de fr gl no ru sv"
+ALL_LINGUAS=`grep -v '^\#' po/LINGUAS`
 
 set -- $CFLAGS
 
-dnl
-dnl Check for headers
-dnl
-
-AC_CHECK_HEADER([locale.h],
-               AC_DEFINE([HAVE_LOCALE_H], [1], [locale.h]),
-               ,)
-
-
-dnl
-dnl Check for functions
-dnl
-AC_CHECK_FUNCS([strcasestr])
-
 
 dnl
 dnl ncmpc-mini
@@ -42,19 +26,21 @@ dnl
 
 AC_ARG_ENABLE(mini,
     AS_HELP_STRING([--enable-mini],
-                   [Build ncmpc-mini (default: disabled)]),
+               [Build ncmpc-mini, i.e. without all optional features (default: disabled)]),
     [enable_mini=$enableval],
     [enable_mini=no])
 
 AM_CONDITIONAL(NCMPC_MINI, test x$enable_mini = xyes)
 if test "x$enable_mini" = xyes; then
-    AC_DEFINE([NCMPC_MINI], [1], [Build ncmpc-mini, which disables lots of features]),
+    AC_DEFINE([NCMPC_MINI], [1], [Build ncmpc-mini, which disables lots of features])
     auto=no
     disable_mini=no
+    auto_mini=no
     ncurses=ncurses
 else
     auto=auto
     disable_mini=yes
+    auto_mini=auto
     ncurses=auto
 fi
 
@@ -140,51 +126,69 @@ if test "x$enable_wide" = "xyes" ; then
     AC_DEFINE([ENABLE_WIDE], [1], [Enable wide character support])
 fi
 
+dnl multi-byte character support
 
-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])])
+AC_ARG_ENABLE([multibyte],
+       AC_HELP_STRING([--disable-multibyte],
+               [Disable multibyte character support (default: enabled)]),
+               [enable_multibyte=$enableval],
+               [enable_multibyte=$disable_mini])
+
+if test x$enable_multibyte = xyes; then
+       AC_DEFINE([ENABLE_MULTIBYTE], [1], [Enable multibyte character support])
+else
+       if test x$enable_wide = xyes; then
+               AC_MSG_WARN(wide characters without multibyte characters makes little sense)
+       fi
 fi
 
+dnl Check for glib-2.4
+PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.4],,
+       [AC_MSG_ERROR([glib 2.4 is required])])
+
+dnl Check for libmpdclient 2.0
+PKG_CHECK_MODULES([LIBMPDCLIENT], [libmpdclient >= 2.0],,
+       [AC_MSG_ERROR([libmpdclient2 is required])])
+
 
 dnl i18n
 
-AC_MSG_CHECKING([national language support])
-AC_ARG_ENABLE([nls],
-       AS_HELP_STRING([--enable-nls], [Enable national language support]),
-       [enable_nls=$enableval],
-       [enable_nls=$disable_mini])
-AC_MSG_RESULT([$enable_nls])
+AC_ARG_ENABLE([locale],
+       AC_HELP_STRING([--disable-locale],
+               [Disable locale support (default: auto)]),
+               [enable_locale=$enableval],
+               [enable_locale=$auto_mini])
+
+if test x$enable_locale = xyes; then
+       AC_CHECK_HEADER([locale.h],,
+               [AC_MSG_ERROR(locale.h is unavailable)])
+fi
+
+if test x$enable_locale = xauto; then
+       AC_CHECK_HEADER([locale.h],
+               [enable_locale=yes],
+               [enable_locale=no])
+fi
 
-if test "x$enable_nls" = xno; then
-       glib24=no
-       nls=no
+if test x$enable_locale = xyes; then
+       AC_DEFINE([ENABLE_LOCALE], [1], [Locale support is enabled])
 fi
 
-AM_NLS
-if test "x$glib24" = "xyes"; then
-  nls=$USE_NLS
+if test x$enable_mini != xyes; then
+       AM_NLS
 else
-  USE_NLS=no
-  AC_SUBST(USE_NLS)
+       USE_NLS=no
 fi
 
-if test "x$nls" = "xyes"; then
+if test x$USE_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
+       USE_NLS=$gt_cv_have_gettext
+       if test x$USE_NLS != xyes; then
      AC_MSG_WARN([NLS support disabled!])
   fi
 else
@@ -197,7 +201,7 @@ AC_ARG_ENABLE([colors],
        AC_HELP_STRING([--enable-colors],
                       [Enable color support]),
                       [use_colors=$enableval], 
-                       [use_colors=no])
+       [use_colors=$disable_mini])
 AC_MSG_RESULT([$use_colors])
 if test "x$use_colors" = "xyes" ; then
     AC_DEFINE([ENABLE_COLORS], [1], [Enable color support])
@@ -218,34 +222,6 @@ fi
 
 AM_CONDITIONAL(ENABLE_LIRC, test x$enable_lirc = xyes)
 
-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"
-else
-    CFLAGS="$CFLAGS -DNDEBUG"
-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])
@@ -292,9 +268,9 @@ 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@:>@]),
+                            [Enable artist screen @<:@default=yes@:>@]),
              [artist_screen="$enableval"],
-             [artist_screen=no])
+             [artist_screen=$disable_mini])
 AC_MSG_RESULT([$artist_screen])
 if test "x$artist_screen" = "xyes" ; then
     AC_DEFINE(ENABLE_ARTIST_SCREEN, 1, [Enable artist screen])
@@ -315,6 +291,20 @@ if test "x$search_screen" = "xyes" ; then
 fi
 
 AM_CONDITIONAL(ENABLE_SEARCH_SCREEN, test x$search_screen = xyes)
+
+dnl Optional screen - song viewer
+AC_MSG_CHECKING([whether to include the song viewer screen])
+AC_ARG_ENABLE([song-screen],
+       AC_HELP_STRING([--enable-song-screen],
+               [Enable song viewer screen @<:@default=yes@:>@]),
+       [song_screen="$enableval"],
+       [song_screen=$disable_mini])
+AC_MSG_RESULT([$song_screen])
+if test "x$song_screen" = "xyes" ; then
+       AC_DEFINE(ENABLE_SONG_SCREEN, 1, [Enable song viewer screen])
+fi
+
+AM_CONDITIONAL(ENABLE_SONG_SCREEN, test x$song_screen = xyes)
   
 dnl Optional screen - key editor
 AC_MSG_CHECKING([whether to include the key editor screen])
@@ -361,35 +351,69 @@ AC_DEFINE_UNQUOTED([LYRICS_PLUGIN_DIR], ["$lyrics_plugin_dir"],
                   [Directory to search for lyrics plugins])
 AC_SUBST(lyrics_plugin_dir)
 
-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_CONFIG_FILES([Makefile src/Makefile doc/Makefile po/Makefile.in po/Makefile])
+AM_CONDITIONAL(ENABLE_PLUGIN_LIBRARY, test x$lyrics_screen = xyes)
+AM_CONDITIONAL(ENABLE_SCREEN_TEXT, test x$lyrics_screen = xyes)
+
+dnl Optional screen - outputs
+AC_MSG_CHECKING([whether to include the outputs screen])
+AC_ARG_ENABLE([outputs-screen],
+       AC_HELP_STRING([--enable-outputs-screen],
+               [Enable outputs screen @<:@default=yes@:>@]),
+       [outputs_screen=$enableval],
+       [outputs_screen=$disable_mini])
+if test "x$outputs_screen" = "xyes" ; then
+       AC_DEFINE(ENABLE_OUTPUTS_SCREEN, 1, [Enable outputs screen])
+fi
+
+AM_CONDITIONAL(ENABLE_OUTPUTS_SCREEN, test x$outputs_screen = xyes)
+
+
+dnl
+dnl build options
+dnl
+
+AC_ARG_ENABLE(werror,
+       AS_HELP_STRING([--enable-werror],
+               [Treat warnings as errors (default: disabled)]),
+       ENABLE_WERROR=$enableval,
+       ENABLE_WERROR=no)
+
+if test "x$ENABLE_WERROR" = xyes; then
+       AM_CFLAGS="$AM_CFLAGS -Werror"
+fi
+
+AC_ARG_ENABLE(debug,
+       AS_HELP_STRING([--enable-debug],
+               [Enable debugging (default: disabled)]),
+       ENABLE_DEBUG=$enableval,
+       ENABLE_DEBUG=no)
+
+if test "x$ENABLE_DEBUG" = xno; then
+       AM_CFLAGS="$AM_CFLAGS -DNDEBUG"
+fi
+
+
+dnl
+dnl CFLAGS
+dnl
+
+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
+dnl Generate output files
+dnl
+
+AC_CONFIG_FILES([Makefile po/Makefile.in po/Makefile])
 AC_OUTPUT