File: configure.ac

package info (click to toggle)
libwibble 0.1.9
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 500 kB
  • ctags: 1,183
  • sloc: cpp: 5,760; sh: 113; makefile: 71
file content (40 lines) | stat: -rw-r--r-- 703 bytes parent folder | download
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
dnl Process this file with autoconf to produce a configure script.
AC_INIT(libwibble, [0.1.7], [libapt-front-devel@lists.alioth.debian.org])
AC_CONFIG_SRCDIR([configure.ac])
dnl AC_CONFIG_AUX_DIR(admin)
AM_INIT_AUTOMAKE([foreign subdir-objects])
AC_CONFIG_HEADERS(wibble/config.h)
AC_CONFIG_HEADERS(wibble/shared.h)

dnl To use subdirs
AC_PROG_MAKE_SET

AC_LANG([C++])

AC_ISC_POSIX
AC_PROG_CC
AC_PROG_CXX
AM_PROG_CC_STDC
AC_HEADER_STDC

AM_PROG_CC_C_O

#AM_PROG_LEX
#AC_PROG_YACC

dnl Use libtool
AM_ENABLE_STATIC
AM_DISABLE_SHARED
AM_PROG_LIBTOOL

CXXFLAGS="-Wall -W $CXXFLAGS"

AC_CONFIG_FILES([
Makefile
wibble/Makefile
wibble/tests/Makefile
wibble/libwibble.pc
wibble/libwibble-gc.pc
])
AC_OUTPUT