Changes in / [e93dd78:a006d475]
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
barnowl
rde18326 r9b7b535 7 7 EXE="$0.bin" 8 8 9 if ! test-x "$EXE"; then9 if test ! -x "$EXE"; then 10 10 echo "Cannot find barnowl.bin" >&2 11 11 exit 1 12 12 fi 13 13 14 export BARNOWL_DATA_DIR="$SRCDIR/perl/" 15 export BARNOWL_BIN_DIR="$SRCDIR/" 14 BARNOWL_DATA_DIR="$SRCDIR/perl/" 15 BARNOWL_BIN_DIR="$SRCDIR/" 16 export BARNOWL_DATA_DIR 17 export BARNOWL_BIN_DIR 16 18 exec "$EXE" "$@" -
configure.ac
r1255365 r1255365 8 8 9 9 AC_PROG_CC 10 AC_PROG_CC_C99 10 11 11 12 AC_ARG_WITH([stack-protector], … … 80 81 AC_HEADER_STDC 81 82 AC_HEADER_SYS_WAIT 82 AC_HEADER_STDBOOL 83 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) 84 84 85 85 dnl Add CFLAGS for embeded perl … … 143 143 test "$HAVE_DES_ECB_ENCRYPT"]) 144 144 145 AM_CFLAGS="$AM_CFLAGS -D_XOPEN_SOURCE= 500"145 AM_CFLAGS="$AM_CFLAGS -D_XOPEN_SOURCE=600" 146 146 dnl Define _BSD_SOURCE because zephyr needs caddr_t. 147 147 AM_CFLAGS="$AM_CFLAGS -D_BSD_SOURCE" -
libfaim/aim.h
r63de71c r28da2da 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 r33b6431b 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> -
scripts/locker-build
r0fd5bd5 rf216307 102 102 esac 103 103 104 C FLAGS="-I$BARNOWL/include" \105 LDFLAGS="-L$BARNOWL/lib $opt_rpath$BARNOWL/lib" \104 CPPFLAGS="-I$BARNOWL/include -I/usr/athena/include" \ 105 LDFLAGS="-L$BARNOWL/lib -L/usr/athena/lib $opt_rpath$BARNOWL/lib" \ 106 106 ./configure --exec-prefix="/mit/barnowl/arch/$ATHENA_SYS" \ 107 107 --prefix="/mit/barnowl/builds/barnowl-$VERS" --mandir=/mit/barnowl/man \ -
window.h
r4cc49bc r4cc49bc 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.