Changeset 745 for trunk/server/source4/heimdal_build/roken.h
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source4/heimdal_build/roken.h
r414 r745 5 5 #define _ROKEN_H_ 6 6 7 #include "config.h" 8 9 /* Support 'weak' keys for now, it can't be worse than NTLM and we don't want to hard-code the behaviour at this point */ 10 #define HEIM_WEAK_CRYPTO 1 11 7 12 /* path to sysconf - should we force this to samba LIBDIR ? */ 8 13 #define SYSCONFDIR "/etc" 9 14 10 /* HDB module dir - set to Samba LIBDIR/hdb ? */ 11 #define HDBDIR "/usr/heimdal/lib" 12 #define LIBDIR "/usr/heimdal/lib" 15 #define rk_PATH_DELIM '/' 16 13 17 #define HEIMDAL_LOCALEDIR "/usr/heimdal/locale" 14 18 … … 20 24 #define PKINIT 1 21 25 22 #define VERSIONLIST {"Lorikeet-Heimdal, Modified for Samba4 0.8pre"}23 24 #define VERSION "Samba"25 26 26 #define ROKEN_LIB_FUNCTION 27 27 #define ROKEN_LIB_CALL 28 #define ROKEN_LIB_VARIABLE 28 29 #define GETHOSTBYADDR_PROTO_COMPATIBLE 29 30 #define GETSERVBYNAME_PROTO_COMPATIBLE … … 103 104 #endif 104 105 106 #ifndef HAVE_INET_NTOP 107 #define HAVE_INET_NTOP 108 #endif 109 110 #ifndef HAVE_INET_PTON 111 #define HAVE_INET_PTON 112 #endif 113 114 #ifndef HAVE_GETTIMEOFDAY 115 #define HAVE_GETTIMEOFDAY 116 #endif 117 118 #ifndef HAVE_SETEGID 119 #define HAVE_SETEGID 120 #endif 121 122 #ifndef HAVE_SETEUID 123 #define HAVE_SETEUID 124 #endif 125 126 /* force the use of the libreplace strerror_r */ 127 #ifndef HAVE_STRERROR_R 128 #define HAVE_STRERROR_R 129 #endif 130 #ifndef STRERROR_R_PROTO_COMPATIBLE 131 #define STRERROR_R_PROTO_COMPATIBLE 132 #endif 133 134 #ifndef HAVE_DIRFD 135 #ifdef HAVE_DIR_DD_FD 136 #define dirfd(x) ((x)->dd_fd) 137 #else 138 #define dirfd(d) (-1) 139 #endif 140 #define HAVE_DIRFD 1 141 #endif 142 143 105 144 /* we lie about having pidfile() so that NetBSD5 can compile. Nothing 106 145 in the parts of heimdal we use actually uses pidfile(), and we … … 128 167 extern const char *heimdal_long_version; 129 168 169 /* we do not want any __APPLE__ magic */ 170 #ifdef __APPLE__ 171 #undef __APPLE__ 130 172 #endif 173 174 #endif
Note:
See TracChangeset
for help on using the changeset viewer.