Skip to content

Commit

Permalink
NetBSD 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
itojun committed Sep 13, 2001
1 parent 48a2ca7 commit fc3aec5
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 5 deletions.
33 changes: 33 additions & 0 deletions netbsd/sys/arch/alpha/compile/build_all
@@ -0,0 +1,33 @@
#!/bin/sh -
#
# $NetBSD: build_all,v 1.7 1997/08/12 06:08:21 cgd Exp $

cflist=`cd ../conf ; find . -type f ! -name "*[a-z]*" ! -name ".*" | \
sed -e 's,^\./,,'`

docmd()
{

echo " ===> $*"
# echo " eval ($*)"
eval "($*)"
echo " <==="
}

docf()
{
echo "===> $1"
(
docmd "cd ../conf ; config $cf"
cd $cf
docmd "time make -k clean"
docmd "time make -k depend"
docmd "time make -k"
)
echo "<==="
echo ""
}

for cf in $cflist; do
docf $cf
done
33 changes: 33 additions & 0 deletions netbsd/sys/arch/alpha/compile/rebuild_all
@@ -0,0 +1,33 @@
#!/bin/sh -
#
# $NetBSD: rebuild_all,v 1.7 1997/08/12 06:08:22 cgd Exp $

cflist=`cd ../conf ; find . -type f ! -name "*[a-z]*" ! -name ".*" | \
sed -e 's,^\./,,'`

docmd()
{

echo " ===> $*"
# echo " eval ($*)"
eval "($*)"
echo " <==="
}

docf()
{
echo "===> $1"
(
# docmd "cd ../conf ; config $cf"
cd $cf
# docmd "time make -k clean"
# docmd "time make -k depend"
docmd "time make -k"
)
echo "<==="
echo ""
}

for cf in $cflist; do
docf $cf
done
4 changes: 2 additions & 2 deletions netbsd/sys/arch/amiga/dev/grf_cl.c
@@ -1,4 +1,4 @@
/* $NetBSD: grf_cl.c,v 1.25 1999/06/29 19:51:28 is Exp $ */
/* $NetBSD: grf_cl.c,v 1.25.12.1 2001/08/16 16:52:36 tv Exp $ */

/*
* Copyright (c) 1997 Klaus Burkert
Expand Down Expand Up @@ -905,7 +905,7 @@ cl_setspriteinfo(gp, data)

if (data->set & GRFSPRSET_SHAPE) {

short dsx, dsy, i;
unsigned short dsx, dsy, i;
unsigned long *di, *dm, *si, *sm;
unsigned long ssi[128], ssm[128];
struct grf_position gpos;
Expand Down
6 changes: 3 additions & 3 deletions netbsd/sys/arch/amiga/dev/grfioctl.h
@@ -1,4 +1,4 @@
/* $NetBSD: grfioctl.h,v 1.13 1997/07/29 17:54:11 veego Exp $ */
/* $NetBSD: grfioctl.h,v 1.13.30.1 2001/08/16 16:52:37 tv Exp $ */

/*
* Copyright (c) 1988 University of Utah.
Expand Down Expand Up @@ -147,8 +147,8 @@ struct grfvideo_mode {
* Maxium value of "index" can be deduced from grfinfo->gd_colors.
*/
struct grf_colormap {
int index; /* start at red[index],green[index],blue[index] */
int count; /* till < red[index+count],... */
unsigned int index; /* start at red[index],green[index],blue[index] */
unsigned int count; /* till < red[index+count],... */
u_char *red;
u_char *green;
u_char *blue;
Expand Down

0 comments on commit fc3aec5

Please sign in to comment.