You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
#MIN_CONFIG |
|
KDE_ENABLE_HIDDEN_VISIBILITY |
|
AC_CHECK_RANDOM |
|
AC_CHECK_USLEEP |
|
CXXFLAGS="$CXXFLAGS $KDE_DEFAULT_CXXFLAGS" |
|
|
|
KDE_INIT_DOXYGEN([KDE Games API Reference], [Version $VERSION]) |
|
|
|
# Allow for stand-alone releases of applications with cvs2pack |
|
if test -d $srcdir/libtdegames ; then |
|
AC_SUBST(LIB_TDEGAMES, "\$(top_builddir)/libtdegames/libtdegames.la") |
|
AC_SUBST(LIB_TDEGAMES_DEP, '$(LIB_TDEGAMES)') |
|
else |
|
AC_SUBST(LIB_TDEGAMES, "-ltdegames") |
|
AC_SUBST(LIB_TDEGAMES_DEP, "") |
|
fi |
|
|
|
artsc_config_test_path=$prefix/bin:$exec_prefix/bin:$TDEDIR/bin:$PATH |
|
AC_PATH_PROG(ARTSCCONFIG, artsc-config, no, $artsc_config_test_path) |
|
|
|
if test "x$build_arts" = "xyes" && test "x$ARTSCCONFIG" != "xno" ; then |
|
LIB_ARTS="-lartskde" |
|
ARTS_PREFIX=[`$ARTSCCONFIG --arts-prefix`] |
|
ARTS_CFLAGS="-I$ARTS_PREFIX/include/arts" |
|
AC_DEFINE(HAVE_ARTS, 1, [have arts support in juk]) |
|
else |
|
build_arts="no" |
|
LIB_ARTS="" |
|
ARTS_CFLAGS="" |
|
AC_DEFINE(HAVE_ARTS, 0, [no arts support in juk]) |
|
fi |
|
|
|
AC_SUBST(LIB_ARTS) |
|
AC_SUBST(ARTS_CFLAGS)
|
|
|