From: Stan Shebs Date: Sat, 22 Jan 1994 21:28:29 +0000 (+0000) Subject: Sat Jan 22 13:23:46 1994 Stan Shebs (shebs@andros.cygnus.com) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=498d098a30a6f26c02252ffe2b33d2f5daec59d4;p=binutils-gdb.git Sat Jan 22 13:23:46 1994 Stan Shebs (shebs@andros.cygnus.com) * mpw-configure: Add more things to the top of each configured Makefile, including contents of config/mpw-mh-mpw. * mpw-config.in (extra-include): Create this directory and fill it with Posix-like include files when configuring. --- diff --git a/ChangeLog.mpw b/ChangeLog.mpw index 3df74518860..a419066f6f8 100644 --- a/ChangeLog.mpw +++ b/ChangeLog.mpw @@ -1,3 +1,10 @@ +Sat Jan 22 13:23:46 1994 Stan Shebs (shebs@andros.cygnus.com) + + * mpw-configure: Add more things to the top of each configured + Makefile, including contents of config/mpw-mh-mpw. + * mpw-config.in (extra-include): Create this directory and fill it + with Posix-like include files when configuring. + Sat Jan 15 12:47:23 1994 Stan Shebs (shebs@andros.cygnus.com) * config.sub (apple, mac, mpw): Add various aliases. diff --git a/mpw-config.in b/mpw-config.in index 5eaead3acec..57b6b35e7b9 100644 --- a/mpw-config.in +++ b/mpw-config.in @@ -1,3 +1,5 @@ +# Configuration fragment for Cygnus source tree. + Set host_libs "mmalloc libiberty opcodes bfd readline" Set host_tools "byacc flex binutils ld gas gcc gdb" @@ -9,3 +11,88 @@ Set target_tools "" Set configdirs "{host_libs} {host_tools} {target_libs} {target_tools}" Export configdirs +# Make up a special include directory that tools will share. + +If "`Exists "{objdir}"extra-include`" == "" + NewFolder "{objdir}"extra-include +End If + +Set extradir "{objdir}extra-include:" + +Echo '/* Imitation sys/types.h. */' >"{extradir}"'sys/types.h' +Echo '#ifndef __SYS_TYPES_H__' >>"{extradir}"'sys/types.h' +Echo '#define __SYS_TYPES_H__' >>"{extradir}"'sys/types.h' +Echo '#include ' >>"{extradir}"'sys/types.h' +Echo 'typedef short dev_t' >>"{extradir}"'sys/types.h' +Echo 'typedef short ino_t' >>"{extradir}"'sys/types.h' +Echo 'typedef unsigned short mode_t' >>"{extradir}"'sys/types.h' +Echo 'typedef unsigned short uid_t' >>"{extradir}"'sys/types.h' +Echo 'typedef unsigned short gid_t' >>"{extradir}"'sys/types.h' +Echo 'typedef long off_t' >>"{extradir}"'sys/types.h' +Echo '#endif /* __SYS_TYPES_H__ */' >>"{extradir}"'sys/types.h' + +Echo '/* Imitation sys/time.h. */' >"{extradir}"'sys/time.h' +Echo '#ifndef __SYS_TIME_H__' >>"{extradir}"'sys/time.h' +Echo '#define __SYS_TIME_H__' >>"{extradir}"'sys/time.h' +Echo '#include ' >"{extradir}"'sys/time.h' +Echo 'struct timeval {' >>"{extradir}"'sys/time.h' +Echo ' long tv_sec;' >>"{extradir}"'sys/time.h' +Echo ' long tv_usec;' >>"{extradir}"'sys/time.h' +Echo '};' >>"{extradir}"'sys/time.h' +Echo '#endif /* __SYS_TIME_H__ */' >>"{extradir}"'sys/time.h' + +Echo '/* Imitation sys/resource.h. */' >"{extradir}"'sys/resource.h' +Echo '#ifndef __SYS_RESOURCE_H__' >>"{extradir}"'sys/resource.h' +Echo '#define __SYS_RESOURCE_H__' >>"{extradir}"'sys/resource.h' +Echo 'struct rusage {' >"{extradir}"'sys/resource.h' +Echo ' struct timeval ru_utime;' >>"{extradir}"'sys/resource.h' +Echo ' struct timeval ru_stime;' >>"{extradir}"'sys/resource.h' +Echo '};' >>"{extradir}"'sys/resource.h' +Echo '#endif /* __SYS_RESOURCE_H__ */' >>"{extradir}"'sys/resource.h' + +Echo "/* varargs.h. */" >"{extradir}"varargs.h +Echo "#ifndef __va_list__" >>"{extradir}"varargs.h +Echo "#define __va_list__" >>"{extradir}"varargs.h +Echo "typedef char *va_list;" >>"{extradir}"varargs.h +Echo "#endif" >>"{extradir}"varargs.h +Echo "#define va_dcl int va_alist;" >>"{extradir}"varargs.h +Echo "#define va_start(list) list = (char *) &va_alist" >>"{extradir}"varargs.h +Echo "#define va_end(list)" >>"{extradir}"varargs.h +Echo "#define va_arg(list,mode) ((mode *)(list += sizeof(mode)))[-1]" >>"{extradir}"varargs.h + +Echo '/* empty */' >"{extradir}"'sys/param.h' + +Echo '/* empty */' >"{extradir}"'sys/file.h' + +Echo '/* Imitation stat.h */' >"{extradir}"'sys/stat.h' +Echo '#ifndef __SYS_STAT_H__' >>"{extradir}"'sys/stat.h' +Echo '#define __SYS_STAT_H__' >>"{extradir}"'sys/stat.h' +Echo '#include ' >>"{extradir}"'sys/stat.h' +Echo '#include ' >>"{extradir}"'sys/stat.h' +Echo 'struct stat {' >>"{extradir}"'sys/stat.h' +Echo ' dev_t st_dev;' >>"{extradir}"'sys/stat.h' +Echo ' ino_t st_ino;' >>"{extradir}"'sys/stat.h' +Echo ' mode_t st_mode;' >>"{extradir}"'sys/stat.h' +Echo ' short st_nlink;' >>"{extradir}"'sys/stat.h' +Echo ' uid_t st_uid;' >>"{extradir}"'sys/stat.h' +Echo ' gid_t st_gid;' >>"{extradir}"'sys/stat.h' +Echo ' dev_t st_rdev;' >>"{extradir}"'sys/stat.h' +Echo ' off_t st_size;' >>"{extradir}"'sys/stat.h' +Echo ' time_t st_atime;' >>"{extradir}"'sys/stat.h' +Echo ' int st_spare1;' >>"{extradir}"'sys/stat.h' +Echo ' time_t st_mtime;' >>"{extradir}"'sys/stat.h' +Echo ' int st_spare2;' >>"{extradir}"'sys/stat.h' +Echo ' time_t st_ctime;' >>"{extradir}"'sys/stat.h' +Echo ' int st_spare3;' >>"{extradir}"'sys/stat.h' +Echo ' long st_blksize;' >>"{extradir}"'sys/stat.h' +Echo ' long st_blocks;' >>"{extradir}"'sys/stat.h' +Echo ' long st_spare4[2];' >>"{extradir}"'sys/stat.h' +Echo '};' >>"{extradir}"'sys/stat.h' +Echo '#define S_IFDIR 0x0010' >>"{extradir}"'sys/stat.h' +Echo '#define S_IFMT 0x0020' >>"{extradir}"'sys/stat.h' +Echo '#define S_IREAD 0x0040' >>"{extradir}"'sys/stat.h' +Echo '#define S_IWRITE 0x0080' >>"{extradir}"'sys/stat.h' +Echo '#define S_IEXEC 0x0100' >>"{extradir}"'sys/stat.h' +Echo 'int stat (char *path, struct stat *buf);' >>"{extradir}"'sys/stat.h' +Echo 'int fstat(int, struct stat *);' >>"{extradir}"'sys/stat.h' +Echo '#endif /* __SYS_STAT_H___ */' >>"{extradir}"'sys/stat.h' diff --git a/mpw-configure b/mpw-configure index 706c8ebce93..87863e2f473 100644 --- a/mpw-configure +++ b/mpw-configure @@ -76,11 +76,15 @@ If "`Exists "{srcdir}"mpw-xconfig.in`" != "" End If If "`Exists "{srcdir}"mpw-make.in`" != "" - Echo "srcroot = " {srcroot} > "{objdir}"Makefile.tem - Echo "topsrcdir = " {srcroot} > "{objdir}"Makefile.tem + Echo "# This Makefile produced by mpw-configure. Changes may get lost!" > "{objdir}"Makefile.tem + Echo "srcroot = " {srcroot} >> "{objdir}"Makefile.tem + Echo "topsrcdir = " {srcroot} >> "{objdir}"Makefile.tem Echo "srcdir = " {srcdir} >> "{objdir}"Makefile.tem Echo "target_canonical = " {target_canonical} >> "{objdir}"Makefile.tem Echo "mdname = " {mdname} >> "{objdir}"Makefile.tem + Echo "host_makefile_frag = " >> "{objdir}"Makefile.tem + Echo "target_makefile_frag = " >> "{objdir}"Makefile.tem + mpw-7to8 "{srcroot}"config:mpw-mh-mpw >>"{objdir}"Makefile.tem mpw-7to8 "{srcdir}"mpw-make.in >>"{objdir}"Makefile.tem MoveIfChange "{objdir}"Makefile.tem "{objdir}"Makefile If {verify} == 1