Overview
| Comment: | Use <sys/ttycom.h> instead of <sys/termio.h> |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2e872e742c93211e5c66697e902e18f7 |
| User & Date: | js on 2016-05-29 18:47:39 |
| Other Links: | manifest | tags |
Context
|
2016-05-29
| ||
| 19:43 | OFDeflateStream: Fix -[isAtEndOfStream] (check-in: 8e4451aee2 user: js tags: trunk) | |
| 18:47 | Use <sys/ttycom.h> instead of <sys/termio.h> (check-in: 2e872e742c user: js tags: trunk) | |
| 18:36 | OFKernelEventObserver: Cast FD_SETSIZE to int (check-in: d9398f2439 user: js tags: trunk) | |
Changes
Modified configure.ac from [d1ec3110f5] to [b4bfa64321].
| ︙ | |||
1080 1081 1082 1083 1084 1085 1086 | 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 | - + | ;; esac AS_IF([test x"$have_processes" = x"yes"], [ AC_SUBST(OFPROCESS_M, "OFProcess.m") AC_DEFINE(OF_HAVE_PROCESSES, 1, [Whether we have processes]) ]) |
| ︙ |
Modified utils/ofhttp/ProgressBar.m from [d83aef3f71] to [6cdf6f1d25].
| ︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - - + + | #include <math.h> #include <unistd.h> #ifdef HAVE_SYS_IOCTL_H # include <sys/ioctl.h> #endif |
| ︙ |