-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
43 lines (34 loc) · 835 Bytes
/
configure.ac
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
dnl Process this file with autoconf to produce a configure script.
AC_INIT([rioutil],[1.5.4])
AC_CONFIG_SRCDIR([librioutil/rio.c])
AM_CONFIG_HEADER([include/config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE
LT_INIT
AM_PROG_LIBTOOL
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CC_C99
AC_PROG_GCC_TRADITIONAL
AC_PROG_INSTALL
AC_PROG_LN_S
dnl Checks for header files.
AC_CHECK_HEADERS(fcntl.h limits.h strings.h sys/ioctl.h unistd.h getopt.h libgen.h bswap.h)
AC_CHECK_LIB(gnugetopt, getopt_long)
dnl Checks for library functions.
AC_CHECK_FUNCS(basename memcmp)
PKG_CHECK_MODULES([libusb], [libusb-1.0])
PACKAGE=rioutil
VERSION=1.5.4
AC_OUTPUT([
Makefile
librioutil/Makefile
include/Makefile
src/Makefile
man/Makefile
spec/Makefile
spec/rioutil.spec
man/rioutil.1
linux_driver/Makefile
debian/Makefile
])