2003-07-28 11:32:32 +00:00
|
|
|
AC_INIT(src/hdspmixer.cxx)
|
2003-11-24 18:17:05 +00:00
|
|
|
AM_INIT_AUTOMAKE(hdspmixer, 1.6)
|
2003-07-28 11:32:32 +00:00
|
|
|
|
|
|
|
|
AC_PROG_CXX
|
|
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
|
AC_STDC_HEADERS
|
|
|
|
|
AC_PATH_X
|
|
|
|
|
|
2003-11-24 14:48:21 +00:00
|
|
|
AM_PATH_ALSA(1.0.0)
|
2003-07-28 11:32:32 +00:00
|
|
|
|
2003-11-24 14:48:21 +00:00
|
|
|
dnl desktop install
|
|
|
|
|
AC_ARG_WITH(desktop-dir,
|
|
|
|
|
[ --with-desktop-dir specify the path to install desktop file],
|
|
|
|
|
[desktopdir="$withval"], [desktopdir=""])
|
|
|
|
|
if test -z "$desktopdir"; then
|
|
|
|
|
desktopdir=$datadir/applications
|
|
|
|
|
fi
|
|
|
|
|
DESKTOP_DIR="$desktopdir"
|
|
|
|
|
AC_SUBST(DESKTOP_DIR)
|
|
|
|
|
|
|
|
|
|
AC_ARG_WITH(pixmap-dir,
|
|
|
|
|
[ --with-pixmap-dir specify the path to install desktop pixmap file],
|
|
|
|
|
[pixmapdir="$withval"], [pixmapdir=""])
|
|
|
|
|
if test -z "$pixmapdir"; then
|
|
|
|
|
pixmapdir=$datadir/pixmaps
|
|
|
|
|
fi
|
|
|
|
|
PIXMAP_DIR="$pixmapdir"
|
|
|
|
|
AC_SUBST(PIXMAP_DIR)
|
|
|
|
|
|
|
|
|
|
dnl library check
|
2003-07-28 11:32:32 +00:00
|
|
|
AC_PATH_PROG(FLTK_CONFIG, fltk-config, no)
|
2003-11-25 12:16:40 +00:00
|
|
|
if test "$FLTK_CONFIG" = "no" && ! test "`hostname -f`" = "alsa.alsa-project.org"; then
|
2003-11-03 19:10:38 +00:00
|
|
|
AC_MSG_ERROR(fltk-config is required)
|
2003-07-28 11:32:32 +00:00
|
|
|
fi
|
2003-11-03 19:10:38 +00:00
|
|
|
FLTK_CXXFLAGS="`$FLTK_CONFIG --cxxflags` -fno-exceptions"
|
|
|
|
|
FLTK_LIBS="`$FLTK_CONFIG --ldflags`"
|
|
|
|
|
|
|
|
|
|
CXXFLAGS="$CXXFLAGS $ALSA_CFLAGS $FLTK_CXXFLAGS"
|
|
|
|
|
LDFLAGS="$LDFLAGS $ALSA_LIBS $FLTK_LIBS"
|
2003-07-28 11:32:32 +00:00
|
|
|
|
|
|
|
|
AC_OUTPUT(Makefile src/Makefile pixmaps/Makefile)
|