From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 29 Sep 92 16:37:36 GMT From: eachus@mitre-bedford.arpa (Robert I. Eachus) Subject: Re: conditional compiles ? Message-ID: List-Id: The other replies to this message are barking up the wrong tree. We all know that in Ada it is almost always possible to code in an implementation independant manner so a first order answer is that you don't use anything like #ifdef. (Or #include, a lot of early Ada compilers implemented pragma INCLUDE, but no one ever used it.) If you do have to have hardware specific code, the usual approach is to put all that code in one or two packages and if necessary maintain several versions of it. -- Robert I. Eachus with STANDARD_DISCLAIMER; use STANDARD_DISCLAIMER; function MESSAGE (TEXT: in CLEVER_IDEAS) return BETTER_IDEAS is...