forked from mono/mono
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mono] Move some culture-dependent source files to a separate directo…
…ry (mono#19912) * [mono] Move culture-info-tables.h to a separate directory We'd like to remove culture-info-tables.h from the dotnet/runtime copy of mono since we use ICU there for globalization like the rest of .NET 5. The plan is: 1. We move the file (and some others) to a separate directory (this PR) 2. We tell the sync bot to skip `culture/` in the future 3. We delete the files (or make them empty) in dotnet/runtime * Also move locale.c and culture-info.h * Also move mono_w32process_ver_language_name * [msvc] don't compile locales.c if it doesn't exist It exists for now, but won't after we stop syncing culture/ to dotnet/runtime
- Loading branch information
1 parent
ad0b2b8
commit ba14e69
Showing
12 changed files
with
854 additions
and
799 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/Makefile | ||
/Makefile.in | ||
/.libs | ||
/.deps | ||
/*.lo | ||
/*.la | ||
/*.o | ||
/*.a | ||
/semantic.cache | ||
/.project | ||
/.cproject | ||
/TAGS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
MAKEFLAGS := $(MAKEFLAGS) --no-builtin-rules | ||
|
||
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/mono $(GLIB_CFLAGS) $(SHARED_CFLAGS) | ||
|
||
CFLAGS := $(filter-out @CXX_REMOVE_CFLAGS@, @CFLAGS@) | ||
|
||
if !ENABLE_MSVC_ONLY | ||
|
||
noinst_LTLIBRARIES = libmono-culture.la | ||
|
||
if !HOST_WIN32 | ||
unix_sources = w32process-unix-language.c | ||
|
||
platform_sources = $(unix_sources) | ||
endif | ||
|
||
libmono_culture_la_SOURCES = \ | ||
$(platform_sources) \ | ||
culture-info.h \ | ||
culture-info-tables.h \ | ||
locales.c | ||
libmono_culture_la_CPPFLAGS = $(AM_CPPFLAGS) @CXX_ADD_CFLAGS@ | ||
|
||
endif # ENABLE_MSVC_ONLY |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.