File: gp-udev.m4

package info (click to toggle)
libgphoto2 2.4.14-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 21,816 kB
  • sloc: ansic: 106,721; sh: 11,844; xml: 4,811; perl: 975; makefile: 600; yacc: 337; lex: 92; cpp: 22; sed: 16
file content (9 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (26)
1
2
3
4
5
6
7
8
9
dnl Determines whether UDEV code should be compiled.
dnl $1 contains shell code that returns 0 if all other prerequisites (like
dnl libusb) are available.
AC_DEFUN([GP_UDEV],[dnl
if test "x${udevscriptdir}" = "x"; then	udevscriptdir="\${libdir}/udev"; fi
AC_ARG_VAR([udevscriptdir],[Directory where udev scripts like check-ptp-camera will be installed])
AC_SUBST([udevscriptdir])
AM_CONDITIONAL([HAVE_UDEV],[if echo "$host"|grep -i linux >/dev/null ; then $1; fi ])
])dnl