PerlQt
view release on metacpan or search on metacpan
acinclude.m4 view on Meta::CPAN
fi
if test -z "$kde_appsdir"; then
kde_appsdir='\${prefix}/share/applnk'
fi
if test -z "$kde_icondir"; then
kde_icondir='\${prefix}/share/icons'
fi
if test -z "$kde_sounddir"; then
kde_sounddir='\${prefix}/share/sounds'
fi
if test -z "$kde_datadir"; then
kde_datadir='\${prefix}/share/apps'
fi
if test -z "$kde_locale"; then
kde_locale='\${prefix}/share/locale'
fi
if test -z "$kde_cgidir"; then
kde_cgidir='\${exec_prefix}/cgi-bin'
fi
if test -z "$kde_confdir"; then
kde_confdir='\${prefix}/share/config'
fi
if test -z "$kde_mimedir"; then
kde_mimedir='\${prefix}/share/mimelnk'
fi
if test -z "$kde_toolbardir"; then
kde_toolbardir='\${prefix}/share/toolbar'
fi
if test -z "$kde_wallpaperdir"; then
kde_wallpaperdir='\${prefix}/share/wallpapers'
fi
if test -z "$kde_templatesdir"; then
kde_templatesdir='\${prefix}/share/templates'
fi
if test -z "$kde_bindir"; then
kde_bindir='\${exec_prefix}/bin'
fi
if test -z "$kde_servicesdir"; then
kde_servicesdir='\${prefix}/share/services'
fi
if test -z "$kde_servicetypesdir"; then
kde_servicetypesdir='\${prefix}/share/servicetypes'
fi
if test -z "$kde_moduledir"; then
if test "$kde_qtver" = "2"; then
kde_moduledir='\${libdir}/kde2'
else
kde_moduledir='\${libdir}/kde3'
fi
fi
if test -z "$kde_styledir"; then
kde_styledir='\${libdir}/kde3/plugins/styles'
fi
if test -z "$kde_widgetdir"; then
kde_widgetdir='\${libdir}/kde3/plugins/designer'
fi
if test -z "$xdg_appsdir"; then
xdg_appsdir='\${datadir}/applications'
fi
if test -z "$xdg_directorydir"; then
xdg_directorydir='\${datadir}/desktop-directories'
fi
KDE_SET_PATHS(defaults)
else
if test $kde_qtver = 1; then
AC_MSG_RESULT([compiling])
KDE_1_CHECK_PATHS
else
AC_MSG_ERROR([path checking not yet supported for KDE 2])
fi
fi
])
AC_DEFUN(KDE_CHECK_PATHS_FOR_COMPLETENESS,
[ if test -z "$kde_htmldir" || test -z "$kde_appsdir" ||
test -z "$kde_icondir" || test -z "$kde_sounddir" ||
test -z "$kde_datadir" || test -z "$kde_locale" ||
test -z "$kde_cgidir" || test -z "$kde_confdir" ||
test -z "$kde_mimedir" || test -z "$kde_toolbardir" ||
test -z "$kde_wallpaperdir" || test -z "$kde_templatesdir" ||
test -z "$kde_bindir" || test -z "$kde_servicesdir" ||
test -z "$kde_servicetypesdir" || test -z "$kde_moduledir" ||
test -z "$kde_styledir" || test -z "kde_widgetdir" ||
test -z "$xdg_appsdir" || test -z "xdg_directorydir"
test "x$kde_have_all_paths" != "xyes"; then
kde_have_all_paths=no
fi
])
AC_DEFUN(KDE_MISSING_PROG_ERROR,
[
AC_MSG_ERROR([The important program $1 was not found!
Please check whether you installed KDE correctly.
])
])
AC_DEFUN(KDE_MISSING_ARTS_ERROR,
[
AC_MSG_ERROR([The important program $1 was not found!
Please check whether you installed aRts correctly.
])
])
AC_DEFUN(KDE_SUBST_PROGRAMS,
[
AC_ARG_WITH(arts,
[ --without-arts build without aRts [default=detect] ],
[build_arts=$withval],
[build_arts=yes]
)
AM_CONDITIONAL(include_ARTS, test "$build_arts" != "no")
kde_default_bindirs="/usr/bin /usr/local/bin /opt/local/bin /usr/X11R6/bin /opt/kde/bin /opt/kde3/bin /usr/kde/bin /usr/local/kde/bin"
test -n "$KDEDIR" && kde_default_bindirs="$KDEDIR/bin $kde_default_bindirs"
if test -n "$KDEDIRS"; then
kde_save_IFS=$IFS
IFS=:
( run in 2.338 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )