Skip to content

Commit

Permalink
fix build issue about void linux
Browse files Browse the repository at this point in the history
  • Loading branch information
sulincix committed Nov 19, 2024
1 parent 742ce15 commit 18ebaf5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ run_command('bash', './tool/mkctx.sh',
run_command('bash', './tool/check.sh', meson.current_build_dir(), check:true)
cflags = ['-I'+meson.current_source_dir()/'src/include/']
ldflags = ['-L'+meson.current_build_dir(), '-lymp']
cflags += ['-std=c99']
if get_option('ansi')
cflags += ['-ansi']
endif
Expand Down
6 changes: 2 additions & 4 deletions po/tr.po
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -1303,9 +1303,8 @@ msgid "Create a ymp shell or execute ympsh script."
msgstr "ymp kabugu olustur veya ympsh calistir."

#: src/operations/utility/sysconf.vala:7
#, fuzzy
msgid "Running sysconf:"
msgstr "Sysconf calistiriliyor:"
msgstr "Sysconf calisiyor:"

#: src/operations/utility/sysconf.vala:30
#, c-format
Expand Down Expand Up @@ -1632,9 +1631,8 @@ msgid "Name is not defined."
msgstr "isim tanimli degil."

#: src/util/builder_target/ymp.vala:250
#, fuzzy, c-format
msgid "Create data file: %s%s"
msgstr "Veri dosyasi olustur oku: %s"
msgstr "Veri dosyasi olustur: %s"

#: src/util/builder_target/ymp.vala:259
#, c-format
Expand Down
1 change: 1 addition & 0 deletions src/ccode/archive-extract.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <archive.h>
#include <archive_entry.h>
Expand Down
1 change: 0 additions & 1 deletion src/ccode/string.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#include <stddef.h>
#include <string.h>


#include <glib.h>

int iseq(char* str1, char* str2){
Expand Down

0 comments on commit 18ebaf5

Please sign in to comment.