File: configure.in

package info (click to toggle)
logtools 0.13f
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 324 kB
  • sloc: cpp: 1,110; sh: 116; makefile: 50
file content (20 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (6)
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(clfmerge.cpp)
AC_SUBST(version)
version="0.13e"

dnl Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CPP
AC_PROG_INSTALL

dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T

dnl Checks for library -l socket.
AC_SUBST(extra_ldflags)
AC_CHECK_LIB(socket, bind, extra_ldflags="$extra_ldflags -lsocket -lnsl")

AC_OUTPUT(Makefile sun/pkginfo logtools.h)