1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
dnl @synopsis AC_DEFINE_SUB_PATH(DEFNAME, varname, description)
dnl
dnl @obsoleted Renamed to AC_DEFINE_SUB_PATH.
dnl
dnl look at varname and detect the subpath that it contains relative to
dnl $prefix/$exec_prefix
dnl
dnl If the path is indeed relative to $prefix/$exec_prefix, then a
dnl single "./" (dotslash) is prepended, otherwise it can be seen as an
dnl absolute path that can not be moved, which you possibly do for
dnl "/etc" files, or even those ending up in "/lib/modules" or
dnl "/winnt/system".
dnl
dnl this macro is not very intelligent, it's just a first try in this
dnl direction. It does currently just look into the current patterns,
dnl and replaces a ${prefix} with a simple dot. Amazingly, it works
dnl quite well for most packages.
dnl
dnl correct usage: in configure ac
dnl
dnl AC_DEFINE_DIR([EPREFIX], [exec_prefix], [--exec-prefix or default])
dnl AC_DEFINE_SUB_PATH([PATH_LIBDIR], [libdir], [--bindir subdir])
dnl AC_DEFINE_UNQUOTED([PACKAGE],"$PACKAGE", [Name of package])
dnl
dnl in "C"
dnl
dnl static const char _libdir[] = PATH_LIBDIR; /* configure default */
dnl char* libdir;
dnl char* eprefix = getenv (PACKAGE "DIR");
dnl if (! eprefix) eprefix = EPREFIX; /* default */
dnl if (*_libdir != '.') libdir = strdup(_libdir);
dnl else {
dnl libdir = malloc(strlen(eprefix) + strlen(_libdir) + 2);
dnl strcpy(libdir, eprefix);
dnl strcat(libdir, PATH_DELIMITER_STRING);
dnl strcat(libdir, _libdir);
dnl }
dnl ...
dnl free (libdir);
dnl
dnl AC_DEFINE_SUB_PATHS(varnames)
dnl
dnl look for the given various install-paths that largely depend on
dnl either ${prefix} or ${exec_prefix}. Just cut out the prefix and
dnl ac_define the value. The value is uppercased and PATH_ prepended
dnl ie. ac_define_sub_paths(bindir libdir pkgdatadir) will create the
dnl defines PATH_BINDIR PATH_LIBDIR PATH_PKGDATADIR - see posix'
dnl include/paths.h that creates _PATH_DEV and friends.
dnl
dnl @category Obsolete
dnl @author Guido Draheim <guidod@gmx.de>
dnl @version 2005-08-01
dnl @license GPLWithACException
AC_DEFUN([AC_DEFINE_SUB_PATH],
[dnl
test "_$prefix" = _NONE && prefix="$ac_default_prefix"
test "_$exec_prefix" = _NONE && exec_prefix='${prefix}'
P=`echo ifelse( $2, , [$]$1, [$]$2) | sed -e 's:^\${[a-z_]*prefix}:.:'`
ifelse ($3, ,
AC_DEFINE($1, $P, [sub path $2]),
AC_DEFINE($1, $P, $3))
])
AC_DEFUN([AC_DEFINE_SUB_PATHS],
[dnl
test "_$prefix" = _NONE && prefix="$ac_default_prefix"
test "_$exec_prefix" = _NONE && exec_prefix='${prefix}'
for i in $1 ; do
P=`echo \$$i | sed -e 's:^\${[a-z_]*prefix}:.:'`
V=`echo path_$i | sed -e 'y:abcdefghijklmnopqrstuvwxyz:ABCDEFGHIJKLMNOPQRSTUVWXYZ:'`
AC_DEFINE($V, $P, [sub path $i]),
])
|