Changes in tests/include/includes.cfa [598dc68:c14d91a]
- File:
-
- 1 edited
-
tests/include/includes.cfa (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/include/includes.cfa
r598dc68 rc14d91a 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun May 22 08:27:20202213 // Update Count : 77 912 // Last Modified On : Thu Feb 3 22:06:07 2022 13 // Update Count : 774 14 14 // 15 15 … … 32 32 #include <crypt.h> 33 33 #include <ctype.h> 34 #if __has_include( "curses.h" ) 35 #include <curses.h> // may not be installed 36 #endif 34 //#include <curses.h> // may not be installed 37 35 #include <dirent.h> 38 36 #include <dlfcn.h> … … 43 41 #include <errno.h> 44 42 #include <error.h> 45 #if __has_include( "eti.h" ) 46 #include <eti.h> // may not be installed, comes with ncurses 47 #endif 43 //#include <eti.h> // may not be installed, comes with ncurses 48 44 #include <execinfo.h> 49 #if __has_include( "expat.h" ) 50 #include <expat.h> // may not be installed 45 #include <expat.h> 51 46 #include <expat_external.h> 52 #endif53 47 #include <fcntl.h> 54 48 #include <features.h> … … 56 50 #include <fmtmsg.h> 57 51 #include <fnmatch.h> 58 #if __has_include( "form.h" ) 59 #include <form.h> // may not be installed, comes with ncurses 60 #endif 52 //#include <form.h> // may not be installed, comes with ncurses 61 53 #include <fstab.h> 62 54 #include <fts.h> … … 81 73 //#include <link.h> // CFA bug #240 nested anonymous enum fails 82 74 #include <locale.h> 83 #if __has_include( "ltdl.h" ) 84 #include <ltdl.h> // may not be installed 85 #endif 75 #include <ltdl.h> 86 76 //#include <malloc.h> // cannot include in extern "C" because of CFA #include_next 87 77 #include <math.h> 88 78 #include <mcheck.h> 89 79 #include <memory.h> 90 #if __has_include( "menu.h" ) 91 #include <menu.h> // may not be installed, comes with ncurses 92 #endif 80 //#include <menu.h> // may not be installed, comes with ncurses 93 81 #include <mntent.h> 94 82 #include <monetary.h> 95 83 #include <mqueue.h> 96 #if __has_include( "ncurses_dll.h" ) 97 #include <ncurses_dll.h> // may not be installed, comes with ncurses 98 #endif 84 //#include <ncurses_dll.h> // may not be installed, comes with ncurses 99 85 #include <netdb.h> 100 86 #include <nl_types.h> 101 87 #include <nss.h> 102 88 #include <obstack.h> 103 #if __has_include( "panel.h" ) 104 #include <panel.h> // may not be installed, comes with ncurses 105 #endif 89 //#include <panel.h> // may not be installed, comes with ncurses 106 90 #include <paths.h> 107 91 #include <poll.h> … … 134 118 #include <syslog.h> 135 119 #include <tar.h> 136 #if __has_include( "term.h" ) 137 #include <term.h> // may not be installed, comes with ncurses 138 #include <termcap.h> // may not be installed, comes with ncurses 139 #endif 120 //#include <term.h> // may not be installed, comes with ncurses 121 //#include <termcap.h> // may not be installed, comes with ncurses 140 122 #include <termio.h> 141 123 #include <termios.h> … … 149 131 #include <ucontext.h> 150 132 #include <ulimit.h> 151 #if __has_include( "unctrl.h" ) 152 #include <unctrl.h> // may not be installed, comes with ncurses 153 #endif 133 //#include <unctrl.h> // may not be installed, comes with ncurses 154 134 #include <unistd.h> 155 135 #include <utime.h>
Note:
See TracChangeset
for help on using the changeset viewer.