Changeset 120f16d
- Timestamp:
- May 3, 2009, 7:47:55 PM (16 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 67dd774
- Parents:
- 11b9017 (diff), 96b5c81 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
perlconfig.c
r87dfeb7 r96b5c81 468 468 void owl_perlconfig_dispatch_free(owl_dispatch *d) 469 469 { 470 SvREFCNT_dec( d->data);470 SvREFCNT_dec((SV*)d->data); 471 471 owl_free(d); 472 472 } -
ChangeLog
r879e90dc r68f1afe 1 1.1.1 2 * Fix bogus errors 'subscribing to login messages'. -nelhage 3 * Correctly send Zephyr login notices at startup. -nelhage 4 * Fix compilation with Zephyr support. -alexmv 5 * Fix an issue with incoming Zephyrs being delayed. -asedeno 6 * Fix display of zpunt lines. -asedeno 7 * Handle invalid regular expressions better (fix a segfault). -nelhage 8 * Correctly handle zpunts with recipient %me%. -nelhage 9 * Always send outgoing Zephyrs in utf-8. -nelhage 10 * Fix documentation for 'zsig' and 'zisgproc'. -nelhage 11 * Fix personal replies on webzephyr. -geofft 12 * Fix two memory leaks formatting messages. -nelhage, andersk 13 * Fix Makefile on platforms with Solaris tar. -nelhage 14 1 15 1.1 2 16 * Support building with -fstack-protector. -hartmans -
Makefile.in
rf200413 r8e9acd2 133 133 ${INSTALL} -d ${DESTDIR}${datadir}/lib 134 134 ${INSTALL} -d ${DESTDIR}${datadir}/modules 135 tar -C perl/lib --exclude .svn -cf - . | tar -C ${DESTDIR}${datadir}/lib -xf -135 (cd perl/lib && tar --exclude .svn -cf - . ) | (cd ${DESTDIR}${datadir}/lib && tar -xf - ) 136 136 for i in $(PERL_MODULES); do \ 137 137 ${INSTALL_DATA} perl/modules/$$i/$$i.par ${DESTDIR}${datadir}/modules/$$i.par; \ -
owl.h
r19cc0b7e r4a999a7 52 52 53 53 #ifndef OWL_VERSION_STRING 54 #define OWL_VERSION_STRING "1.1. 1"54 #define OWL_VERSION_STRING "1.1.2" 55 55 #endif 56 56 -
scripts/do-release
r5319565 r11b9017 41 41 echo "Created release tarball for BarnOwl $VERS in $(pwd)" 42 42 echo "Remember to bump OWL_VERSION_STRING for future development." 43 44 COMMIT=$(git rev-parse "$TAG") 45 NOW=$(date +"%B %d, %Y") 46 cat <<EOF 47 * '''$NOW''': BarnOwl $VERS Released. [wiki:Download] it here. or see the [/browser/ChangeLog?rev=$COMMIT ChangeLog] 48 EOF
Note: See TracChangeset
for help on using the changeset viewer.