From 7519388eb044ae61e8d27fd64a4d9fb111feb001 Mon Sep 17 00:00:00 2001 From: Oleg Smirnov <smirnov@astron.nl> Date: Tue, 8 Jan 2002 11:01:29 +0000 Subject: [PATCH] *** empty log message *** --- CEP/CPA/PSCF/Makefile.am | 4 +++ CEP/CPA/PSCF/bootstrap | 3 ++ CEP/CPA/PSCF/configure.in | 67 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 CEP/CPA/PSCF/Makefile.am create mode 100755 CEP/CPA/PSCF/bootstrap create mode 100644 CEP/CPA/PSCF/configure.in diff --git a/CEP/CPA/PSCF/Makefile.am b/CEP/CPA/PSCF/Makefile.am new file mode 100644 index 00000000000..032570d26ad --- /dev/null +++ b/CEP/CPA/PSCF/Makefile.am @@ -0,0 +1,4 @@ +SUBDIRS=src test +DOC_SUBDIRS=src + +include $(top_srcdir)/../../../autoconf_share/Makefile.common diff --git a/CEP/CPA/PSCF/bootstrap b/CEP/CPA/PSCF/bootstrap new file mode 100755 index 00000000000..06f18cde1db --- /dev/null +++ b/CEP/CPA/PSCF/bootstrap @@ -0,0 +1,3 @@ +#!/bin/sh + +../../../autoconf_share/bootstrap ../../../autoconf_share diff --git a/CEP/CPA/PSCF/configure.in b/CEP/CPA/PSCF/configure.in new file mode 100644 index 00000000000..87da0fdce37 --- /dev/null +++ b/CEP/CPA/PSCF/configure.in @@ -0,0 +1,67 @@ +dnl +dnl Process this file with autoconf to produce a configure script. +dnl +AC_INIT(src/DMI.h) +AC_CONFIG_AUX_DIR(config) +dnl AM_CONFIG_HEADER(config/config.h) +AM_CONFIG_HEADER(config.h) +AM_INIT_AUTOMAKE(PSCF, 0.1) + +dnl Checks for programs. +AC_PROG_AWK +AC_PROG_YACC +AC_PROG_CC +AC_PROG_CXX +AM_PROG_LEX +AC_PROG_INSTALL +AC_PROG_LN_S +AC_DISABLE_SHARED +AM_PROG_LIBTOOL + +dnl Checks for libraries. + +dnl dnl Replace `main' with a function in -lfl: +dnl AC_CHECK_LIB(fl, main) +dnl dnl Replace `main' with a function in -lcosev_r: +dnl AC_CHECK_LIB(cosev_r, main) +dnl dnl Replace `main' with a function in -lcosnm_r: +dnl AC_CHECK_LIB(cosnm_r, main) +dnl dnl Replace `main' with a function in -lorb_r: +dnl AC_CHECK_LIB(orb_r, main) +dnl dnl Replace `main' with a function in -lpthread: +dnl AC_CHECK_LIB(pthread, main) +dnl dnl Replace `main' with a function in -lvport_r: +dnl AC_CHECK_LIB(vport_r, main) + +dnl Checks for header files. +AC_HEADER_STDC +AC_CHECK_HEADERS(unistd.h) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST +AC_TYPE_SIZE_T + +dnl Checks for library functions. +AC_FUNC_VPRINTF + +dnl +dnl Check for LOFAR specific things +dnl +lofar_DEBUG_OPTIMIZE +dnl lofar_FIREWALLS +lofar_CORBA +dnl lofar_MATLAB +dnl lofar_AIPSPP +dnl lofar_MPI +lofar_QATOOLS +lofar_DOCXX +dnl lofar_BASESIM + +dnl +dnl Output Makefiles +dnl +AC_OUTPUT( +src/Makefile +test/Makefile +Makefile +) -- GitLab