Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: third_party/talloc/libreplace/win32.m4

Issue 2282793002: Remove unused third_party/talloc (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/talloc/libreplace/timegm.m4 ('k') | third_party/talloc/libreplace/win32_replace.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 AC_CHECK_HEADERS(direct.h windows.h winsock2.h ws2tcpip.h)
2
3 #######################################
4 # Check for mkdir mode
5 AC_CACHE_CHECK( [whether mkdir supports mode], libreplace_cv_mkdir_has_mode,
6 AC_TRY_COMPILE([
7 #include <stdio.h>
8 #ifdef HAVE_DIRECT_H
9 #include <direct.h>
10 #endif],[
11 mkdir("foo",0777);
12 return 0;
13 ],
14 libreplace_cv_mkdir_has_mode="yes",
15 libreplace_cv_mkdir_has_mode="no") )
16
17 if test "$libreplace_cv_mkdir_has_mode" = "yes"
18 then
19 AC_DEFINE(HAVE_MKDIR_MODE, 1, [Define if target mkdir supports mode option])
20 fi
OLDNEW
« no previous file with comments | « third_party/talloc/libreplace/timegm.m4 ('k') | third_party/talloc/libreplace/win32_replace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698