/[rdesktop]/sourceforge.net/tags/RDESKTOP-1-3-1/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

Diff of /sourceforge.net/tags/RDESKTOP-1-3-1/rdesktop/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 202 by matthewc, Thu Sep 26 14:01:42 2002 UTC revision 474 by matthewc, Tue Sep 30 09:11:08 2003 UTC
# Line 2  Line 2 
2  #  #
3  # rdesktop: A Remote Desktop Protocol client  # rdesktop: A Remote Desktop Protocol client
4  # configure script  # configure script
5  # Copyright (C) Matthew Chapman 1999-2001  # Copyright (C) Matthew Chapman 1999-2002
6  #  #
7    
8  echo "rdesktop build configuration script"  echo "rdesktop build configuration script"
# Line 13  echo "# Generated by $0 $*" >Makeconf Line 13  echo "# Generated by $0 $*" >Makeconf
13    
14  # Process command line options  # Process command line options
15    
16  cflags=  cflags='-DKEYMAP_PATH=\"$(KEYMAP_PATH)\"'
17  ldflags=  ldflags=''
18    rpath=
19    
20  for arg in $*; do  for arg in $*; do
21  optarg=`echo $arg | sed 's/[-a-z]*=//'`      optarg=`echo $arg | sed 's/[-a-z]*=//'`
22  case $arg in  case $arg in
23    --prefix=*)    --prefix=*)
24      echo "prefix      = $optarg" >>Makeconf      echo "prefix      = $optarg" >>Makeconf
# Line 34  case $arg in Line 35  case $arg in
35    --sharedir=*)    --sharedir=*)
36      echo "datadir     = $optarg" >>Makeconf      echo "datadir     = $optarg" >>Makeconf
37      ;;      ;;
38      --with-x*)
39        extraxdir=$optarg
40        ;;
41    --with-openssl*)    --with-openssl*)
42        extrassldir=$optarg
43      ;;      ;;
44    --without-openssl*)    --without-openssl*)
45        withoutopenssl=yes
46        ;;
47      --with-egd-socket=*)
48        extraegdpath=$optarg
49        ;;
50      --with-libvncserver)
51        withvncserver=yes
52        ;;
53      --with-libvncserver-config=*)
54        vncserverconfig=$optarg
55      ;;      ;;
56    --with-debug)    --with-debug)
57      cflags="$cflags -g -DWITH_DEBUG"      cflags="$cflags -g -DWITH_DEBUG"
# Line 44  case $arg in Line 59  case $arg in
59    --with-debug-kbd)    --with-debug-kbd)
60      cflags="$cflags -g -DWITH_DEBUG_KBD"      cflags="$cflags -g -DWITH_DEBUG_KBD"
61      ;;      ;;
62      --with-debug-rdp5)
63        cflags="$cflags -g -DWITH_DEBUG_RDP5"
64        ;;
65      --with-debug-clipboard)
66        cflags="$cflags -g -DWITH_DEBUG_CLIPBOARD"
67        ;;
68    --without-debug*)    --without-debug*)
69      ;;      ;;
70    *)    *)
71      echo "Target directories:"      echo "Target directories:"
72      echo " --prefix=PREFIX        location for architecture-independent files"      echo " --prefix=PREFIX         location for architecture-independent files"
73      echo " --exec-prefix=EPREFIX  location for architecture-dependent files"      echo " --exec-prefix=EPREFIX   location for architecture-dependent files"
74      echo " --bindir=BINDIR        location for program binaries [EPREFIX/bin]"      echo " --bindir=BINDIR         location for program binaries [EPREFIX/bin]"
75      echo " --mandir=MANDIR        location for man pages [PREFIX/man]"      echo " --mandir=MANDIR         location for man pages [PREFIX/man]"
76      echo " --sharedir=SHAREDIR    location for architecture-independent shared files [PREFIX/share/rdesktop]"      echo " --sharedir=SHAREDIR     location for architecture-independent shared files [PREFIX/share/rdesktop]"
77      echo      echo
78      echo "Build configuration:"      echo "Build configuration:"
79      echo " --with-debug           enable protocol debugging output"      echo " --with-x=DIR            look for X Window System at DIR/include, DIR/lib"
80      echo " --with-debug-kbd       enable debugging of keyboard handling"      echo " --with-openssl=DIR      look for OpenSSL at DIR/include, DIR/lib"
81        echo " --without-openssl       use in-tree crypto, even if OpenSSL is available"
82        echo " --with-egd-socket=PATH  look for Entropy Gathering Daemon socket at PATH"
83        echo " --with-libvncserver     make rdp2vnc"
84        echo " --with-libvncserver-config=CMD"
85        echo "                         use CMD as libvncserver-config"
86        echo " --with-debug            enable protocol debugging output"
87        echo " --with-debug-kbd        enable debugging of keyboard handling"
88        echo " --with-debug-rdp5       enable debugging of RDP5 code"
89        echo " --with-debug-clipboard  enable debugging of clipboard code"
90      echo      echo
91      rm -f Makeconf      rm -f Makeconf
92      exit 1      exit 1
# Line 65  esac Line 95  esac
95  done  done
96    
97    
98  # Platform-specific options  # Find compiler
99    
100  need_runpath=no  compilers="$CC gcc cc"
101    
102  case `uname -s` in  for compiler in $compilers; do
103    SunOS)      if [ -x "`which $compiler`" ]; then
104      ldflags="$ldflags -lsocket -lnsl"          cc=$compiler
105      need_runpath=yes          break
106      ;;      fi
107  esac  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  # Find X installation  # Find X installation
125    
126  xdirs="/usr/X11R6 /usr/X11 /usr/openwin /usr /usr/local/X11R6 /usr/local/X11 /usr/local"  xdirs="$extraxdir /usr/X11R6 /usr/X11 /usr/openwin /usr /usr/local/X11R6 /usr/local/X11 /usr/local"
127    
128  for dir in $xdirs; do  for dir in $xdirs; do
129      if [ -f $dir/include/X11/Xlib.h ]; then      if [ -f $dir/include/X11/Xlib.h ]; then
# Line 90  done Line 134  done
134    
135  if [ -z "$xdir" ]; then  if [ -z "$xdir" ]; then
136      echo "ERROR: could not find X Window System headers"      echo "ERROR: could not find X Window System headers"
137      echo "(searched for include/X11/Xlib.h in $xdirs)"      echo "(searched for include/X11/Xlib.h in: $xdirs)"
138    
139      # additional helpful information for Linux users      # additional helpful information for Linux users
140      if [ -f /etc/redhat_release ]; then      if [ -f /etc/redhat-release ]; then
141        echo You probably need to install the XFree86-devel package        echo You probably need to install the XFree86-devel package
142      elif [ -f /etc/debian_version ]; then      elif [ -f /etc/debian_version ]; then
143        echo You probably need to install the xlibs-dev package        echo You probably need to install the xlibs-dev package
# Line 109  echo Line 153  echo
153  if [ $xdir != "/usr" ]; then  if [ $xdir != "/usr" ]; then
154      cflags="$cflags -I$xdir/include"      cflags="$cflags -I$xdir/include"
155      ldflags="$ldflags -L$xdir/lib"      ldflags="$ldflags -L$xdir/lib"
156      if [ $need_runpath = "yes" ]; then      rpath="$rpath:$xdir/lib"
157          ldflags="$ldflags -R$xdir/lib"  fi
158    
159    ldflags="$ldflags"
160    targets="$targets rdesktop"
161    
162    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      fi      fi
195  fi  fi
196        
197    if [ ! -z "$withvncserver" ]; then
198        if [ -z "$vncserverconfig" ]; then
199            vncserverconfig=libvncserver-config
200        fi
201    
202        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  ldflags="$ldflags -lX11"      echo "Found libvncserver: Building rdp2vnc"
209    fi
210    
211    
212  # Find OpenSSL installation if available  # Find EGD socket if we don't have /dev/urandom or /dev/random
213    
214  ssldirs="/usr/openssl /usr/ssl /usr /usr/local/openssl /usr/local/ssl /usr/local"  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 dir in $ssldirs; do      for path in $egdpaths; do
218      if [ -f $dir/include/openssl/rc4.h ]; then          # -e isn't portable, so we use -r
219          ssldir=$dir          if [ -r $path ]; then
220          break              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      fi
236  done  fi
237    
238  if [ -z "$ssldir" ]; then  # Check for OSS sound support
239      echo "WARNING: could not find OpenSSL headers"  
240      echo "(searched for include/openssl/rc4.h in $ssldirs)"  if [ -f /usr/include/sys/soundcard.h ]; then
241      echo "Using in-tree crypto; installing OpenSSL is recommended."      echo Sound support enabled: Open Sound System
242      echo      echo
243        echo "SOUNDOBJ    = rdpsnd.o rdpsnd_oss.o" >>Makeconf
244        cflags="$cflags -DWITH_RDPSND"
245  else  else
246      echo "OpenSSL:"      echo "WARNING: sound support disabled (no /usr/include/sys/soundcard.h)"
247      echo "  includes  $ssldir/include"      echo "Only Open Sound System audio is supported at present"
     echo "  libraries $ssldir/lib"  
248      echo      echo
249    fi
250    
     echo "CRYPTOBJ    =" >>Makeconf  
251    
252      if [ $ssldir != "/usr" ]; then  # Platform-specific options
         cflags="$cflags -I$ssldir/include"  
         ldflags="$ldflags -L$ssldir/lib"  
         if [ $need_runpath = "yes" ]; then  
             ldflags="$ldflags -R$ssldir/lib"  
         fi  
     fi  
253    
254      cflags="$cflags -DWITH_OPENSSL"  # strip leading colon from rpath
255      ldflags="$ldflags -lcrypto"  rpath=`echo $rpath |sed 's/^://'`
 fi  
256    
257    case `uname -s` in
258      SunOS)
259        ldflags="$ldflags -lsocket -lnsl -R$rpath"
260        ;;
261      OSF1)
262        ldflags="$ldflags -Wl,-rpath,$rpath"
263        ;;
264    esac
265    
266  echo "CFLAGS     += $cflags" >>Makeconf  
267  echo "LDFLAGS    += $ldflags" >>Makeconf  echo "CFLAGS      = $cflags" >>Makeconf
268    echo "LDFLAGS     = $ldflags" >>Makeconf
269    echo "TARGETS     = $targets" >>Makeconf
270    
271  echo "configure complete - now run make"  echo "configure complete - now run make"
272    

Legend:
Removed from v.202  
changed lines
  Added in v.474

  ViewVC Help
Powered by ViewVC 1.1.26