Changeset fe73d0c
- Timestamp:
- Jun 19, 2011, 12:07:25 AM (13 years ago)
- Branches:
- master, release-1.10, release-1.8, release-1.9
- Children:
- fcc0936, 24a791f
- Parents:
- d1d68e0
- git-author:
- David Benjamin <davidben@mit.edu> (04/05/11 12:54:11)
- git-committer:
- David Benjamin <davidben@mit.edu> (06/19/11 00:07:25)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
rd1d68e0 rfe73d0c 81 81 AC_HEADER_STDC 82 82 AC_HEADER_SYS_WAIT 83 AC_HEADER_STDBOOL 84 AC_CHECK_HEADERS(strings.h sys/ioctl.h sys/filio.h unistd.h) 83 AC_CHECK_HEADERS(stdbool.h strings.h sys/ioctl.h sys/filio.h unistd.h) 85 84 86 85 dnl Add CFLAGS for embeded perl -
libfaim/aim.h
r63de71c rfe73d0c 18 18 19 19 #include "config.h" 20 #ifdef HAVE_STDBOOL_H21 20 #include <stdbool.h> 22 #else23 #ifndef HAVE__BOOL24 #define _Bool signed char25 #endif26 #define bool _Bool27 #define false 028 #define true 129 #define __bool_true_false_are_defined 130 #endif /* HAVE_STDBOOL_H */31 21 32 22 #include <stdio.h> -
owl.h
r33b6431b rfe73d0c 14 14 #include "compat/compat.h" 15 15 16 #ifdef HAVE_STDBOOL_H17 16 #include <stdbool.h> 18 #else19 #ifndef HAVE__BOOL20 #define _Bool signed char21 #endif22 #define bool _Bool23 #define false 024 #define true 125 #define __bool_true_false_are_defined 126 #endif /* HAVE_STDBOOL_H */27 17 28 18 #ifndef OWL_PERL 19 #define NCURSES_ENABLE_STDBOOL_H 1 29 20 #include <curses.h> 30 21 #include <panel.h> -
window.h
r4cc49bc rfe73d0c 5 5 #include <glib-object.h> 6 6 7 #ifdef HAVE_STDBOOL_H8 7 #include <stdbool.h> 9 #else10 #ifndef HAVE__BOOL11 #define _Bool signed char12 #endif13 #define bool _Bool14 #define false 015 #define true 116 #define __bool_true_false_are_defined 117 #endif /* HAVE_STDBOOL_H */18 8 19 9 G_BEGIN_DECLS
Note: See TracChangeset
for help on using the changeset viewer.