File: configure.in

package info (click to toggle)
scanbuttond 0.2.3.cvs20090713-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 484 kB
  • ctags: 506
  • sloc: ansic: 3,810; makefile: 151; sh: 72
file content (19 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
AC_INIT([scanbuttond], [0.2.3.1], [root84@users.soureforge.net])
AC_CONFIG_HEADERS([include/scanbuttond/config.h])
AM_INIT_AUTOMAKE

AC_DISABLE_STATIC

AC_LANG_C
AC_PROG_CC
AC_LIBTOOL_DLOPEN
AC_PROG_LIBTOOL

AC_CHECK_HEADERS(errno.h string.h syslog.h unistd.h dlfcn.h usb.h)

CFLAGS="${CFLAGS} -DCFG_DIR=\$(pkgsysconfdir) -DLIB_DIR=\$(libdir)"

AC_CHECK_LIB(dl, dlopen, LIBDL=-ldl) 
AC_SUBST(LIBDL)

AC_OUTPUT(Makefile contrib/Makefile interface/Makefile backends/Makefile scripts/Makefile)