| 1 |
26 |
unneback |
dnl Process this file with autoconf to produce a configure script.
|
| 2 |
|
|
dnl ====================================================================
|
| 3 |
|
|
dnl
|
| 4 |
|
|
dnl configure.in
|
| 5 |
|
|
dnl
|
| 6 |
|
|
dnl libcdl.a
|
| 7 |
|
|
dnl
|
| 8 |
|
|
dnl ====================================================================
|
| 9 |
|
|
dnl ####ECOSHOSTGPLCOPYRIGHTBEGIN####
|
| 10 |
|
|
dnl ----------------------------------------------------------------------------
|
| 11 |
|
|
dnl Copyright (C) 2002 Bart Veer
|
| 12 |
|
|
dnl Copyright (C) 1998, 1999, 2000, 2001 Red Hat, Inc.
|
| 13 |
|
|
dnl
|
| 14 |
|
|
dnl This file is part of the eCos host tools.
|
| 15 |
|
|
dnl
|
| 16 |
|
|
dnl This program is free software; you can redistribute it and/or modify it
|
| 17 |
|
|
dnl under the terms of the GNU General Public License as published by the Free
|
| 18 |
|
|
dnl Software Foundation; either version 2 of the License, or (at your option)
|
| 19 |
|
|
dnl any later version.
|
| 20 |
|
|
dnl
|
| 21 |
|
|
dnl This program is distributed in the hope that it will be useful, but WITHOUT
|
| 22 |
|
|
dnl ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
| 23 |
|
|
dnl FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
| 24 |
|
|
dnl more details.
|
| 25 |
|
|
dnl
|
| 26 |
|
|
dnl You should have received a copy of the GNU General Public License along with
|
| 27 |
|
|
dnl this program; if not, write to the Free Software Foundation, Inc.,
|
| 28 |
|
|
dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
| 29 |
|
|
dnl
|
| 30 |
|
|
dnl ----------------------------------------------------------------------------
|
| 31 |
|
|
dnl ####ECOSHOSTGPLCOPYRIGHTEND####
|
| 32 |
|
|
dnl ====================================================================
|
| 33 |
|
|
dnl#####DESCRIPTIONBEGIN####
|
| 34 |
|
|
dnl
|
| 35 |
|
|
dnl Author(s): bartv
|
| 36 |
|
|
dnl Contact(s): bartv
|
| 37 |
|
|
dnl Date: 1998/12/16
|
| 38 |
|
|
dnl Version: 0.01
|
| 39 |
|
|
dnl
|
| 40 |
|
|
dnl####DESCRIPTIONEND####
|
| 41 |
|
|
dnl ====================================================================
|
| 42 |
|
|
|
| 43 |
|
|
dnl The core header file had better be present.
|
| 44 |
|
|
AC_INIT(cdlcore.hxx)
|
| 45 |
|
|
|
| 46 |
|
|
dnl Pick up the support files from the top-level acsupport directory.
|
| 47 |
|
|
AC_CONFIG_AUX_DIR(../../acsupport)
|
| 48 |
|
|
|
| 49 |
|
|
ECOS_CHECK_BUILD_ne_SRC
|
| 50 |
|
|
AC_CANONICAL_HOST
|
| 51 |
|
|
AM_INIT_AUTOMAKE(libcdl, 0.2)
|
| 52 |
|
|
ECOS_SUBST_VERSION(CYGNUM_LIBCDL_VERSION)
|
| 53 |
|
|
AM_MAINTAINER_MODE
|
| 54 |
|
|
|
| 55 |
|
|
dnl The package contains a library implemented in C++. It has to be
|
| 56 |
|
|
dnl buildable under NT. Only a static version of the library is
|
| 57 |
|
|
dnl of interest at the moment.
|
| 58 |
|
|
AC_PROG_CC
|
| 59 |
|
|
AC_PROG_CXX
|
| 60 |
|
|
AC_PROG_RANLIB
|
| 61 |
|
|
AC_OBJEXT
|
| 62 |
|
|
AC_EXEEXT
|
| 63 |
|
|
ECOS_PROG_MSVC
|
| 64 |
|
|
ECOS_PROG_STANDARD_COMPILER_FLAGS
|
| 65 |
|
|
ECOS_ARG_INFRASTRUCTURE
|
| 66 |
|
|
ECOS_PATH_INFRA
|
| 67 |
|
|
ECOS_PATH_TCL
|
| 68 |
|
|
|
| 69 |
|
|
AM_CONFIG_HEADER(cdlconfig.h:config.h.in)
|
| 70 |
|
|
AC_OUTPUT(Makefile:Makefile.in testsuite/Makefile:testsuite/Makefile.in)
|