Added version scripts for the kernel, libroot, and libbe. ATM each has two

version nodes: *_BASE and *_1_ALPHA1.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30826 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-05-22 14:53:31 +00:00
parent 297827477b
commit ef3966e888
6 changed files with 24 additions and 0 deletions

View File

@ -29,6 +29,8 @@ if $(TARGET_PLATFORM) != haiku {
AddResources libbe.so : libbe_version.rdef ;
SetVersionScript libbe.so : libbe_versions ;
SharedLibrary libbe.so :
:
<libbe>app_kit.o

5
src/kits/libbe_versions Normal file
View File

@ -0,0 +1,5 @@
LIBBE_BASE {
};
LIBBE_1_ALPHA1 {
} LIBBE_BASE;

View File

@ -18,6 +18,9 @@ UsePrivateHeaders runtime_loader ;
AddResources kernel_$(TARGET_ARCH) : kernel.rdef ;
SetVersionScript kernel_$(TARGET_ARCH) : kernel_versions ;
SetVersionScript kernel.so : kernel_versions ;
KernelMergeObject kernel_core.o :
boot_item.cpp
boot_splash.cpp

View File

@ -0,0 +1,7 @@
KERNEL_BASE {
global:
*;
};
KERNEL_1_ALPHA1 {
} KERNEL_BASE;

View File

@ -42,6 +42,8 @@ local librootObjects =
DONT_LINK_AGAINST_LIBROOT on libroot.so = true ;
SetVersionScript libroot.so : libroot_versions ;
SharedLibrary libroot.so
:
libroot_init.c

View File

@ -0,0 +1,5 @@
LIBROOT_BASE {
};
LIBROOT_1_ALPHA1 {
} LIBROOT_BASE;