summaryrefslogtreecommitdiff
path: root/source4/script/build_idl.sh
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r10190: Do some very basic input checking when provisioning.Jelmer Vernooij1-1/+1
(This used to be commit 87f25fe49caa78422582337c5208a331ef5b8c15)
2007-10-10r10111: Make pidl by default assume the input file is an IDL file ratherJelmer Vernooij1-1/+1
then a .pidl file. (This used to be commit d8a31d3048a6421a3d49d3c121bc86d748838b3a)
2007-10-10r9460: - Move pidl to lib/. This fixes standalone installation of pidl.Jelmer Vernooij1-1/+1
- Update the README - Allow building the docs stand-alone (This used to be commit b56084ce251ab7a35dd1422f38de258e8e1e1477)
2007-10-10r9459: Move pidl up one level (to prevent too much nesting)Jelmer Vernooij1-1/+1
(This used to be commit e48202275e60c18e464457d200daeb953386e221)
2007-10-10r8806: Move data representation-independent data into seperate headerJelmer Vernooij1-1/+1
(This used to be commit 26e1fdf63007e28468a05b18bede1e69981edc12)
2007-10-10r8803: Rename --header to --ndr-header and --parser to --ndr-parserJelmer Vernooij1-1/+1
(This used to be commit d292ab7ca6ce8232a182e7ec9480671bb3044a6a)
2007-10-10r8801: Change --output to --outputdir and make pidl add a data ↵Jelmer Vernooij1-1/+1
representation prefix to pidl itself. Useful for supporting other data representation types. (This used to be commit 5af68a04763f39f2a9898155e2c82ed2ee646f36)
2007-10-10r8469: the extra pidl args need to be normal args, not after a --, otherwise ↵Andrew Tridgell1-1/+1
pidl tries to compile "--uint-enums" as a IDL file :-) This should help the build on AIX 5.2 (This used to be commit f54e6c83e48cc2d1f03827337b68658057206898)
2007-10-10r8264: - Use standard perl package structure for pidl.Jelmer Vernooij1-1/+1
- Only "use" pidl modules in the main executable when necessary Try 'make install' in build/pidl to install the package (should work stand-alone). (This used to be commit c620095692122a65ae1c5d85ca20468d4de93c54)
2007-10-10r8263: Some small pidl fixes, start working towards supporting installation ↵Jelmer Vernooij1-1/+1
of pidl. (This used to be commit c785677a14c958a518d5a9755d2b94e81b34bdb3)
2007-10-10r8103: Add an argument separator between the hardcoded args and $PIDL_EXTRA_ARGSTim Potter1-1/+1
so the first extra arg isn't interpreted as a parameter to the last hardcoded arg. (This used to be commit ad1700ca8e1af7933a183172f4a5ad4b56280474)
2007-10-10r7425: configure check to see if a compiler can handle negative enum valuesStefan Metzmacher1-1/+3
if the compiler doesn't support it we pass --uint-enums to pidl metze (This used to be commit c52703c0a8adb4f64ec52e4bf602e9c17ef2c748)
2007-10-10r5490: The big (D)COM commit! :-) Contains most of the changes described in theJelmer Vernooij1-2/+2
DCOM paper in lorikeet. This is the result of 1.5 months work (mainly figuring out how things *really* work) at the end of 2004. In general: - Clearer distinction between COM and DCOM. DCOM is now merely the glue between DCE/RPC+ORPC and COM. COM can also work without DCOM now. This makes the code a lot clearer. - Clearer distinction between NDR and DCOM. Before, NDR had a couple of "if"s to cope with DCOM, which are now gone. - Use "real" arguments rather then structures for function arguments in COM, mainly because most of these calls are local so packing/unpacking data for every call is too much overhead (both speed- and code-wise) - Support several mechanisms to load class objects: - from memory (e.g. part of the current executable, registered at start-up) - from shared object files - remotely - Most things are now also named COM rather then DCOM because that's what it really is. After an object is created, it no longer matters whether it was created locally or remotely. There is a very simple example class that contains both a class factory and a class that implements the IStream interface. It can be tested (locally only, remotely is broken at the moment) by running the COM-SIMPLE smbtorture test. Still to-do: - Autogenerate parts of the class implementation code (using the coclass definitions in IDL) - Test server-side - Implement some of the common classes, add definitions for common interfaces. (This used to be commit 71fd3e5c3aac5f0002001ab29d2248e6c6842d6f)
2007-10-10r5479: Add ODL input support.Jelmer Vernooij1-1/+1
The ODL module can convert an ODL structure to an IDL structure so that: - The COM subsystem can use the ODL structure - The DCE/RPC subsystem can use the IDL structure (This used to be commit a339765d99c90c46f29e2bd71a6aa271febb096d)
2007-10-10r5087: Add --swig to pidl flags so that swig .i files are generated withTim Potter1-1/+1
make idl. (This used to be commit 7ba9f329aa8baa8e8c0efe742ad51eb5b3487cbc)
2007-10-10r5033: Remove --with-eparserdir configure option and eparser_idl make target.Tim Potter1-7/+0
This is all done in the lorikeet/ethereal Makefile now. (This used to be commit 5ec9fad5cfc9c6010550aa1890e9d213030db55d)
2007-10-10r5026: Don't build the swig stuff by default until it's a bit more stable.Tim Potter1-1/+1
(This used to be commit df35f1debf30682363399ee2a02063da695fff84)
2007-10-10r5019: Some tweaks to building the swig .i files.Tim Potter1-1/+1
(This used to be commit c252a286efcb9ca2024c8d234c8a65855522fb25)
2007-10-10r4599: Remove some duplicated code in pidl.pl.Tim Potter1-1/+1
Start working on adding support for bitmaps and enums. In progress tweaks for arrays of structures. (This used to be commit d39cb7ecb4c193cbba628ee6d6f9b5c5bbf89d33)
2007-10-10r4471: Running 'make eparser_idl' doesn't need --header anymore.Tim Potter1-1/+1
(This used to be commit 913630d6e43cda621b36403169544dcbea926153)
2007-10-10r3861: - Put ndr and rpc client code in seperate filesJelmer Vernooij1-1/+1
- Add some const (This used to be commit a00bda88e1b6abdc36e5aa8c2a35f64855f67c96)
2007-10-10r3790: use a registration function that is called from dcerpc_*_init functionsJelmer Vernooij1-5/+0
rather then a large table in librpc/gen_ndr/tables.c. This will allow us to only link in only the required gen_ndr files (speeds up linking quite a bit, makes binaries smaller). Each gen_ndr_* file now has a init function that calls the init functions of the interfaces it contains. I did it this way to keep pidl's code simple, though it might hurt startup time a bit. I'd be happy to change it if people like one function better. (This used to be commit 3c436590ae95b58ad6d00e72d6fdd08a4d80f208)
2007-10-10r3651: Add a new configure option --with-eparserdirAndrew Bartlett1-0/+7
This allows us to call 'make eparser_idl', generate the files required by the ethereal pidl plugin, and put them in the right place. (See lorikeet/ethereal) Andrew Bartlett (This used to be commit bd9497b092335b2646a1955ea7c55ad33eb7d538)
2007-10-10r2255: Don't do experimental swig stuff by default.Tim Potter1-1/+1
(This used to be commit db191572ff9351ae84dc0c3d6302fa60b61cd179)
2007-10-10r2253: Add test program, as small example of what's going on.Tim Potter1-1/+1
(This used to be commit fd31ae38dfe2d005b3e01ac059c2e15fa389aad4)
2007-10-10r725: fix usage of $PERL to "$PERL" to handle perl -W correctStefan Metzmacher1-2/+2
metze (This used to be commit b1161c4c832dd0a2975eee0908d9d5cd6171f608)
2007-10-10r586: removed --clientfns from build_idl.sh (tim removed that code from pidl)Andrew Tridgell1-1/+1
(This used to be commit d1dcde1d913803a44b07a1937262ae627680072c)
2007-10-10r356: Start of auto-generated client functions. Tridge can you take a lookTim Potter1-1/+1
and tell me what you think? Output does not compile yet. (This used to be commit 65692c9a9301329ad93628778e3d8f9188a67059)
2004-02-02some systems doesn't have ./ in PATHStefan Metzmacher1-2/+2
so use ./build/pidl/pidl.pl metze (This used to be commit 7aab10d507346ac8d748558e5b9dbcfe9a56f601)
2003-12-15lots of shells don't have the -nt test, so use hackish find commandAndrew Tridgell1-2/+7
instead (This used to be commit 2d57346c2d07e43c4630a7f7963173d84c5a7c92)
2003-12-15a script fix for the build farmAndrew Tridgell1-1/+2
(This used to be commit 5f6b0baa300d088a6d7fb91fcbceff594292eaa0)
2003-12-14added auto-generation of the server side boilerplate code for eachAndrew Tridgell1-1/+1
pipe. The server side code gets generated as librpc/gen_ndr/ndr_NAME_s.c and gets included in the pipe module (This used to be commit bd3dcfe5820489a838e19b244266bd9126af5eb4)
2003-12-08some systems don't have "which" and some systems don't have the "-nt"Andrew Tridgell1-9/+0
flag to test. It's amazing that systems like that are ever sold. (This used to be commit fe91635da87104544946983c7c63d5c584db614a)
2003-12-08fixed shell scripting errorAndrew Tridgell1-1/+1
(This used to be commit b18dce549dd390681e70bc0e290d7ec4e44791c3)
2003-12-08cope with yapp not being installedAndrew Tridgell1-2/+6
(This used to be commit e41d95acc016087d77712d214a52813c00923d4d)
2003-12-08 * reduced the number of grammer conflicts a lot using (arbitrary)Andrew Tridgell1-1/+4
precedence rules * build a standalone parser. When we come to distributing Samba4 we can just include idl.pm and other developers won't need Parse::Yapp installed * avoid the recursive make in most cases in build_idl.sh (This used to be commit be2c2be459d1bed41c113590e70711cb89ad12b9)
2003-11-28 * support multiple interfaces in one IDL file in pidlAndrew Tridgell1-3/+3
* make far more generated functions static * get rid of gen_rpc, and include the client calls in ndr_*.c * added placeholder IDL for a number of intefaces (dcom, wzcsvc, browser etc) (This used to be commit a2bdf0be0119023df3c2b9ea515ed355020f2625)
2003-11-28added auto-generation of the IDL interface tables. This makes two lessAndrew Tridgell1-0/+4
places that need to be edited when someone adds a new IDL file. (This used to be commit ccd9ddeed679baa6cbb05ac728b381b50420e00f)
2003-11-23save about 35% of the time for "make idl" by processing multiple IDLAndrew Tridgell1-5/+17
files at once, which means less perl startup time. (This used to be commit 64b2c67e479ddc754d18f752d347ba22a6d77682)
2003-11-20we now use a copy of pidl inside the samba4 source tree atAndrew Tridgell1-1/+3
source/build/pidl/ I imported the code using direct respository manipulation to preserve the commit history (This used to be commit 2ed87a52ccc343c281e29f5a18f3f99fe06beb28)
2003-11-20moved the pidl auto-generated files out of CVSAndrew Tridgell1-2/+5
(This used to be commit 49c72d42766a55e2833c004e721a47115000626b)
2003-11-15simple method for auto-building rpc files if idl changes, andAndrew Tridgell1-3/+7
auto-building proto.h if it doesn't exist. This should make life a little easier for developers (This used to be commit ab5939e79600841c5e7e31e9da8742bf2da4a184)
2003-11-09- added the rest of the LSA calls as stubsAndrew Tridgell1-1/+1
- auto-generate the client calls with 'make idl' (This used to be commit 8e52381313fc5a603b6d7e6ff090896c772096e9)
2003-11-09check for pidl.pl in path, not $HOME/pidl/Andrew Tridgell1-1/+1
(This used to be commit 9aacdb5b8ac26a7a6337aeb23f63513fbd2236f6)
2003-11-08- more generation fixesAndrew Tridgell1-0/+10
- added auto-generation from the Makefile. Only called when you run "make idl" (This used to be commit 47a17e5a08dcb5ef2880f75a59bf417e161a71d3)