File: configure.in

package info (click to toggle)
pcopy 1.5-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 160 kB
  • ctags: 74
  • sloc: ansic: 402; sh: 186; makefile: 77
file content (20 lines) | stat: -rw-r--r-- 400 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
dnl Process this file with autoconf to produce a configure script.

AC_INIT(pcopy.c)
AC_CONFIG_HEADER(config.h)
AC_PREREQ(2.12)

AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET

AC_CHECK_SIZEOF(long,4)

AC_CHECK_FUNCS(lseek64 llseek)

AC_CHECK_LIB(thread, thr_create)

dnl Use pthread_attr_init to differentiate between Posix and DCE Threads
AC_CHECK_LIB(pthread, pthread_attr_init)

AC_OUTPUT(Makefile)