Mercurial > hg > xemacs-beta
comparison configure.in @ 1696:7032283c28db
[xemacs-hg @ 2003-09-19 15:56:52 by youngs]
2003-09-20 Steve Youngs <youngs@xemacs.org>
* configure: Re-generate after Martin's configure.in patch.
2003-09-20 Martin Buchholz <martin@xemacs.org>
* configure.in: XEmacs failed to build on Solaris9.
Solaris9 comes with /usr/demo/SOUND, but no headers or libraries
therein.
author | youngs |
---|---|
date | Fri, 19 Sep 2003 15:56:54 +0000 |
parents | 6265c9c31f53 |
children | fca75a427ae3 |
comparison
equal
deleted
inserted
replaced
1695:eeb607577f17 | 1696:7032283c28db |
---|---|
4392 XE_ADD_OBJS(sunplay.o)]) | 4392 XE_ADD_OBJS(sunplay.o)]) |
4393 fi | 4393 fi |
4394 | 4394 |
4395 dnl Autodetect Sun native sound from SUNWaudmo package | 4395 dnl Autodetect Sun native sound from SUNWaudmo package |
4396 if test -z "$sound_found" -a -d "/usr/demo/SOUND"; then | 4396 if test -z "$sound_found" -a -d "/usr/demo/SOUND"; then |
4397 sound_found=yes | 4397 if test -d "/usr/demo/SOUND/include/multimedia"; then |
4398 XE_ADD_OBJS(sunplay.o) | 4398 sun_sound_cflags="-I/usr/demo/SOUND/include" |
4399 if test -d "/usr/demo/SOUND/include" | 4399 elif test -d "/usr/demo/SOUND/multimedia"; then |
4400 then sound_cflags="-I/usr/demo/SOUND/include" | 4400 sun_sound_cflags="-I/usr/demo/SOUND" |
4401 else sound_cflags="-I/usr/demo/SOUND" | |
4402 fi | 4401 fi |
4403 if test -z "$native_sound_lib" ; then | 4402 |
4404 if test -r "/usr/demo/SOUND/lib/libaudio.a" | 4403 if test -n "$native_sound_lib"; then |
4405 then native_sound_lib="/usr/demo/SOUND/lib/libaudio.a" | 4404 sun_sound_lib="$native_sound_lib" |
4406 else native_sound_lib="/usr/demo/SOUND/libaudio.a" | 4405 elif test -r "/usr/demo/SOUND/lib/libaudio.a"; then |
4407 fi | 4406 sun_sound_lib="/usr/demo/SOUND/lib/libaudio.a" |
4407 elif test -r "/usr/demo/SOUND/libaudio.a"; then | |
4408 sun_sound_lib="/usr/demo/SOUND/libaudio.a" | |
4409 fi | |
4410 | |
4411 if test -n "$sun_sound_cflags" -a -n "$sun_sound_lib"; then | |
4412 native_sound_lib="$sun_sound_lib" | |
4413 sound_cflags="$sun_sound_cflags" | |
4414 sound_found=yes | |
4415 XE_ADD_OBJS(sunplay.o) | |
4408 fi | 4416 fi |
4409 fi | 4417 fi |
4410 | 4418 |
4411 dnl Check for SGI and HP native sound libs | 4419 dnl Check for SGI and HP native sound libs |
4412 if test -z "$sound_found"; then | 4420 if test -z "$sound_found"; then |