File: ac-define-dir.m4

package info (click to toggle)
mate-applets 1.8.0%2Bdfsg1-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 11,952 kB
  • sloc: ansic: 21,842; python: 1,503; makefile: 1,227; xml: 65; sh: 20
file content (12 lines) | stat: -rwxr-xr-x 394 bytes parent folder | download | duplicates (46)
1
2
3
4
5
6
7
8
9
10
11
12
dnl from ac-archives
AC_DEFUN([AC_DEFINE_DIR], [
  test "x$prefix" = xNONE && prefix="$ac_default_prefix"
  test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  ac_define_dir=`eval echo [$]$2`
  ac_define_dir=`eval echo [$]ac_define_dir`
  $1="$ac_define_dir"
  AC_SUBST($1)
  ifelse($3, ,
    AC_DEFINE_UNQUOTED($1, "$ac_define_dir"),
    AC_DEFINE_UNQUOTED($1, "$ac_define_dir", $3))
])