mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2025-12-28 04:00:07 +01:00
12 lines
469 B
Text
12 lines
469 B
Text
# AC_DEFINE_DIR macro from autoconf-archive.cryp.to
|
|
AC_DEFUN([AC_DEFINE_DIR], [
|
|
prefix_NONE=
|
|
exec_prefix_NONE=
|
|
test "x$prefix" = xNONE && prefix_NONE=yes && prefix=$ac_default_prefix
|
|
test "x$exec_prefix" = xNONE && exec_prefix_NONE=yes && exec_prefix=$prefix
|
|
eval ac_define_dir="\"[$]$2\""
|
|
AC_SUBST($1, "$ac_define_dir")
|
|
AC_DEFINE_UNQUOTED($1, "$ac_define_dir", [$3])
|
|
test "$prefix_NONE" && prefix=NONE
|
|
test "$exec_prefix_NONE" && exec_prefix=NONE
|
|
])
|