blob: a87968bc24845ec9df39fe07f3a37c3109e83581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Process this file with autoconf to produce a configure script, like so:
# aclocal, autoconf, autoheader, automake
AC_PREREQ(2.13)
AC_INIT(new_handler.cc)
AC_CONFIG_AUX_DIR(..)
PACKAGE=libsupc++
VERSION=3.0
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
AC_CANONICAL_SYSTEM
AM_PROG_LIBTOOL
AC_PROG_INSTALL
AC_PROG_CXX
|