emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r113400: * configure.ac: Fix goofs in previous.


From: Glenn Morris
Subject: [Emacs-diffs] trunk r113400: * configure.ac: Fix goofs in previous.
Date: Fri, 12 Jul 2013 23:14:24 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113400
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2013-07-12 19:14:20 -0400
message:
  * configure.ac: Fix goofs in previous.
modified:
  configure.ac                   
configure.in-20091113204419-o5vbwnq5f7feedwu-783
=== modified file 'configure.ac'
--- a/configure.ac      2013-07-12 17:36:42 +0000
+++ b/configure.ac      2013-07-12 23:14:20 +0000
@@ -2350,6 +2350,7 @@
         AC_DEFINE(HAVE_GFILENOTIFY, 1, [Define to 1 if using GFile.])
         NOTIFY_OBJ=gfilenotify.o
         NOTIFY_SUMMARY="yes -lgio (gfile)"
+        with_file_notification=gfile
      elif test "${with_file_notification}" = "gfile"; then
         AC_MSG_ERROR([File notification `gfile' requested but requirements not 
found.])
      fi
@@ -2365,10 +2366,13 @@
              AC_DEFINE(HAVE_INOTIFY, 1, [Define to 1 to use inotify.])
           NOTIFY_OBJ=inotify.o
           NOTIFY_SUMMARY="yes -lglibc (inotify)"
-       fi
-     elif test "${with_file_notification}" = "inotify"; then
+          with_file_notification=inotify
+        fi
+     fi
+     if test "${with_file_notification}" = "inotify" && \
+       test -z "${NOTIFY_OBJ}"; then
         AC_MSG_ERROR([File notification `inotify' requested but requirements 
not found.])
-    fi
+     fi
   fi
 fi                              dnl ${with_file_notification} != no
 


reply via email to

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