mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-25 21:20:02 +08:00
17 lines
311 B
Plaintext
17 lines
311 B
Plaintext
|
# 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
|