Commit ca27edd
authored
[java-interop] Fix casing of <fileapi.h> (dotnet#326)
Case sensitivity rears its head, in the form of building
xamarin-android under Linux with MXE enabled:
$ "/usr/bin/x86_64-w64-mingw32-gcc" ...
…/xamarin-android/external/Java.Interop/src/java-interop/java-interop-gc-bridge-mono.c:13:10: fatal error: FileAPI.h: No such file or directory
#include <FileAPI.h> (TaskId:1199)
^~~~~~~~~~~ (TaskId:1199)
compilation terminated. (TaskId:1199)
Change the `<FileAPI.h>` into a platform-neutral `<fileapi.h>` so that
the header can be found when building under Linux.1 parent 43d568c commit ca27edd
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments