mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
6394b85004
Updated initjamfile.m4 Added pkg.m4 for pkg-config Added new configure.in script and following config.jam.in
74 lines
2.9 KiB
Plaintext
74 lines
2.9 KiB
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
dnl Part of Equinox Desktop Environment (EDE).
|
|
dnl Based on code from Autojam (c) Matze Braun <matze@braunis.de>
|
|
|
|
#----------------------------------------------------------------------------
|
|
# EDE_INIT_JAM
|
|
# This rule fixes several issues related to autoconf being make centric
|
|
#----------------------------------------------------------------------------
|
|
AC_DEFUN([EDE_INIT_JAM], [AC_OUTPUT_INSTALLDIRS])
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# AC_OUTPUT_INSTALLDIRS
|
|
# Transforms the installation dirs which are gathered by autoconf and sets
|
|
# properties in the Jamconfig file for them. We deal with stuff like
|
|
# variable references inside the paths (often the paths contain ${prefix})
|
|
# and with correct quoting here.
|
|
#-----------------------------------------------------------------------------
|
|
AC_DEFUN([AC_OUTPUT_INSTALLDIRS],[
|
|
# Handle the case when no prefix is given. And the special case when a path
|
|
# contains more than 2 slashes, these paths seem to be correct but jam fails
|
|
# on them.
|
|
AS_IF([test $prefix = NONE], [prefix="$ac_default_prefix"],
|
|
[prefix=`echo "$prefix" | sed -e 's:///*:/:g'`])
|
|
AS_IF([test $exec_prefix = NONE],
|
|
[exec_prefix="AS_ESCAPE([$(prefix)])"],
|
|
[exec_prefix=`echo "$exec_prefix" | sed -e 's:///*:/:g'`])
|
|
|
|
prefix=AC_FIX_VARIABLEREF([$prefix])
|
|
exec_prefix=AC_FIX_VARIABLEREF([$exec_prefix])
|
|
bindir=AC_FIX_VARIABLEREF([$bindir])
|
|
sbindir=AC_FIX_VARIABLEREF([$sbindir])
|
|
libexecdir=AC_FIX_VARIABLEREF([$libexecdir])
|
|
datarootdir=AC_FIX_VARIABLEREF([$datarootdir])
|
|
datadir=AC_FIX_VARIABLEREF([$datadir])
|
|
sysconfdir=AC_FIX_VARIABLEREF([$sysconfdir])
|
|
sharedstatedir=AC_FIX_VARIABLEREF([$sharedstatedir])
|
|
localstatedir=AC_FIX_VARIABLEREF([$localstatedir])
|
|
libdir=AC_FIX_VARIABLEREF([$libdir])
|
|
includedir=AC_FIX_VARIABLEREF([$includedir])
|
|
oldincludedir=AC_FIX_VARIABLEREF([$oldincludedir])
|
|
infodir=AC_FIX_VARIABLEREF([$infodir])
|
|
mandir=AC_FIX_VARIABLEREF([$mandir])
|
|
|
|
#hack to get the order right :-/ (autoconf --trace reports wrong order...)
|
|
AC_SUBST(prefix)
|
|
AC_SUBST(exec_prefix)
|
|
AC_SUBST(bindir)
|
|
AC_SUBST(sbindir)
|
|
AC_SUBST(libexecdir)
|
|
AC_SUBST(datadir)
|
|
AC_SUBST(sysconfdir)
|
|
AC_SUBST(sharedstatedir)
|
|
AC_SUBST(localstatedir)
|
|
AC_SUBST(libdir)
|
|
AC_SUBST(includedir)
|
|
AC_SUBST(oldincludedir)
|
|
AC_SUBST(infodir)
|
|
AC_SUBST(mandir)
|
|
])
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# AC_FIX_VARIABLEREF
|
|
# Transform variables of the form ${bla} to $(bla) inside the string and
|
|
# correctly quotes backslashes.
|
|
# This is needed if you want to output some of the paths that autoconf
|
|
# creates to the Jamconfig file.
|
|
#-----------------------------------------------------------------------------
|
|
AC_DEFUN([AC_FIX_VARIABLEREF],
|
|
dnl We need all the strange \\\\ quoting here, because the command will be
|
|
dnl inserted into a "" block and sed needs quoting as well
|
|
[`echo "$1" | sed -e 's/\${\([[a-zA-Z_][a-zA-Z_]]*\)}/$(\1)/g' -e 's/\\\\/\\\\\\\\/g'`])
|