* mpw-config.in: Add support for PowerMac host, add beginnings
of native support. * mpw-make.sed: Disable subdir recursion, edit out useless rule. * mac-xdep.c (Values.h): Don't include. (GestaltEqu.h): Include Gestalt.h instead. (do_mouse_down): Comment out control tracking, needs to be updated to use UPP before will work on PowerMac.
This commit is contained in:
parent
d5115c2bc6
commit
7bd447bae3
@ -1,3 +1,13 @@
|
|||||||
|
Thu Oct 26 22:02:27 1995 Stan Shebs <shebs@andros.cygnus.com>
|
||||||
|
|
||||||
|
* mpw-config.in: Add support for PowerMac host, add beginnings
|
||||||
|
of native support.
|
||||||
|
* mpw-make.sed: Disable subdir recursion, edit out useless rule.
|
||||||
|
* mac-xdep.c (Values.h): Don't include.
|
||||||
|
(GestaltEqu.h): Include Gestalt.h instead.
|
||||||
|
(do_mouse_down): Comment out control tracking, needs to be
|
||||||
|
updated to use UPP before will work on PowerMac.
|
||||||
|
|
||||||
Thu Oct 26 15:21:32 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
|
Thu Oct 26 15:21:32 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
|
||||||
|
|
||||||
* regex.h: Renamed to gnu-regex.h.
|
* regex.h: Renamed to gnu-regex.h.
|
||||||
@ -21,11 +31,13 @@ Tue Oct 24 18:30:18 1995 Jason Molenda (crash@phydeaux.cygnus.com)
|
|||||||
Tue Oct 24 12:26:14 1995 Stu Grossman (grossman@cygnus.com)
|
Tue Oct 24 12:26:14 1995 Stu Grossman (grossman@cygnus.com)
|
||||||
|
|
||||||
* monitor.c (monitor_expect_regexp): Same as monitor_expect, but
|
* monitor.c (monitor_expect_regexp): Same as monitor_expect, but
|
||||||
with the obvious extension. (monitor_read_memory_single): Use
|
with the obvious extension.
|
||||||
regexp for getmem.resp_delim because of parsing ambiguities caused
|
(monitor_read_memory_single): Use regexp for getmem.resp_delim
|
||||||
by certain monitors. (monitor_read_memory): Use new regexp stuff
|
because of parsing ambiguities caused by certain monitors.
|
||||||
to parse getmem.resp_delim.
|
(monitor_read_memory): Use new regexp stuff to parse
|
||||||
* monitor.h (struct memrw_cmd->resp_delim): Document this as a regexp.
|
getmem.resp_delim.
|
||||||
|
* monitor.h (struct memrw_cmd->resp_delim): Document this as a
|
||||||
|
regexp.
|
||||||
* sh3-rom.c: Finish off table. Use new regexp capability for
|
* sh3-rom.c: Finish off table. Use new regexp capability for
|
||||||
getmem commands.
|
getmem commands.
|
||||||
|
|
||||||
|
@ -23,7 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|||||||
#include "readline.h"
|
#include "readline.h"
|
||||||
#include "history.h"
|
#include "history.h"
|
||||||
|
|
||||||
#include <Values.h>
|
|
||||||
#include <Types.h>
|
#include <Types.h>
|
||||||
#include <Resources.h>
|
#include <Resources.h>
|
||||||
#include <QuickDraw.h>
|
#include <QuickDraw.h>
|
||||||
@ -45,7 +44,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|||||||
#include <Packages.h>
|
#include <Packages.h>
|
||||||
#include <Traps.h>
|
#include <Traps.h>
|
||||||
#include <Lists.h>
|
#include <Lists.h>
|
||||||
#include <GestaltEqu.h>
|
#include <Gestalt.h>
|
||||||
#include <PPCToolbox.h>
|
#include <PPCToolbox.h>
|
||||||
#include <AppleEvents.h>
|
#include <AppleEvents.h>
|
||||||
#include <StandardFile.h>
|
#include <StandardFile.h>
|
||||||
@ -542,7 +541,13 @@ do_mouse_down (WindowPtr win, EventRecord *event)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
#if 0 /* don't deal with right now */
|
||||||
|
#if 1 /* universal headers */
|
||||||
|
value = TrackControl (control, mouse, (ControlActionUPP) v_scroll_proc);
|
||||||
|
#else
|
||||||
value = TrackControl (control, mouse, (ProcPtr) v_scroll_proc);
|
value = TrackControl (control, mouse, (ProcPtr) v_scroll_proc);
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
# Configuration fragment for GDB.
|
# Configuration fragment for GDB.
|
||||||
|
|
||||||
|
If "{host_canonical}" =~ /m68k-apple-mpw/
|
||||||
forward-include "{srcdir}"config:m68k:xm-mpw.h xm.h
|
forward-include "{srcdir}"config:m68k:xm-mpw.h xm.h
|
||||||
|
|
||||||
forward-include "{srcdir}"config:m68k:xm-m68k.h 'm68k/xm-m68k.h'
|
Else If "{host_canonical}" =~ /powerpc-apple-mpw/
|
||||||
|
forward-include "{srcdir}"config:powerpc:xm-mpw.h xm.h
|
||||||
|
|
||||||
|
End If
|
||||||
|
|
||||||
Set xdepfiles '"{o}"mac-xdep.c.o'
|
Set xdepfiles '"{o}"mac-xdep.c.o'
|
||||||
|
|
||||||
@ -36,17 +40,27 @@ Else If "{target_canonical}" =~ /mips-idt-ecoff/
|
|||||||
Else If "{target_canonical}" =~ /sh-hitachi-hms/
|
Else If "{target_canonical}" =~ /sh-hitachi-hms/
|
||||||
forward-include "{srcdir}"config:sh:tm-sh.h tm.h
|
forward-include "{srcdir}"config:sh:tm-sh.h tm.h
|
||||||
Set tdepfiles '"{o}"sh-tdep.c.o'
|
Set tdepfiles '"{o}"sh-tdep.c.o'
|
||||||
|
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If "{target_canonical}" != "{host_canonical}"
|
If "{target_canonical}" =~ /m68k-apple-macos/
|
||||||
|
forward-include "{srcdir}"config:m68k:nm-macos.h nm.h
|
||||||
|
Set natdepfiles '"{o}"mac-nat.c'
|
||||||
|
|
||||||
|
Else If "{target_canonical}" =~ /powerpc-apple-macos/
|
||||||
|
forward-include "{srcdir}"config:powerpc:nm-macos.h nm.h
|
||||||
|
Set natdepfiles '"{o}"mac-nat.c'
|
||||||
|
|
||||||
|
Else
|
||||||
forward-include "{srcdir}"config:nm-empty.h nm.h
|
forward-include "{srcdir}"config:nm-empty.h nm.h
|
||||||
Set natdepfiles " "
|
Set natdepfiles ' '
|
||||||
|
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Echo '# From mpw-config.in' > "{o}"mk.tmp
|
Echo '# From mpw-config.in' > "{o}"mk.tmp
|
||||||
Echo "TDEPFILES = " {tdepfiles} >> "{o}"mk.tmp
|
Echo "TDEPFILES = " {tdepfiles} >> "{o}"mk.tmp
|
||||||
Echo "XDEPFILES = " {xdepfiles} >> "{o}"mk.tmp
|
Echo "XDEPFILES = " {xdepfiles} >> "{o}"mk.tmp
|
||||||
Echo "NATDEPFILES = " {nat_file} >> "{o}"mk.tmp
|
Echo "NATDEPFILES = " {natdepfiles} >> "{o}"mk.tmp
|
||||||
Echo "XM_ADD_FILES = " >> "{o}"mk.tmp
|
Echo "XM_ADD_FILES = " >> "{o}"mk.tmp
|
||||||
Echo "TM_ADD_FILES = " >> "{o}"mk.tmp
|
Echo "TM_ADD_FILES = " >> "{o}"mk.tmp
|
||||||
Echo "NAT_ADD_FILES = " >> "{o}"mk.tmp
|
Echo "NAT_ADD_FILES = " >> "{o}"mk.tmp
|
||||||
|
@ -130,3 +130,7 @@ readline_headers =\
|
|||||||
{MAKEPEF} gdb{PROG_EXT} -o gdb {MAKEPEF_TOOL_FLAGS} {MAKEPEF_FLAGS}\
|
{MAKEPEF} gdb{PROG_EXT} -o gdb {MAKEPEF_TOOL_FLAGS} {MAKEPEF_FLAGS}\
|
||||||
{REZ} "{s}"mac-gdb.r -o gdb -append -d PROG_NAME='"'gdb'"' -d VERSION_STRING='"'{version}'"'\
|
{REZ} "{s}"mac-gdb.r -o gdb -append -d PROG_NAME='"'gdb'"' -d VERSION_STRING='"'{version}'"'\
|
||||||
|
|
||||||
|
# Don't do any recursive subdir stuff.
|
||||||
|
/ subdir_do/s/{MAKE}/null-command/
|
||||||
|
|
||||||
|
/^config.status \\Option-f/,/^$/d
|
||||||
|
Loading…
Reference in New Issue
Block a user