summaryrefslogtreecommitdiff
path: root/src/configure
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-11-11 02:36:53 +0000
committerChristian Pointner <equinox@anytun.org>2009-11-11 02:36:53 +0000
commit6ea80ce71f13d82b4ad8448558b146b2874d1f1a (patch)
tree9a219428fa9de3dda1e939bd8169b37fea6e6c16 /src/configure
parentupdated ChangeLog (new svn location) (diff)
fixed install target
removed user installation for install target
Diffstat (limited to 'src/configure')
-rwxr-xr-xsrc/configure13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/configure b/src/configure
index 5ba351a..51937f6 100755
--- a/src/configure
+++ b/src/configure
@@ -47,8 +47,6 @@ PREFIX='/usr/local'
SBINDIR=''
ETCDIR=''
MANDIR=''
-USERNAME='uanytun'
-USERHOME='/var/run/uanytun'
print_usage() {
echo "configure --help print this"
@@ -57,8 +55,6 @@ print_usage() {
echo " --sbindir=<DIR> the path to the sbin directory (default: $PREFIX/sbin)"
echo " --sysconfdir=<DIR> the path to the system configuration directory (default: $PREFIX/etc"
echo " --mandir=<DIR> the path to the system man pages (default: $PREFIX/share/man)"
- echo " --username=<USERNAME> create this user when installing (default: uanytun)"
- echo " --userhome=<PATH> the home directory of the user to be created (default: /var/run/uanytun)"
echo " --use-ssl-crypto use ssl crypto library instead of libgcrypt"
echo " --no-crypto disable crypto at all (only NULL cipher)"
echo " --disable-passphrase disable master key and salt passphrase"
@@ -86,12 +82,6 @@ do
--mandir=*)
MANDIR=${arg#--mandir=}
;;
- --username=*)
- USERNAME=${arg#--username=}
- ;;
- --userhome=*)
- USERHOME=${arg#--userhome=}
- ;;
--use-ssl-crypto)
CRYPTO_LIB='ssl'
;;
@@ -194,13 +184,12 @@ TARGET := $TARGET
CC := gcc
CFLAGS := $CFLAGS
LDFLAGS := $LDFLAGS
+STRIP := strip
PREFIX := $PREFIX
SBINDIR := $SBINDIR
ETCDIR := $ETCDIR
MANDIR := $MANDIR
-USERNAME := $USERNAME
-USERHOME := $USERHOME
EOF
exit 0