/[rdesktop]/sourceforge.net/trunk/rdesktop/configure
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /sourceforge.net/trunk/rdesktop/configure

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32 - (show annotations)
Sat Sep 15 09:37:17 2001 UTC (22 years, 8 months ago) by matty
File size: 1437 byte(s)
Synced crypto/ with latest OpenSSL.
Moved to OpenSSL big number routines to resolve licensing issues
with current code (although they add more bloat).

1 #!/bin/sh
2 #
3 # rdesktop: A Remote Desktop Protocol client
4 # configure script
5 # Copyright (C) Matthew Chapman 1999-2001
6 #
7
8 echo "# Generated by $0 $*" >Makeconf
9
10 for arg in $*; do
11 optarg=`echo $arg | sed 's/[-a-z]*=//'`
12 case $arg in
13 --prefix=*)
14 echo "PREFIX = $optarg" >>Makeconf
15 ;;
16 --exec-prefix=*)
17 echo "EPREFIX = $optarg" >>Makeconf
18 ;;
19 --bindir=*)
20 echo "BINDIR = $optarg" >>Makeconf
21 ;;
22 --mandir=*)
23 echo "MANDIR = $optarg" >>Makeconf
24 ;;
25 --with-openssl*)
26 echo "CFLAGS += -DWITH_OPENSSL" >>Makeconf
27 echo "LDLIBS += -lcrypto" >>Makeconf
28 echo "CRYPTOBJ =" >>Makeconf
29 ;;
30 --without-openssl*)
31 ;;
32 --with-debug*)
33 echo "CFLAGS += -g -DWITH_DEBUG" >>Makeconf
34 ;;
35 --without-debug*)
36 ;;
37 *)
38 echo "rdesktop build configuration script"
39 echo
40 echo "Target directories:"
41 echo " --prefix=PREFIX location for architecture-independent files"
42 echo " --exec-prefix=EPREFIX location for architecture-dependent files"
43 echo " --bindir=BINDIR location for program binaries [EPREFIX/bin]"
44 echo " --mandir=MANDIR location for man pages [PREFIX/man]"
45 echo
46 echo "Build configuration:"
47 echo " --with-openssl use system OpenSSL libraries for crypto"
48 echo " --with-debug enable debugging output"
49 echo
50 rm -f Makeconf
51 exit 1
52 ;;
53 esac
54 done
55
56 echo "configure complete - now run make"

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26