meta: replace bluelib with fx

This commit is contained in:
2026-06-22 17:45:54 +01:00
parent 4190a5c54a
commit c6c4b0c1f9
81 changed files with 3933 additions and 1349 deletions
+7 -7
View File
@@ -20,21 +20,21 @@ enum {
};
#define SYSROOT_OPTION \
B_COMMAND_OPTION(OPT_SYSROOT) \
FX_COMMAND_OPTION(OPT_SYSROOT) \
{ \
B_OPTION_SHORT_NAME('s'); \
B_OPTION_LONG_NAME("sysroot"); \
B_OPTION_DESC( \
FX_OPTION_SHORT_NAME('s'); \
FX_OPTION_LONG_NAME("sysroot"); \
FX_OPTION_DESC( \
"the system directory to use. if no " \
"sysroot is specified, the root directory is used. " \
"alternatively, the ROSETTA_SYSROOT environment " \
"variable can be used to specify the system root " \
"directory"); \
\
B_OPTION_ARG(OPT_SYSROOT_PATH) \
FX_OPTION_ARG(OPT_SYSROOT_PATH) \
{ \
B_ARG_NAME("path"); \
B_ARG_NR_VALUES(1); \
FX_ARG_NAME("path"); \
FX_ARG_NR_VALUES(1); \
} \
}