Changeset c561d205 in mainline
- Timestamp:
- 2025-04-25T15:55:33Z (6 months ago)
- Parents:
- 33c08929
- git-author:
- Matěj Volf <git@…> (2025-04-25 15:55:17)
- git-committer:
- Matěj Volf <git@…> (2025-04-25 15:55:33)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
meson/part/exports/copy-export.sh
r33c08929 rc561d205 49 49 major_versioned_name="$3" 50 50 # libfoo.so.5 -> libfoo.so (remove the last part delimited by dot) 51 unversioned_name="$ (echo "$major_versioned_name" | rev | cut -d. -f2- | rev)"51 unversioned_name="${major_versioned_name%.[0-9]*}" 52 52 cp -L "$2" "${target_dir}/lib/$filename" 53 53 ln -s "$filename" "${target_dir}/lib/$major_versioned_name" -
uspace/lib/dltest/meson.build
r33c08929 rc561d205 28 28 29 29 allow_shared = true 30 30 31 src = files( 31 32 'dltest.c', -
uspace/lib/inet/meson.build
r33c08929 rc561d205 27 27 # 28 28 29 allow_shared = true 30 29 31 src = files( 30 32 'src/addr.c', … … 50 52 'test/main.c', 51 53 ) 52 allow_shared = true -
uspace/lib/posix/meson.build
r33c08929 rc561d205 30 30 includes += include_directories('include/posix', 'include') 31 31 c_args += [ '-fno-builtin', '-D_XOPEN_SOURCE' ] 32 33 allow_shared = true 32 34 33 35 # TODO … … 71 73 exported_devel_files += [ 'include', meson.current_source_dir() / 'include' / 'posix', 'libposix' ] 72 74 exported_devel_files += [ 'includesymlink', 'libc', 'libposix' ] 73 allow_shared = true
Note:
See TracChangeset
for help on using the changeset viewer.