/[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 477 - (hide annotations)
Sat Oct 4 12:24:56 2003 UTC (20 years, 8 months ago) by matthewc
File size: 7123 byte(s)
Updates to Sun audio support (from Michael Gernoth).

1 matty 30 #!/bin/sh
2     #
3     # rdesktop: A Remote Desktop Protocol client
4     # configure script
5 matthewc 207 # Copyright (C) Matthew Chapman 1999-2002
6 matty 30 #
7    
8 matthewc 202 echo "rdesktop build configuration script"
9     echo
10    
11 matty 30 echo "# Generated by $0 $*" >Makeconf
12    
13 matthewc 156
14 matthewc 189 # Process command line options
15 matthewc 156
16 matthewc 298 cflags='-DKEYMAP_PATH=\"$(KEYMAP_PATH)\"'
17     ldflags=''
18 matthewc 221 rpath=
19 matthewc 156
20 matty 30 for arg in $*; do
21 matthewc 220 optarg=`echo $arg | sed 's/[-a-z]*=//'`
22 matty 30 case $arg in
23     --prefix=*)
24 matthewc 156 echo "prefix = $optarg" >>Makeconf
25 matty 30 ;;
26     --exec-prefix=*)
27 matthewc 156 echo "exec_prefix = $optarg" >>Makeconf
28 matty 30 ;;
29     --bindir=*)
30 matthewc 156 echo "bindir = $optarg" >>Makeconf
31 matty 30 ;;
32     --mandir=*)
33 matthewc 156 echo "mandir = $optarg" >>Makeconf
34 matty 30 ;;
35 astrand 98 --sharedir=*)
36 matthewc 156 echo "datadir = $optarg" >>Makeconf
37 astrand 98 ;;
38 matthewc 220 --with-x*)
39     extraxdir=$optarg
40     ;;
41 matty 32 --with-openssl*)
42 matthewc 220 extrassldir=$optarg
43 matty 32 ;;
44     --without-openssl*)
45 astrand 267 withoutopenssl=yes
46 matty 32 ;;
47 matthewc 220 --with-egd-socket=*)
48     extraegdpath=$optarg
49     ;;
50 astrand 333 --with-libvncserver)
51     withvncserver=yes
52     ;;
53     --with-libvncserver-config=*)
54     vncserverconfig=$optarg
55     ;;
56 astrand 63 --with-debug)
57 matthewc 189 cflags="$cflags -g -DWITH_DEBUG"
58 matty 30 ;;
59 astrand 63 --with-debug-kbd)
60 matthewc 189 cflags="$cflags -g -DWITH_DEBUG_KBD"
61 astrand 63 ;;
62 forsberg 341 --with-debug-rdp5)
63     cflags="$cflags -g -DWITH_DEBUG_RDP5"
64     ;;
65 forsberg 403 --with-debug-clipboard)
66     cflags="$cflags -g -DWITH_DEBUG_CLIPBOARD"
67     ;;
68 matty 30 --without-debug*)
69     ;;
70     *)
71     echo "Target directories:"
72 matthewc 220 echo " --prefix=PREFIX location for architecture-independent files"
73     echo " --exec-prefix=EPREFIX location for architecture-dependent files"
74     echo " --bindir=BINDIR location for program binaries [EPREFIX/bin]"
75     echo " --mandir=MANDIR location for man pages [PREFIX/man]"
76     echo " --sharedir=SHAREDIR location for architecture-independent shared files [PREFIX/share/rdesktop]"
77 matty 30 echo
78     echo "Build configuration:"
79 matthewc 220 echo " --with-x=DIR look for X Window System at DIR/include, DIR/lib"
80     echo " --with-openssl=DIR look for OpenSSL at DIR/include, DIR/lib"
81 astrand 267 echo " --without-openssl use in-tree crypto, even if OpenSSL is available"
82 matthewc 220 echo " --with-egd-socket=PATH look for Entropy Gathering Daemon socket at PATH"
83 astrand 333 echo " --with-libvncserver make rdp2vnc"
84     echo " --with-libvncserver-config=CMD"
85     echo " use CMD as libvncserver-config"
86 matthewc 220 echo " --with-debug enable protocol debugging output"
87     echo " --with-debug-kbd enable debugging of keyboard handling"
88 forsberg 403 echo " --with-debug-rdp5 enable debugging of RDP5 code"
89     echo " --with-debug-clipboard enable debugging of clipboard code"
90 matty 30 echo
91     rm -f Makeconf
92     exit 1
93     ;;
94     esac
95     done
96    
97 matthewc 189
98 matthewc 258 # Find compiler
99    
100     compilers="$CC gcc cc"
101    
102     for compiler in $compilers; do
103     if [ -x "`which $compiler`" ]; then
104     cc=$compiler
105     break
106     fi
107     done
108    
109     if [ -z "$cc" ]; then
110     echo "ERROR: could not find a C compiler (tried: $compilers)"
111     echo "You probably want to install gcc"
112     exit 1
113     fi
114    
115     echo "CC = $cc" >>Makeconf
116    
117     if $cc -v 2>&1 |grep '^gcc' >/dev/null; then
118     cflags="$cflags -Wall -O2"
119     else
120     cflags="$cflags -O"
121     fi
122    
123    
124 matthewc 189 # Find X installation
125    
126 matthewc 220 xdirs="$extraxdir /usr/X11R6 /usr/X11 /usr/openwin /usr /usr/local/X11R6 /usr/local/X11 /usr/local"
127 matthewc 189
128     for dir in $xdirs; do
129     if [ -f $dir/include/X11/Xlib.h ]; then
130     xdir=$dir
131     break
132     fi
133     done
134    
135     if [ -z "$xdir" ]; then
136     echo "ERROR: could not find X Window System headers"
137 matthewc 220 echo "(searched for include/X11/Xlib.h in: $xdirs)"
138 matthewc 189
139     # additional helpful information for Linux users
140 matthewc 451 if [ -f /etc/redhat-release ]; then
141 matthewc 189 echo You probably need to install the XFree86-devel package
142     elif [ -f /etc/debian_version ]; then
143     echo You probably need to install the xlibs-dev package
144     fi
145     exit 1
146     fi
147    
148 matthewc 202 echo "X Window System:"
149     echo " includes $xdir/include"
150     echo " libraries $xdir/lib"
151     echo
152    
153 matthewc 189 if [ $xdir != "/usr" ]; then
154     cflags="$cflags -I$xdir/include"
155     ldflags="$ldflags -L$xdir/lib"
156 matthewc 221 rpath="$rpath:$xdir/lib"
157 matthewc 189 fi
158    
159 astrand 333 ldflags="$ldflags"
160     targets="$targets rdesktop"
161 matthewc 189
162 astrand 267 if [ -z "$withoutopenssl" ]; then
163     # Find OpenSSL installation if available
164     ssldirs="$extrassldir /usr/openssl /usr/ssl /usr /usr/local/openssl /usr/local/ssl /usr/local"
165    
166     for dir in $ssldirs; do
167     if [ -f $dir/include/openssl/rc4.h ]; then
168     ssldir=$dir
169     break
170     fi
171     done
172    
173     if [ -z "$ssldir" ]; then
174     echo "WARNING: could not find OpenSSL headers"
175     echo "(searched for include/openssl/rc4.h in: $ssldirs)"
176     echo "Using in-tree crypto; installing OpenSSL is recommended."
177     echo
178     else
179     echo "OpenSSL:"
180     echo " includes $ssldir/include"
181     echo " libraries $ssldir/lib"
182     echo
183    
184     echo "CRYPTOBJ =" >>Makeconf
185    
186     if [ $ssldir != "/usr" ]; then
187     cflags="$cflags -I$ssldir/include"
188     ldflags="$ldflags -L$ssldir/lib"
189     rpath="$rpath:$ssldir/lib"
190     fi
191    
192     cflags="$cflags -DWITH_OPENSSL"
193     ldflags="$ldflags -lcrypto"
194 matthewc 189 fi
195     fi
196 astrand 267
197 astrand 333 if [ ! -z "$withvncserver" ]; then
198     if [ -z "$vncserverconfig" ]; then
199     vncserverconfig=libvncserver-config
200     fi
201 matthewc 189
202 astrand 333 echo "VNCINC=`$vncserverconfig --cflags`" >> Makeconf
203     echo "LDVNC=`$vncserverconfig --libs`" >> Makeconf
204     echo "CCLD=`$vncserverconfig --link`" >> Makeconf
205     echo >> Makeconf
206     targets="$targets rdp2vnc"
207    
208     echo "Found libvncserver: Building rdp2vnc"
209     fi
210    
211    
212 matthewc 220 # Find EGD socket if we don't have /dev/urandom or /dev/random
213 matthewc 221
214 matthewc 220 if [ ! -c /dev/random -a ! -c /dev/urandom ]; then
215     egdpaths="$extraegdpath /var/run/egd-pool /dev/egd-pool /etc/egd-pool /etc/entropy"
216    
217     for path in $egdpaths; do
218     # -e isn't portable, so we use -r
219     if [ -r $path ]; then
220     egdpath=$path
221     break
222     fi
223     done
224    
225     if [ -z "$egdpath" ]; then
226     echo "WARNING: could not find /dev/urandom, /dev/random or Entropy Gathering Daemon (EGD) socket"
227     echo "(searched: $egdpaths)"
228     echo "Session keys may be less secure; installing a system randomness source is recommended."
229     echo
230     else
231     echo "Entropy Gathering Daemon (EGD):"
232     echo " socket $egdpath"
233     echo
234     cflags="$cflags -DEGD_SOCKET=\\\"$egdpath\\\""
235     fi
236     fi
237    
238 matthewc 474 # Check for OSS sound support
239 matthewc 221
240 matthewc 474 if [ -f /usr/include/sys/soundcard.h ]; then
241     echo Sound support enabled: Open Sound System
242     echo
243     echo "SOUNDOBJ = rdpsnd.o rdpsnd_oss.o" >>Makeconf
244     cflags="$cflags -DWITH_RDPSND"
245 matthewc 477 elif [ -f /usr/include/sys/audioio.h ]; then
246 matthewc 476 echo Sound support enabled: Sun
247     echo
248     echo "SOUNDOBJ = rdpsnd.o rdpsnd_sun.o" >>Makeconf
249     cflags="$cflags -DWITH_RDPSND"
250 matthewc 474 else
251 matthewc 476 echo "WARNING: sound support disabled (no /usr/include/sys/soundcard.h or /usr/include/sys/audio.h)"
252     echo "Currently supported systems are Open Sound System and Sun"
253 matthewc 474 echo
254     fi
255    
256    
257 matthewc 221 # Platform-specific options
258    
259     # strip leading colon from rpath
260     rpath=`echo $rpath |sed 's/^://'`
261    
262     case `uname -s` in
263     SunOS)
264     ldflags="$ldflags -lsocket -lnsl -R$rpath"
265     ;;
266     OSF1)
267     ldflags="$ldflags -Wl,-rpath,$rpath"
268     ;;
269     esac
270    
271    
272 matthewc 298 echo "CFLAGS = $cflags" >>Makeconf
273     echo "LDFLAGS = $ldflags" >>Makeconf
274 astrand 333 echo "TARGETS = $targets" >>Makeconf
275 matthewc 189
276 matty 30 echo "configure complete - now run make"
277 matthewc 221

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26