Mercurial > emacs
comparison configure @ 91537:cdc08d88f810
configure.in: Enable D-Bus by default.
author | Michael Olson <mwolson@gnu.org> |
---|---|
date | Tue, 05 Feb 2008 05:13:13 +0000 |
parents | e086fbb9f3a1 |
children | f991f10f15ec |
comparison
equal
deleted
inserted
replaced
91536:99cac7a703b5 | 91537:cdc08d88f810 |
---|---|
1369 --without-xaw3d don't use Xaw3d | 1369 --without-xaw3d don't use Xaw3d |
1370 --without-xim don't use X11 XIM | 1370 --without-xim don't use X11 XIM |
1371 --with-carbon use Carbon GUI on Mac OS X. This is unsupported! | 1371 --with-carbon use Carbon GUI on Mac OS X. This is unsupported! |
1372 --without-gpm don't use -lgpm for mouse support on a GNU/Linux | 1372 --without-gpm don't use -lgpm for mouse support on a GNU/Linux |
1373 console | 1373 console |
1374 --with-dbus compile with D-Bus support | 1374 --without-dbus don't compile with D-Bus support |
1375 --with-pkg-config-prog=PATH | 1375 --with-pkg-config-prog=PATH |
1376 Path to pkg-config for finding GTK and librsvg | 1376 Path to pkg-config for finding GTK and librsvg |
1377 --with-x use the X Window System | 1377 --with-x use the X Window System |
1378 | 1378 |
1379 Some influential environment variables: | 1379 Some influential environment variables: |
2097 | 2097 |
2098 # Check whether --with-dbus was given. | 2098 # Check whether --with-dbus was given. |
2099 if test "${with_dbus+set}" = set; then | 2099 if test "${with_dbus+set}" = set; then |
2100 withval=$with_dbus; | 2100 withval=$with_dbus; |
2101 else | 2101 else |
2102 with_dbus=no | 2102 with_dbus=yes |
2103 fi | 2103 fi |
2104 | 2104 |
2105 | 2105 |
2106 | 2106 |
2107 # Check whether --with-pkg-config-prog was given. | 2107 # Check whether --with-pkg-config-prog was given. |
18634 /* confdefs.h. */ | 18634 /* confdefs.h. */ |
18635 _ACEOF | 18635 _ACEOF |
18636 cat confdefs.h >>conftest.$ac_ext | 18636 cat confdefs.h >>conftest.$ac_ext |
18637 cat >>conftest.$ac_ext <<_ACEOF | 18637 cat >>conftest.$ac_ext <<_ACEOF |
18638 /* end confdefs.h. */ | 18638 /* end confdefs.h. */ |
18639 #include <stdio.h> | 18639 #include <sys/types.h> /* for off_t */ |
18640 #include <stdio.h> | |
18640 int | 18641 int |
18641 main () | 18642 main () |
18642 { | 18643 { |
18643 return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 18644 int (*fp) (FILE *, off_t, int) = fseeko; |
18645 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); | |
18644 ; | 18646 ; |
18645 return 0; | 18647 return 0; |
18646 } | 18648 } |
18647 _ACEOF | 18649 _ACEOF |
18648 rm -f conftest.$ac_objext conftest$ac_exeext | 18650 rm -f conftest.$ac_objext conftest$ac_exeext |
18678 _ACEOF | 18680 _ACEOF |
18679 cat confdefs.h >>conftest.$ac_ext | 18681 cat confdefs.h >>conftest.$ac_ext |
18680 cat >>conftest.$ac_ext <<_ACEOF | 18682 cat >>conftest.$ac_ext <<_ACEOF |
18681 /* end confdefs.h. */ | 18683 /* end confdefs.h. */ |
18682 #define _LARGEFILE_SOURCE 1 | 18684 #define _LARGEFILE_SOURCE 1 |
18683 #include <stdio.h> | 18685 #include <sys/types.h> /* for off_t */ |
18686 #include <stdio.h> | |
18684 int | 18687 int |
18685 main () | 18688 main () |
18686 { | 18689 { |
18687 return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 18690 int (*fp) (FILE *, off_t, int) = fseeko; |
18691 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); | |
18688 ; | 18692 ; |
18689 return 0; | 18693 return 0; |
18690 } | 18694 } |
18691 _ACEOF | 18695 _ACEOF |
18692 rm -f conftest.$ac_objext conftest$ac_exeext | 18696 rm -f conftest.$ac_objext conftest$ac_exeext |