summaryrefslogtreecommitdiff
path: root/pptpd-1.3.3/version
diff options
context:
space:
mode:
authorKozlov Dmitry <dima@server>2010-08-03 13:28:53 +0400
committerKozlov Dmitry <dima@server>2010-08-03 13:28:53 +0400
commit5a2d6079eba1c7e2a9479cb10d714b5a97bbfe4f (patch)
treee72134e47e1491580af15e3eccbba451f13fdd42 /pptpd-1.3.3/version
parentba8e1a64e75930a161afac9048e7d03b7f880644 (diff)
downloadaccel-ppp-5a2d6079eba1c7e2a9479cb10d714b5a97bbfe4f.tar.gz
accel-ppp-5a2d6079eba1c7e2a9479cb10d714b5a97bbfe4f.zip
initiating work on accel-pptpd, replacement of modified poptop
Diffstat (limited to 'pptpd-1.3.3/version')
-rwxr-xr-xpptpd-1.3.3/version28
1 files changed, 0 insertions, 28 deletions
diff --git a/pptpd-1.3.3/version b/pptpd-1.3.3/version
deleted file mode 100755
index 9020996..0000000
--- a/pptpd-1.3.3/version
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#
-# Grab current version number from configure.in and emit on stdout
-#
-# $Id: version,v 1.1.1.1 2002/06/21 08:52:02 fenix_nl Exp $
-
-VER=`grep AM_INIT_AUTOMAKE configure.in | awk -F'[(),]' '{print $3}'`
-
-if [ "$1" == "-VERSION" ]
-then
- echo $VER | awk -F'.' '{print $1}'
- exit
-fi
-
-if [ "$1" == "-PATCHLEVEL" ]
-then
- echo $VER | awk -F'.' '{print $2}'
- exit
-fi
-
-if [ "$1" == "-SUBLEVEL" ]
-then
- echo $VER | awk -F'.' '{print $3}'
- exit
-fi
-
-echo $VER
-exit