File: acinclude.m4

package info (click to toggle)
xorg-server 2%3A1.1.1-21etch5
  • links: PTS
  • area: main
  • in suites: etch
  • size: 53,408 kB
  • ctags: 137,174
  • sloc: ansic: 855,904; sh: 10,998; makefile: 7,181; cpp: 4,893; asm: 2,018; objc: 2,003; perl: 600; yacc: 401; lex: 266; csh: 3
file content (13 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
dnl From http://autoconf-archive.cryp.to/ac_define_dir.html.

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
])