emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/configure,v


From: Michael W. Olson
Subject: [Emacs-diffs] Changes to emacs/configure,v
Date: Tue, 05 Feb 2008 05:13:14 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Michael W. Olson <mwolson>      08/02/05 05:13:13

Index: configure
===================================================================
RCS file: /sources/emacs/emacs/configure,v
retrieving revision 1.252
retrieving revision 1.253
diff -u -b -r1.252 -r1.253
--- configure   2 Feb 2008 20:46:39 -0000       1.252
+++ configure   5 Feb 2008 05:13:12 -0000       1.253
@@ -1371,7 +1371,7 @@
   --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
+  --without-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 @@
 if test "${with_dbus+set}" = set; then
   withval=$with_dbus;
 else
-      with_dbus=no
+     with_dbus=yes
 fi
 
 
@@ -18636,11 +18636,13 @@
 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 >>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;
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]