1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
2020-05-25 Jeremy Sowden <jeremy@azazel.net>
* ChangeLog, configure.ac: bump to 0.0.4.
2020-05-25 Jeremy Sowden <jeremy@azazel.net>
* README: remove reference to deleted code.
2020-05-25 Jeremy Sowden <jeremy@azazel.net>
* .gitignore, Makefile.am, configure.ac, wmcore.1.in: add Debian
man-page.
2020-05-25 Jeremy Sowden <jeremy@azazel.net>
* .gitignore, Makefile, Makefile.am, autogen, configure.ac, wmcore.c:
switch to autotools.
2020-05-18 Jeremy Sowden <jeremy@azazel.net>
* ChangeLog, wmcore.c: bump to 0.0.3.
2020-05-18 Jeremy Sowden <jeremy@azazel.net>
* .gitignore: update .gitignore.
2020-05-18 Jeremy Sowden <jeremy@azazel.net>
* ChangeLog: add change-log.
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* Makefile: install bin directory.
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* README: update contacts.
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* Makefile, list.c, list.h, misc.c,
misc.h, wmcore.c, wmgeneral.c,
wmgeneral.h: use misc.* and list.* from libdockapp.
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* Makefile: use pkg-config in Makefile.
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* .gitignore: Add .gitignore.
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* Makefile: tidy up Makefile.
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* Makefile: use CC variable.
wmcore fails to cross build from source, because the Makefile hard
codes the build architecture compiler.
Author: Helmut Grohne <helmut@subdivi.de>
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* Makefile, wmcore.c: use wmgeneral functions
in libdockapp instead of the private copy.
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* Makefile: use CPPFLAGS and LDFLAGS.
Author: Doug Torrance <dtorrance@piedmont.edu>
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* Makefile: set DESTDIR so binary installs correctly.
Author: Doug Torrance <dtorrance@piedmont.edu>
2020-05-17 Jeremy Sowden <jeremy@azazel.net>
* list.c, list.h: remove inline keywords.
Previously, if we attempted to build using C99 or later, we got "inline
function declared but never defined" warnings and eventual "undefined
reference" errors. As a result, it fails to build from source using
gcc5. However, if we move the definitions to list.h and add "extern
inline" declarations to list.c, which does compile using C99 and later,
then it no longer compiles using gnu90, the default for gcc4. To avoid
this mess, we remove the inline keywords altogether.
Author: Doug Torrance <dtorrance@piedmont.edu>
2020-05-17 Doug Torrance <dtorrance@piedmont.edu>
* imported Upstream version 0.0.2
|