93 lines
2.1 KiB
Text
93 lines
2.1 KiB
Text
AC_INIT(control-center)
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
AM_INIT_AUTOMAKE(control-center, 0.5)
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
AM_ACLOCAL_INCLUDE(macros)
|
|
|
|
dnl
|
|
dnl let applications configure for gnome
|
|
dnl
|
|
gnome_cv_use_gnome=yes
|
|
|
|
GNOME_INIT
|
|
|
|
AC_ISC_POSIX
|
|
AC_PROG_CC
|
|
AC_STDC_HEADERS
|
|
AC_ARG_PROGRAM
|
|
AM_PROG_LIBTOOL
|
|
AC_PROG_CXX
|
|
AM_PROG_LEX
|
|
AC_PROG_YACC
|
|
|
|
GNOME_COMPILE_WARNINGS
|
|
|
|
GNOME_X_CHECKS
|
|
|
|
dnl utility conditional
|
|
AM_CONDITIONAL(FALSE, test "x" = "y")
|
|
|
|
dnl ## all 'es_??' are only needed for format numbers different of 'es'
|
|
ALL_LINGUAS="ca cs da de es es_DO es_GT es_HN es_MX es_PA es_PE es_SV fi fr ga it ja ko no pt sv ru pl hu"
|
|
AM_GNU_GETTEXT
|
|
|
|
AC_SUBST(CFLAGS)
|
|
AC_SUBST(CPPFLAGS)
|
|
AC_SUBST(LDFLAGS)
|
|
|
|
AC_CHECK_HEADERS(dlfcn.h dl.h)
|
|
AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl",[
|
|
AC_CHECK_LIB(dld, shl_load, DL_LIB="-ldld",[
|
|
AC_CHECK_FUNCS(dlopen, DL_LIB="",
|
|
AC_MSG_ERROR(Dynamic linking is not available on this platform. Some
|
|
apps, like panel, will not run properly.))
|
|
])])
|
|
AC_SUBST(DL_LIB)
|
|
|
|
dnl keyboard-properties-capplet
|
|
AC_CHECK_HEADERS(X11/extensions/xf86misc.h, XF86MISC_LIBS="-lXxf86misc")
|
|
AC_SUBST(XF86MISC_LIBS)
|
|
|
|
for dir in `(IFS=:; for i in $PATH; do echo $i ; done)` ; do
|
|
if test -f $dir/orbit-idl ; then
|
|
orbit_prefix=`echo $dir | sed 's%/bin$%%' |sed 's%/bin/$%%'`
|
|
break
|
|
fi
|
|
done
|
|
|
|
ORB_LIBS="$ORBIT_LIBS"
|
|
ORB_CFLAGS="$ORBIT_CFLAGS"
|
|
|
|
AC_SUBST(ORB_LIBS)
|
|
AC_SUBST(ORB_CFLAGS)
|
|
|
|
dnl esd-manager
|
|
have_libesd=no
|
|
AM_PATH_ESD(,have_libesd=yes,
|
|
[AC_MSG_WARN([*** \`esd-manager' will not be built ***])])
|
|
AM_CONDITIONAL(HAVE_LIBESD, test yes = $have_libesd)
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
po/Makefile.in
|
|
macros/Makefile
|
|
control-center/Makefile
|
|
capplets/Makefile
|
|
capplets/mouse-properties/Makefile
|
|
capplets/keyboard-properties/Makefile
|
|
capplets/desktop-links/Makefile
|
|
capplets/background-properties/Makefile
|
|
capplets/screensaver-properties/Makefile
|
|
capplets/screensaver-properties/screensaver-desktops/Makefile
|
|
capplets/sound-properties/Makefile
|
|
capplets/bell-properties/Makefile
|
|
capplets/e-conf/Makefile
|
|
capplets/theme-switcher/Makefile
|
|
capplets/ui-properties/Makefile
|
|
capplets/url-properties/Makefile
|
|
idl/Makefile
|
|
intl/Makefile])
|
|
|