X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=examples-codegen%2Fexample1%2FTODO;fp=examples-codegen%2Fexample1%2FTODO;h=5c8280bc56d7973d5b95b7b020679a5bec714ccc;hp=0000000000000000000000000000000000000000;hb=208db683069afb57aeb0ef0e6897c014b870bb6f;hpb=e8b2809dd8681076434fc2b7cb54b148c3b1cbcb diff --git a/examples-codegen/example1/TODO b/examples-codegen/example1/TODO new file mode 100644 index 0000000..5c8280b --- /dev/null +++ b/examples-codegen/example1/TODO @@ -0,0 +1,25 @@ +- test using valgrind +- lib name should be group name + suffix/prefix ?! + user should have complete control => no default suffix/perfix + headers should be installed in pkgincludedir? maybe yes on the other hand + the user can pass the directory to configure via --includedir +- missing nodist_ problem: + we use an old automake version which doesn't support the nodist_ prefix + => make clean and make dist depend on generated sources + (i did not find a better solution) + + (make clean now works twice because the example is now in its own package + and make clean is then able to create the files - just to remove them again ;-) + +- make distcheck from clean source not working? now it works (really strange) + it still sometimes does not work - after a make distclean? yes + this does not work: + dmake distclean && ./configure --prefix=/tmp/jens-delme/usr && dmake distcheck + nor: + dmake distclean && ./configure --prefix=/tmp/jens-delme/usr && dmake clean && dmake distcheck + but this works: + dmake distclean && ./configure --prefix=/tmp/jens-delme/usr && dmake && dmake clean && dmake distcheck + + the difference is in Makefile.in: + the version that works has dependencies added the other version doesn't have + (=> automake adds them?)