diff options
author | Guido van Rossum <guido@python.org> | 2001-04-11 20:58:20 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-04-11 20:58:20 +0000 |
commit | 59d566f020bbc4e6235f12b8c4bb3d0ba5c40b20 (patch) | |
tree | 529f5c96f2b45b56130683f650e7741b00fec9a7 /Lib/plat-unixware7/regen | |
parent | 84e0e4b35e8ad492f4e94238db96e3428df8bb61 (diff) | |
download | cpython-59d566f020bbc4e6235f12b8c4bb3d0ba5c40b20.tar.gz |
Unixware 7 support by Billy G. Allie (SF patch 413011)
Diffstat (limited to 'Lib/plat-unixware7/regen')
-rwxr-xr-x | Lib/plat-unixware7/regen | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Lib/plat-unixware7/regen b/Lib/plat-unixware7/regen new file mode 100755 index 0000000000..725b230f41 --- /dev/null +++ b/Lib/plat-unixware7/regen @@ -0,0 +1,12 @@ +#! /bin/sh +case `uname -sr` in +UnixWare*) ;; +*) echo Probably not on a UnixWare system 1>&2 + exit 1;; +esac +set -v +h2py /usr/include/sys/fcntl.h +h2py /usr/include/sys/socket.h +h2py -i '(u_long)' /usr/include/netinet/in.h +h2py /usr/include/termios.h +h2py /usr/include/sys/stropts.h |