2015-12-29 19:17:04 +01:00
|
|
|
$NetBSD: patch-ae,v 1.5 2015/12/29 18:17:04 dholland Exp $
|
|
|
|
|
|
|
|
Configure for pkgsrc.
|
|
|
|
Use tradcpp for cpping.
|
Initial import of sather.
Sather is an object oriented language which designed to be simple,
efficient, safe, and non-proprietary. It aims to meet the needs of
modern research groups and to foster the development of a large,
freely available, high-quality library of efficient well-written
classes for a wide variety of computational tasks. It was originally
based on Eiffel but now incorporates ideas and approaches from several
languages. One way of placing it in the "space of languages" is to say
that it attempts to be as efficient as C, C++, or Fortran, as elegant
and safe as Eiffel or CLU, and to support higher-order functions as
well as Common Lisp, Scheme, or Smalltalk.
Sather has garbage collection, statically-checked strong typing,
multiple inheritance, separate implementation and type inheritance,
parameterized classes, dynamic dispatch, iteration abstraction,
higher-order routines and iters, exception handling, assertions,
preconditions, postconditions, and class invariants. Sather code can
be compiled into C code and can efficiently link with C object files.
2002-05-04 02:45:28 +02:00
|
|
|
|
|
|
|
--- Makefile.orig Thu Nov 4 08:04:28 1999
|
|
|
|
+++ Makefile Thu May 2 17:09:46 2002
|
|
|
|
@@ -23,15 +23,15 @@
|
|
|
|
|
|
|
|
# Standard things
|
|
|
|
# CMP=cmp
|
|
|
|
-RANLIB=ranlib
|
|
|
|
-MV=mv
|
|
|
|
-AR=ar
|
|
|
|
+RANLIB?=ranlib
|
|
|
|
+MV?=mv
|
|
|
|
+AR?=ar
|
|
|
|
RM=rm -f
|
2008-07-14 03:23:52 +02:00
|
|
|
LN=ln -sf
|
Initial import of sather.
Sather is an object oriented language which designed to be simple,
efficient, safe, and non-proprietary. It aims to meet the needs of
modern research groups and to foster the development of a large,
freely available, high-quality library of efficient well-written
classes for a wide variety of computational tasks. It was originally
based on Eiffel but now incorporates ideas and approaches from several
languages. One way of placing it in the "space of languages" is to say
that it attempts to be as efficient as C, C++, or Fortran, as elegant
and safe as Eiffel or CLU, and to support higher-order functions as
well as Common Lisp, Scheme, or Smalltalk.
Sather has garbage collection, statically-checked strong typing,
multiple inheritance, separate implementation and type inheritance,
parameterized classes, dynamic dispatch, iteration abstraction,
higher-order routines and iters, exception handling, assertions,
preconditions, postconditions, and class invariants. Sather code can
be compiled into C code and can efficiently link with C object files.
2002-05-04 02:45:28 +02:00
|
|
|
-CP=cp
|
|
|
|
+CP?=cp
|
|
|
|
|
|
|
|
-CPP=/lib/cpp -C -P
|
|
|
|
-CC=gcc
|
2013-08-31 00:36:51 +02:00
|
|
|
+CPP=tradcpp -C -P
|
Initial import of sather.
Sather is an object oriented language which designed to be simple,
efficient, safe, and non-proprietary. It aims to meet the needs of
modern research groups and to foster the development of a large,
freely available, high-quality library of efficient well-written
classes for a wide variety of computational tasks. It was originally
based on Eiffel but now incorporates ideas and approaches from several
languages. One way of placing it in the "space of languages" is to say
that it attempts to be as efficient as C, C++, or Fortran, as elegant
and safe as Eiffel or CLU, and to support higher-order functions as
well as Common Lisp, Scheme, or Smalltalk.
Sather has garbage collection, statically-checked strong typing,
multiple inheritance, separate implementation and type inheritance,
parameterized classes, dynamic dispatch, iteration abstraction,
higher-order routines and iters, exception handling, assertions,
preconditions, postconditions, and class invariants. Sather code can
be compiled into C code and can efficiently link with C object files.
2002-05-04 02:45:28 +02:00
|
|
|
+CC?=gcc
|
|
|
|
EXEC_SUFFIX=
|
|
|
|
# CC is only used for bootstrapping, check System/Common/CONFIG.proto if
|
|
|
|
# you want to change it for all Sather compilations
|
2008-07-14 03:23:52 +02:00
|
|
|
@@ -91,7 +91,7 @@
|
Initial import of sather.
Sather is an object oriented language which designed to be simple,
efficient, safe, and non-proprietary. It aims to meet the needs of
modern research groups and to foster the development of a large,
freely available, high-quality library of efficient well-written
classes for a wide variety of computational tasks. It was originally
based on Eiffel but now incorporates ideas and approaches from several
languages. One way of placing it in the "space of languages" is to say
that it attempts to be as efficient as C, C++, or Fortran, as elegant
and safe as Eiffel or CLU, and to support higher-order functions as
well as Common Lisp, Scheme, or Smalltalk.
Sather has garbage collection, statically-checked strong typing,
multiple inheritance, separate implementation and type inheritance,
parameterized classes, dynamic dispatch, iteration abstraction,
higher-order routines and iters, exception handling, assertions,
preconditions, postconditions, and class invariants. Sather code can
be compiled into C code and can efficiently link with C object files.
2002-05-04 02:45:28 +02:00
|
|
|
# The platform to use if not overridden by a -<platform> option
|
|
|
|
# or the SATHER_PLATFORM environment variable
|
|
|
|
# Should be edited for a particular system
|
2008-07-14 03:23:52 +02:00
|
|
|
-DEFAULT_PLATFORM=linux
|
2006-01-12 01:05:04 +01:00
|
|
|
+DEFAULT_PLATFORM=${LOWER_OPSYS}
|
Initial import of sather.
Sather is an object oriented language which designed to be simple,
efficient, safe, and non-proprietary. It aims to meet the needs of
modern research groups and to foster the development of a large,
freely available, high-quality library of efficient well-written
classes for a wide variety of computational tasks. It was originally
based on Eiffel but now incorporates ideas and approaches from several
languages. One way of placing it in the "space of languages" is to say
that it attempts to be as efficient as C, C++, or Fortran, as elegant
and safe as Eiffel or CLU, and to support higher-order functions as
well as Common Lisp, Scheme, or Smalltalk.
Sather has garbage collection, statically-checked strong typing,
multiple inheritance, separate implementation and type inheritance,
parameterized classes, dynamic dispatch, iteration abstraction,
higher-order routines and iters, exception handling, assertions,
preconditions, postconditions, and class invariants. Sather code can
be compiled into C code and can efficiently link with C object files.
2002-05-04 02:45:28 +02:00
|
|
|
|
|
|
|
# The platform used to compile the boot compiler. Usually just default, but has to
|
|
|
|
# be one of: freebsd, hpux_at, iris-4, linux, osf_at, solaris, solaris_at, unix,
|