comparison configure.in @ 1464:b02bdcffb55f

[xemacs-hg @ 2003-05-08 16:06:15 by stephent] default ESD off redux <87smrpjugr.fsf_-_@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Thu, 08 May 2003 16:06:18 +0000
parents c5da5c66fea7
children 1364f9716d7b
comparison
equal deleted inserted replaced
1463:f511a1963107 1464:b02bdcffb55f
330 dnl apply the * operator to that, so we remove as many leading './././'s 330 dnl apply the * operator to that, so we remove as many leading './././'s
331 dnl as are present, but some seds (like Ultrix's sed) don't allow you to 331 dnl as are present, but some seds (like Ultrix's sed) don't allow you to
332 dnl apply * to a \( \) group. Bleah. 332 dnl apply * to a \( \) group. Bleah.
333 progname="`echo $0 | sed 's:^\./\./:\./:'`" 333 progname="`echo $0 | sed 's:^\./\./:\./:'`"
334 334
335 dnl ----------------------------- 335 dnl -----------------------------------------------------------------
336 dnl Establish some default values 336 dnl Establish some default values
337 dnl ----------------------------- 337 dnl Some switches have idiosyncratic syntax, but in most cases a null
338 dnl value means to autodetect
339 dnl -----------------------------------------------------------------
338 340
339 XE_APPEND(lib-src, MAKE_SUBDIR) 341 XE_APPEND(lib-src, MAKE_SUBDIR)
340 XE_APPEND(lib-src, INSTALL_ARCH_DEP_SUBDIR) 342 XE_APPEND(lib-src, INSTALL_ARCH_DEP_SUBDIR)
341 343
342 prefix='/usr/local' 344 prefix='/usr/local'
378 with_x11='' 380 with_x11=''
379 with_msw='' 381 with_msw=''
380 rel_alloc='default' 382 rel_alloc='default'
381 with_system_malloc='default' 383 with_system_malloc='default'
382 with_dlmalloc='default' 384 with_dlmalloc='default'
385 dnl ESD Considered Harmful (plays nasty games with interrupts)
386 with_native_sound=''
387 with_nas_sound=''
388 with_esd_sound='no'
383 native_sound_lib='' 389 native_sound_lib=''
384 dnl These should be set to the empty string when we want gtk / gnome to 390 dnl These should be set to the empty string when we want gtk / gnome to
385 dnl be auto-detected instead of manually specified. 391 dnl be auto-detected instead of manually specified.
386 with_gtk='no' 392 with_gtk='no'
387 with_gnome='no' 393 with_gnome='no'
388 dnl use_assertions should be 'yes' by default. Too many people in this 394 dnl use_assertions should be 'yes' by default. Too many people in this
389 dnl world have core dumps turned off by default or \"cannot find where the 395 dnl world have core dumps turned off by default or \"cannot find where the
390 dnl core file went\". At least we should get some useful output ... 396 dnl core file went\". At least we should get some useful output ...
391 use_assertions="yes" 397 use_assertions="yes"
392 dnl the following is set to yes or no later.
393 with_toolbars="" 398 with_toolbars=""
394 with_tty="" 399 with_tty=""
395 use_union_type="no" 400 use_union_type="no"
396 with_dnet="" 401 with_dnet=""
397 dnl pdump defaults per opsys 402 dnl pdump defaults per opsys, do not default it here
398 pdump="" 403 pdump=""
399 dnl dragndrop is still experimental, except on Windows. When it is stable, comment out the following line: 404 dnl dragndrop is still experimental, except on Windows. When it is stable,
405 dnl comment out the following line:
400 with_dragndrop_default="no" 406 with_dragndrop_default="no"
401 dnl Too annoying, even if mandated by IPv6 (and I'm not even sure of that) 407 dnl Too annoying, even if mandated by IPv6 (and I'm not even sure of that)
402 dnl #### Change this to yes when somebody understands IPv6 and handle bugs. 408 dnl Change this to yes when somebody understands IPv6 and handle bugs.
403 with_ipv6_cname="no" 409 with_ipv6_cname="no"
404 410
405 dnl ------------------ 411 dnl ------------------
406 dnl Options Processing 412 dnl Options Processing
407 dnl ------------------ 413 dnl ------------------
4301 XE_DIE("Required NAS sound support cannot be provided.") 4307 XE_DIE("Required NAS sound support cannot be provided.")
4302 with_nas_sound=no 4308 with_nas_sound=no
4303 fi 4309 fi
4304 fi 4310 fi
4305 4311
4306 dnl ESD Sound support (default to off) 4312 dnl ESD Sound support
4307 if test "$with_esd_sound" != "no" -a "x$with_esd_sound" != "x"; then 4313 if test "$with_esd_sound" != "no"; then
4308 AC_CHECK_PROG(have_esd_config, esd-config, yes, no) 4314 AC_CHECK_PROG(have_esd_config, esd-config, yes, no)
4309 if test "$have_esd_config" = "yes"; then 4315 if test "$have_esd_config" = "yes"; then
4310 save_c_switch_site="$c_switch_site" save_LIBS="$LIBS" 4316 save_c_switch_site="$c_switch_site" save_LIBS="$LIBS"
4311 XE_APPEND(`esd-config --cflags`, c_switch_site) 4317 XE_APPEND(`esd-config --cflags`, c_switch_site)
4312 XE_PREPEND(`esd-config --libs`, LIBS) 4318 XE_PREPEND(`esd-config --libs`, LIBS)