/[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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30 - (hide annotations)
Fri Sep 14 13:51:38 2001 UTC (22 years, 8 months ago) by matty
File size: 1179 byte(s)
Portability fixes, including elimination of variable argument macros.
Rudimentary configure script.
Miscellaneous cleanups.

1 matty 30 #!/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-debug*)
26     echo "CFLAGS += -g -DWITH_DEBUG" >>Makeconf
27     ;;
28     --without-debug*)
29     ;;
30     *)
31     echo "rdesktop build configuration script"
32     echo
33     echo "Target directories:"
34     echo " --prefix=PREFIX location for architecture-independent files"
35     echo " --exec-prefix=EPREFIX location for architecture-dependent files"
36     echo " --bindir=BINDIR location for program binaries [EPREFIX/bin]"
37     echo " --mandir=MANDIR location for man pages [PREFIX/man]"
38     echo
39     echo "Build configuration:"
40     echo " --with-debug enable debugging output"
41     echo
42     rm -f Makeconf
43     exit 1
44     ;;
45     esac
46     done
47    
48     echo "configure complete - now run make"

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26