File: acinclude.m4

package info (click to toggle)
squeak-vm 1%3A4.10.2.2614%2B20120917~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 11,212 kB
  • sloc: ansic: 71,773; objc: 5,494; sh: 3,061; asm: 1,533; cpp: 449; pascal: 372; makefile: 300; awk: 103; cs: 11
file content (16 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- sh -*-

AC_MSG_CHECKING([for custom display support])

AC_ARG_WITH(custom-display,
[  --with-custom-display   enable custom window support [default=disabled]],
  [have_dpy_custom="$withval"],
  [have_dpy_custom="no"])

if test "$have_dpy_custom" = "yes"; then
  # check for libraries, headers, etc., here...
  AC_MSG_RESULT([yes])
else
  AC_MSG_RESULT([no])
  AC_PLUGIN_DISABLE
fi