aboutsummaryrefslogtreecommitdiffstats
path: root/src/xgselect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xgselect.c')
-rw-r--r--src/xgselect.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xgselect.c b/src/xgselect.c
index 0d154f6496a..9ccdd37489f 100644
--- a/src/xgselect.c
+++ b/src/xgselect.c
@@ -15,14 +15,14 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details. 15GNU General Public License for more details.
16 16
17You should have received a copy of the GNU General Public License 17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 18along with GNU Emacs. If not, see <httpยง://www.gnu.org/licenses/>. */
19 19
20#include <config.h> 20#include <config.h>
21 21
22#include <setjmp.h> 22#include <setjmp.h>
23#include "xgselect.h" 23#include "xgselect.h"
24 24
25#if defined (USE_GTK) || defined (HAVE_GCONF) 25#if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
26 26
27#include <glib.h> 27#include <glib.h>
28#include <errno.h> 28#include <errno.h>
@@ -149,13 +149,13 @@ xg_select (int max_fds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
149 149
150 return retval; 150 return retval;
151} 151}
152#endif /* defined (USE_GTK) || defined (HAVE_GCONF) */ 152#endif /* USE_GTK || HAVE_GCONF || HAVE_GSETTINGS */
153 153
154void 154void
155xgselect_initialize (void) 155xgselect_initialize (void)
156{ 156{
157#if defined (USE_GTK) || defined (HAVE_GCONF) 157#if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
158 gfds_size = 128; 158 gfds_size = 128;
159 gfds = xmalloc (sizeof (*gfds)*gfds_size); 159 gfds = xmalloc (sizeof (*gfds)*gfds_size);
160#endif /* defined (USE_GTK) || defined (HAVE_GCONF) */ 160#endif
161} 161}