File: configure.in

package info (click to toggle)
libvisca 1.0.1-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 1,624 kB
  • ctags: 484
  • sloc: sh: 7,902; ansic: 5,529; makefile: 24
file content (28 lines) | stat: -rw-r--r-- 513 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
20
21
22
23
24
25
26
27
28
# process this file with autoconf to get a configure script
AC_INIT(src/libvisca.c)

AM_INIT_AUTOMAKE(libvisca, 1.0.1)
AM_CONFIG_HEADER(config.h)

AC_PROG_CC
AC_PROG_LIBTOOL
AM_PROG_LIBTOOL

AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h sys/ioctl.h unistd.h)

AC_TYPE_SIZE_T

AC_FUNC_MMAP

# set the libtool shared library version numbers
lt_major=1
lt_revision=0
lt_age=1

AC_SUBST(lt_major)
AC_SUBST(lt_revision)
AC_SUBST(lt_age)

CFLAGS="$CFLAGS -Wall -Wunused"
AC_OUTPUT([ Makefile src/Makefile examples/Makefile])