comparison configure @ 4790:bc4f2511bbea

Remove support for the OffiX drag-and-drop protocol. See xemacs-patches message with ID <870180fe0912211421m3e3d7891pdadefef167b50cb4@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Tue, 22 Dec 2009 15:52:06 -0700
parents 5460287a3327
children 5d120deb60ca 9987da5935bd e0db3c197671
comparison
equal deleted inserted replaced
4789:56049bea9231 4790:bc4f2511bbea
952 with_widgets 952 with_widgets
953 enable_dragndrop 953 enable_dragndrop
954 with_dragndrop 954 with_dragndrop
955 enable_cde 955 enable_cde
956 with_cde 956 with_cde
957 enable_offix
958 with_offix
959 enable_external_widget 957 enable_external_widget
960 with_external_widget 958 with_external_widget
961 enable_tty 959 enable_tty
962 with_tty 960 with_tty
963 enable_ncurses 961 enable_ncurses
1849 types are currently unsupported. There are no true 1847 types are currently unsupported. There are no true
1850 Lucid widgets; Motif widgets will be used if Motif 1848 Lucid widgets; Motif widgets will be used if Motif
1851 can be found, else Athena is used. 1849 can be found, else Athena is used.
1852 --with-dragndrop Compile in the generic drag and drop API. This is 1850 --with-dragndrop Compile in the generic drag and drop API. This is
1853 automatically added if one of the drag and drop 1851 automatically added if one of the drag and drop
1854 protocols is found (currently CDE, OffiX, MSWindows, 1852 protocols is found (currently CDE, MSWindows, and
1855 and GTK). *WARNING* The Drag'n'drop support is under 1853 GTK). *WARNING* The Drag'n'drop support is under
1856 development and is considered experimental. 1854 development and is considered experimental.
1857 --with-cde Compile in support for CDE drag and drop. 1855 --with-cde Compile in support for CDE drag and drop.
1858 --with-offix Compile in support for OffiX drag and drop.
1859 *WARNING* If you compile in OffiX, you may not be
1860 able to use multiple X displays success- fully. If
1861 the two servers are from different vendors, the
1862 results may be unpredictable.
1863 --with-external-widget 1856 --with-external-widget
1864 Support XEmacs server for text widgets in other 1857 Support XEmacs server for text widgets in other
1865 applications. 1858 applications.
1866 1859
1867 TTY (character terminal) options 1860 TTY (character terminal) options
3537 if test "${with_cde+set}" = set; then 3530 if test "${with_cde+set}" = set; then
3538 enableval="$with_cde" 3531 enableval="$with_cde"
3539 withval="$with_cde" 3532 withval="$with_cde"
3540 3533
3541 fi; 3534 fi;
3542 # If --with-offix or --without-offix were given then copy the value to the
3543 # equivalent enable_offix variable.
3544 if test "${with_offix+set}" = set; then
3545 enable_offix="$with_offix"
3546 fi;
3547 # If -enable-offix or --disable-offix were given then copy the value to the
3548 # equivalent with_offix variable.
3549 if test "${enable_offix+set}" = set; then
3550 with_offix="$enable_offix"
3551 fi;
3552 # Check whether --with-offix or --without-offix was given.
3553 if test "${with_offix+set}" = set; then
3554 enableval="$with_offix"
3555 withval="$with_offix"
3556
3557 fi;
3558 # If --with-external-widget or --without-external-widget were given then copy the value to the 3535 # If --with-external-widget or --without-external-widget were given then copy the value to the
3559 # equivalent enable_external-widget variable. 3536 # equivalent enable_external-widget variable.
3560 if test "${with_external_widget+set}" = set; then 3537 if test "${with_external_widget+set}" = set; then
3561 enable_external_widget="$with_external_widget" 3538 enable_external_widget="$with_external_widget"
3562 fi; 3539 fi;
21051 else 21028 else
21052 : 21029 :
21053 fi 21030 fi
21054 21031
21055 if test "$with_x11" != "yes"; then 21032 if test "$with_x11" != "yes"; then
21056 for feature in with_tooltalk with_cde with_offix with_wmcommand with_xim enable_sound_nas 21033 for feature in with_tooltalk with_cde with_wmcommand with_xim enable_sound_nas
21057 do 21034 do
21058 if eval "test -n \"\$${feature}\" -a \"\$${feature}\" != \"no\"" ; then 21035 if eval "test -n \"\$${feature}\" -a \"\$${feature}\" != \"no\"" ; then
21059 { $as_echo "$as_me:$LINENO: WARNING: --$feature ignored: Not valid without X support" >&5 21036 { $as_echo "$as_me:$LINENO: WARNING: --$feature ignored: Not valid without X support" >&5
21060 $as_echo "$as_me: WARNING: --$feature ignored: Not valid without X support" >&2;} 21037 $as_echo "$as_me: WARNING: --$feature ignored: Not valid without X support" >&2;}
21061 fi 21038 fi
23382 dragndrop_proto="$dragndrop_proto CDE" && if test "$verbose" = "yes"; then echo " Appending \"CDE\" to \$dragndrop_proto"; fi 23359 dragndrop_proto="$dragndrop_proto CDE" && if test "$verbose" = "yes"; then echo " Appending \"CDE\" to \$dragndrop_proto"; fi
23383 with_tooltalk=yes # CDE requires Tooltalk 23360 with_tooltalk=yes # CDE requires Tooltalk
23384 need_motif=yes # CDE requires Motif 23361 need_motif=yes # CDE requires Motif
23385 fi 23362 fi
23386 23363
23387 test "$window_system" != "x11" && with_offix=no
23388 if test "$with_dragndrop" = no; then
23389 if test "$with_offix" = "yes" ; then
23390 { $as_echo "$as_me:$LINENO: WARNING: --with-offix forced to \`no'; no generic Drag'n'Drop support" >&5
23391 $as_echo "$as_me: WARNING: --with-offix forced to \`no'; no generic Drag'n'Drop support" >&2;}
23392 fi
23393 with_offix=no
23394 fi
23395 if test "$with_cde" = yes; then
23396 if test "$with_offix" = "yes" ; then
23397 { $as_echo "$as_me:$LINENO: WARNING: --with-offix forced to \`no'; CDE already found" >&5
23398 $as_echo "$as_me: WARNING: --with-offix forced to \`no'; CDE already found" >&2;}
23399 fi
23400 with_offix=no
23401 fi
23402 test -z "$with_offix" && with_offix=no
23403 if test "$with_offix" = "yes"; then
23404 cat >>confdefs.h <<\_ACEOF
23405 #define HAVE_OFFIX_DND 1
23406 _ACEOF
23407
23408 dnd_objs="$dnd_objs offix.o" && if test "$verbose" = "yes"; then echo " Appending \"offix.o\" to \$dnd_objs"; fi
23409 dragndrop_proto="$dragndrop_proto OffiX" && if test "$verbose" = "yes"; then echo " Appending \"OffiX\" to \$dragndrop_proto"; fi
23410 fi
23411 if test "$with_gtk" = "yes"; then 23364 if test "$with_gtk" = "yes"; then
23412 dragndrop_proto="$dragndrop_proto GTK" && if test "$verbose" = "yes"; then echo " Appending \"GTK\" to \$dragndrop_proto"; fi 23365 dragndrop_proto="$dragndrop_proto GTK" && if test "$verbose" = "yes"; then echo " Appending \"GTK\" to \$dragndrop_proto"; fi
23413 fi 23366 fi
23414 23367
23415 if test "$with_dragndrop" != "no" ; then 23368 if test "$with_dragndrop" != "no" ; then