From: John Kohl Date: Tue, 9 Oct 1990 09:36:06 +0000 (+0000) Subject: fix comments on constructing with Imake.tmpl X-Git-Tag: krb5-1.0-alpha2~244 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=055d954d8c53eed832cf8db1c34128f1c3ccc941;p=krb5.git fix comments on constructing with Imake.tmpl remove function prototype stuff. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1167 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/config/Imake.tmpl b/src/config/Imake.tmpl index 76198326f..abfbf7061 100644 --- a/src/config/Imake.tmpl +++ b/src/config/Imake.tmpl @@ -34,18 +34,20 @@ * * 1. Identify a machine-specific cpp symbol. If your preprocessor * doesn't have any built in, you'll need to add the symbol to the - * cpp_argv table in util/imake/imake.c and rebuild imake with the + * cpp_argv table in config/imake.c and rebuild imake with the * BOOTSTRAPCFLAGS variable set (see the macII for an example). * + * [ignore this for now...no makedepend with Kerberos V5 (yet...)] * 2. Add all machine-specific cpp symbols (either defined by you or by * the preprocessor or compiler) to the predefs table in - * util/makedepend/main.c. + * config/makedepend/main.c. * * 3. But a new #ifdef block below that defines MacroIncludeFile and * MacroFile for your new platform and then #undefs the machine- * specific preprocessor symbols (to avoid problems with file names). * - * 4. Create a .cf file with the name given by MacroFile. + * 4. Create a .cf file with the name given by MacroFile. See + * existing .cf files for examples of what to put there. */ #ifdef ultrix @@ -560,7 +562,7 @@ #define FilesToClean *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a .emacs_* tags TAGS make.log MakeOut #endif #ifndef STDCTopIncludes -#define STDCTopIncludes +#define STDCTopIncludes /**/ #endif SHELL = BourneShell @@ -612,23 +614,6 @@ STDC_TOP_INCLUDES = STDCTopIncludes #if !HasVoidSignalReturn SIGNAL_DEFINES = -DSIGNALRETURNSINT #endif -/* - * The following crap is necessary to support forcing of function prototypes - */ -#if NeedFunctionPrototypes -#define _funcprotodef -DFUNCPROTO -#else -#define _funcprotodef /**/ -#endif -#if NeedWidePrototypes -#define _wideprotodef /**/ -#else -#define _wideprotodef -DNARROWPROTO -#endif - PROTO_DEFINES = _funcprotodef _wideprotodef -#undef _funcprotodef -#undef _wideprotodef - #if StripInstalledPrograms INSTPGMFLAGS = InstPgmFlags -s /* install flags for stripping */ #else