1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-05 04:23:51 +03:00

r5016: Use LIBRARY instead of BINARY for inserting the swig stuff into the

build system.  This still generates bogus targets (i.e
bin/swig_dcerpc.so.0.0.1) and the subsystem initialisation needs to be
done by hand but it is less of a hack.
This commit is contained in:
Tim Potter
2005-01-26 20:40:59 +00:00
committed by Gerald (Jerry) Carter
parent d925606bbf
commit e9b69d19a8
3 changed files with 13 additions and 18 deletions

View File

@@ -1,7 +1,11 @@
[BINARY::swig_tdb]
OBJ_FILES = scripting/swig/dummymain.o
[LIBRARY::swig_tdb]
MAJOR_VERSION = 0
MINOR_VERSION = 0
RELEASE_VERSION = 1
REQUIRED_SUBSYSTEMS = LIBTDB
[BINARY::swig_dcerpc]
OBJ_FILES = scripting/swig/dummymain.o
[LIBRARY::swig_dcerpc]
MAJOR_VERSION = 0
MINOR_VERSION = 0
RELEASE_VERSION = 1
REQUIRED_SUBSYSTEMS = LIBCLI NDR_MISC LIBBASIC CONFIG RPC_NDR_SAMR

View File

@@ -1,9 +0,0 @@
/*
* Dummy main function as the build system doesn't seem to create a
* dependency list for a subsystem.
*/
int main(void)
{
return 0;
}