summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-02-12 Add envfile; prepare for 2.5.1.0Laurent Bercot
2018-07-28 with pthread support for nsssLaurent Bercot
2018-07-28 Add nsss support (for homeof)Laurent Bercot
2018-07-21 Adapt to skalibs-2.7.0.0, prepare for 2.5.0.1Laurent Bercot
2018-03-21 Use sig0_scan in trap.cLaurent Bercot
2018-03-16 Remove import, prepare for 2.5.0.0Laurent Bercot
2017-12-25 Remove env_getLaurent Bercot
2017-11-17 bugfix: segfault in execlineb when both $@ and script are emptyLaurent Bercot
2017-08-22 More conversion to xpathexec, make exit code change consistent across binariesLaurent Bercot
2017-07-16 Propagate fd_close() changesLaurent Bercot
2017-05-18 Use xpathexec_* functionsLaurent Bercot
2017-04-28 Duh... don't forget half the NSIG instancesLaurent Bercot
2017-04-28 Use the new SKALIBS_NSIG in trap.c to accommodate OpenBSD snowflakinessLaurent Bercot
2017-04-28 trap.c: explicitly include skalibs/nonposix.h for proper NSIG definition ↵Laurent Bercot
on, you guessed it, the BSDs!
2017-04-28 trap.c: fix usage of NSIG (which is max+1, not max)Laurent Bercot
2017-04-28 Spell it out for OpenBSD: no, we don't want to trap SIGKILL or SIGSTOP, ↵Laurent Bercot
everything is going to be okay, now now, please don't cry
2017-04-13 Fix invalid variable name check in getpid (thanks jjk)Laurent Bercot
2017-04-11 bugfix: catch empty blocks in multidefineLaurent Bercot
2017-04-05 Replace memcpy with memmove in el_substitute (copying into the same string!)Laurent Bercot
2017-03-13 More superfluous headers cleanupLaurent Bercot
2017-03-12 Fix a few omissionsLaurent Bercot
2017-03-08 Fix typo in the import obsolescence warningLaurent Bercot
2017-03-08 Make it build with skalibs 2.5.0.0Laurent Bercot
2017-03-08 Adapt to skalibs 2.5.0.0 APILaurent Bercot
2017-01-10 Revert size_t *, put a temporary XXX until skalibs changesLaurent Bercot
2017-01-07 Types fix: first passLaurent Bercot
This pass makes variable size_t-ready, so everything works when the prototypes are fixed in skalibs. Some code uses "unsigned int *" where it should be "size_t *"; it cannot be changed now, but it's been marked with XXX. It must change at the same time as the skalibs API.
2016-10-16 bugfix: runblock -r segfaulted on too few arguments (thanks jjk)Laurent Bercot
2016-10-16 Add the -s option to execlineb (suggested by jjk)Laurent Bercot
2016-10-15 Implement a timeout in waitLaurent Bercot
2016-10-11 bugfix: backtick segfaulted on empty remainder (thanks jjk)Laurent Bercot
2016-10-08 bugfix: tryexec -n segfaulted with empty remainder (thanks muhmuhten)Laurent Bercot
2016-08-16 Apply Eric's patch for spawn supportLaurent Bercot
2016-08-12 Add spawn_lib supportLaurent Bercot
2016-07-26 Help text fix for ifelseLaurent Bercot
2016-06-18 Revert backtick to a non-wrapper; add -I to backtick and withstdinasLaurent Bercot
2016-03-20 Add -px/-po support to forx (thanks Aranea); rc for 2.1.5.0Laurent Bercot
2015-11-14 - more intuitive error message for backtick without a remainderLaurent Bercot
- rc for 2.1.4.5
2015-09-21 Add the getcwd programLaurent Bercot
2015-08-14 Add withstdinasLaurent Bercot
2015-08-13 Add EXECLINE_BLOCK_*_STRING macrosLaurent Bercot
2015-08-12 Link shared libs against their -l deps, better libpath managementLaurent Bercot
2015-08-11 - typo fix in configureLaurent Bercot
- do not depend on /bin/true
2015-06-09 Real fix for the race condition in forstdin.c.Laurent Bercot
It was totally idiotic and I didn't see it; Olivier Brunel did. Herp derp.
2015-05-16 - bugfix for forbacktickx: now stdin is correctly transmitted to the loopLaurent Bercot
- possible bugfix for forstdin: -p was failing in some cases with ECHILD in the final waitn. I couldn't figure it out (the code looked right...) so I changed the logic, scrapping the call to waitn. - rc for 2.1.2.2
2015-05-09 - Fix pipeline when stdin or stdout is closedLaurent Bercot
- rc for 2.1.2.1
2015-05-05 - add trapv2.1.2.0Laurent Bercot
- rc for 2.1.2.0
2015-03-26 - added el_parse() and friendsLaurent Bercot
- refactored execlineb to use them - version: rc for 2.1.1.1
2015-02-26 - added forstdinv2.1.1.0Laurent Bercot
- rewrote forbacktickx as a wrapper around forstdin - removed el_obsolescent - version: rc for 2.1.1.0
2015-02-19 - exit code overhaul: forx, forbacktickx, loopwhilex, if, ifelse, ifte,v2.1.0.0Laurent Bercot
ifthenelse - new -o option to forx, forbacktickx, loopwhilex - documentation updated - version: rc for 2.1.0.0
2015-01-31 Bugfix: ifthenelse (thanks Olivier Brunel)Laurent Bercot