Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b5a922de
Commit
b5a922de
authored
Feb 05, 2008
by
Michael Olson
Browse files
configure.in: Enable D-Bus by default.
parent
fccaebfd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
7 deletions
+15
-7
ChangeLog
ChangeLog
+4
-0
configure
configure
+10
-6
configure.in
configure.in
+1
-1
No files found.
ChangeLog
View file @
b5a922de
2008-02-05 Tom Tromey <tromey@redhat.com>
* configure.in (--with-dbus): Default to enabled.
2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
* INSTALL (Complex Text Layout support libraries): New section.
...
...
configure
View file @
b5a922de
...
...
@@ -1371,7 +1371,7 @@ Optional Packages:
--with-carbon use Carbon GUI on Mac OS X. This is unsupported!
--without-gpm don't use -lgpm for mouse support on a GNU/Linux
console
--with-dbus
compile with D-Bus support
--with
out
-dbus
don't
compile with D-Bus support
--with-pkg-config-prog=PATH
Path to pkg-config for finding GTK and librsvg
--with-x use the X Window System
...
...
@@ -2099,7 +2099,7 @@ fi
if test "${with_dbus+set}" = set; then
withval=$with_dbus;
else
with_dbus=
no
with_dbus=
yes
fi
...
...
@@ -18636,11 +18636,13 @@ _ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
#include <stdio.h>
#include <sys/types.h> /* for off_t */
#include <stdio.h>
int
main ()
{
return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
int (*fp) (FILE *, off_t, int) = fseeko;
return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
;
return 0;
}
...
...
@@ -18680,11 +18682,13 @@ cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
#define _LARGEFILE_SOURCE 1
#include <stdio.h>
#include <sys/types.h> /* for off_t */
#include <stdio.h>
int
main ()
{
return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
int (*fp) (FILE *, off_t, int) = fseeko;
return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
;
return 0;
}
...
...
configure.in
View file @
b5a922de
...
...
@@ -147,7 +147,7 @@ OPTION_DEFAULT_ON([xim],[don't use X11 XIM])
OPTION_DEFAULT_OFF([carbon],[use Carbon GUI on Mac OS X. This is unsupported!])
OPTION_DEFAULT_ON([gpm],[don't use -lgpm for mouse support on a GNU/Linux console])
OPTION_DEFAULT_O
FF
([dbus],[compile with D-Bus support])
OPTION_DEFAULT_O
N
([dbus],[
don't
compile with D-Bus support])
AC_ARG_WITH([pkg-config-prog],dnl
[AS_HELP_STRING([--with-pkg-config-prog=PATH],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment