aboutsummaryrefslogtreecommitdiff
path: root/src/libdraw
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2006-06-25 19:00:38 +0000
committerrsc <devnull@localhost>2006-06-25 19:00:38 +0000
commitf97f53744067400bec4dbd7aae5eafde54e99b7f (patch)
tree5d0c04c2af6a5c26b5c750c85a191c614e3b1d7e /src/libdraw
parent257fb6261eba6026e127e1a42e06b8b2d9c3b722 (diff)
downloadplan9port-f97f53744067400bec4dbd7aae5eafde54e99b7f.tar.gz
plan9port-f97f53744067400bec4dbd7aae5eafde54e99b7f.tar.bz2
plan9port-f97f53744067400bec4dbd7aae5eafde54e99b7f.zip
bye
Diffstat (limited to 'src/libdraw')
-rw-r--r--src/libdraw/mkwsysrules.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/libdraw/mkwsysrules.sh b/src/libdraw/mkwsysrules.sh
deleted file mode 100644
index edbd5834..00000000
--- a/src/libdraw/mkwsysrules.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-[ -f $PLAN9/config ] && . $PLAN9/config
-
-if [ "x$X11" = "x" ]; then
- if [ -d /usr/X11R6 ]; then
- X11=/usr/X11R6
- elif [ -d /usr/local/X11R6 ]; then
- X11=/usr/local/X11R6
- elif [ -d /usr/X ]; then
- X11=/usr/X
- elif [ -d /usr/openwin ]; then # for Sun
- X11=/usr/openwin
- else
- X11=noX11dir
- fi
-fi
-
-if [ "x$WSYSTYPE" = "x" ]; then
- if [ -d "$X11" ]; then
- WSYSTYPE=x11
- else
- WSYSTYPE=nowsys
- fi
-fi
-
-if [ "x$WSYSTYPE" = "xx11" -a "x$X11H" = "x" ]; then
- if [ -d "$X11/include" ]; then
- X11H="-I$X11/include"
- else
- X11H=""
- fi
-fi
-
-
-echo 'WSYSTYPE='$WSYSTYPE
-echo 'X11='$X11
-
-if [ $WSYSTYPE = x11 ]; then
- echo 'CFLAGS=$CFLAGS '$X11H
- echo 'HFILES=$HFILES $XHFILES'
-fi
-