summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-03-01 00:44:34 +0000
committerChristian Pointner <equinox@anytun.org>2009-03-01 00:44:34 +0000
commit003104d31a4fa5eeb44d06456e5d309df2b7eead (patch)
tree0d689bb9458391a454b5e926ffaaec20252c086b
parentfixed prefix length at example post-up scripts (diff)
tabs to spaces
-rwxr-xr-xsrc/configure22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/configure b/src/configure
index a5c8173..f98c763 100755
--- a/src/configure
+++ b/src/configure
@@ -108,26 +108,26 @@ done
rm -f include.mk
case $TARGET in
- Linux)
- rm -rf tun.c
- ln -sf linux/tun.c
+ Linux)
+ rm -rf tun.c
+ ln -sf linux/tun.c
echo "loading Linux specific TUN Device"
LDFLAGS=$LDFLAGS" -ldl"
- ;;
- OpenBSD|FreeBSD|NetBSD)
- rm -rf tun.c
- ln -sf bsd/tun.c
+ ;;
+ OpenBSD|FreeBSD|NetBSD)
+ rm -rf tun.c
+ ln -sf bsd/tun.c
echo "loading BSD specific TUN Device"
CFLAGS=$CFLAGS' -I/usr/local/include'
LDFLAGS=$LDFLAGS' -L/usr/local/lib'
if [ "$TARGET" == 'OpenBSD' ]; then
V4_MAPPED=0
fi
- ;;
- *)
- echo "Plattform not supported"
+ ;;
+ *)
+ echo "Plattform not supported"
exit 1;
- ;;
+ ;;
esac