fix
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-28 22:01:42 +09:00
commit 62008ec5d9
2 changed files with 4 additions and 2 deletions

View file

@ -62,12 +62,14 @@
#include <dlfcn.h>
#endif
#if defined(__HAIKU__) && defined(__cplusplus)
#ifdef __HAIKU__
#ifdef __cplusplus
#include <Window.h>
#include <View.h>
#include <Screen.h>
#include <Application.h>
#include <Locker.h>
#endif
#include <OS.h>
#endif

View file

@ -54,7 +54,7 @@ sub set_shared_flag {
sub new_object {
my @l = glob($_[0]);
foreach my $e (@l) {
$e =~ s/\.(cxx|c|m)$/$object_suffix/;
$e =~ s/\.(cc|c|m)$/$object_suffix/;
push(@library_targets, $e);
}
}