Only in licq-1.3.4-RC1/plugins/console: config.log
Only in licq-1.3.4-RC1/plugins/console: libtool
Only in licq-1.3.4-RC1/plugins/msn: Makefile
Only in licq-1.3.4-RC1/plugins/msn: config.h
Only in licq-1.3.4-RC1/plugins/msn: config.log
Only in licq-1.3.4-RC1/plugins/msn: config.status
Only in licq-1.3.4-RC1/plugins/msn: libtool
Only in licq-1.3.4-RC1/plugins/msn/src: .deps
Only in licq-1.3.4-RC1/plugins/msn/src: .libs
Only in licq-1.3.4-RC1/plugins/msn/src: Makefile
Only in licq-1.3.4-RC1/plugins/msn/src: msn-sb.lo
Only in licq-1.3.4-RC1/plugins/msn/src: msn-srv.lo
diff -ur licq-1.3.4-RC1.orig/plugins/msn/src/msn-ssl.cpp licq-1.3.4-RC1/plugins/msn/src/msn-ssl.cpp
|
old
|
new
|
|
| 77 | 77 | { |
| 78 | 78 | fromPP+= 9; // skip to the tag |
| 79 | 79 | char *endTag = strchr(fromPP, '\''); |
| 80 | | tag = strndup(fromPP, endTag - fromPP); // Thanks, this is all we need |
| | 80 | strncpy(tag, fromPP, endTag - fromPP); // Thanks, this is all we need |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | CMSNPacket *pReply = new CPS_MSNSendTicket(tag); |
Only in licq-1.3.4-RC1/plugins/msn/src: msn-ssl.lo
Only in licq-1.3.4-RC1/plugins/msn/src: msn.lo
Only in licq-1.3.4-RC1/plugins/msn/src: msnbuffer.lo
Only in licq-1.3.4-RC1/plugins/msn/src: msnevent.lo
Only in licq-1.3.4-RC1/plugins/msn/src: msnpacket.lo
Only in licq-1.3.4-RC1/plugins/msn/src: plugin.lo
Only in licq-1.3.4-RC1/plugins/msn/src: protocol_msn.la
Only in licq-1.3.4-RC1/plugins/msn: stamp-h1
Only in licq-1.3.4-RC1/plugins/qt-gui: Makefile
diff -ur licq-1.3.4-RC1.orig/plugins/qt-gui/Makefile.in licq-1.3.4-RC1/plugins/qt-gui/Makefile.in
|
old
|
new
|
|
| 67 | 67 | DIST_SUBDIRS = $(SUBDIRS) |
| 68 | 68 | #>- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) |
| 69 | 69 | #>+ 4 |
| 70 | | KDE_DIST=README.KDE configure.in README.SLACKWARE README.QT-AND-GIFS Makefile.cvs README.SOLARIS Makefile.in aclocal.m4 acinclude.m4.in config.h.in acinclude.m4 Makefile.am am_edit |
| | 70 | KDE_DIST=stamp-h.in README.SLACKWARE README.QT-AND-GIFS README.SOLARIS Makefile.in config.h.in acinclude.m4.in README.KDE configure.in Makefile.cvs aclocal.m4 Makefile.am acinclude.m4 configure am_edit |
| 71 | 71 | |
| 72 | 72 | DISTFILES= $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) $(KDE_DIST) |
| 73 | 73 | |
| … |
… |
|
| 658 | 658 | # Otherwise a system limit (for SysV at least) may be exceeded. |
| 659 | 659 | .NOEXPORT: |
| 660 | 660 | |
| | 661 | |
| 661 | 662 | #>+ 2 |
| 662 | 663 | docs-am: |
| 663 | 664 | |
diff -ur licq-1.3.4-RC1.orig/plugins/qt-gui/acinclude.m4 licq-1.3.4-RC1/plugins/qt-gui/acinclude.m4
|
old
|
new
|
|
| 59 | 59 | |
| 60 | 60 | for qt_dir in $qt_library_dirs; do |
| 61 | 61 | if test -z $ac_kde || test "$ac_kde" = "no" || test "$kde_version" -ge 3; then |
| 62 | | if test -r "$qt_dir/libqt-mt.so"; then |
| | 62 | if test -r "$qt_dir/libqt-mt.so" -o -r "$qt_dir/libqt-mt.dylib"; then |
| 63 | 63 | ac_qt_libname=-lqt-mt |
| 64 | 64 | ac_qt_libdir=$qt_dir |
| 65 | 65 | break |
| … |
… |
|
| 67 | 67 | echo "tried $qt_dir/libqt-mt.so" >&AC_FD_CC |
| 68 | 68 | fi |
| 69 | 69 | |
| 70 | | if test -r "$qt_dir/libqt-mt.so.3"; then |
| | 70 | if test -r "$qt_dir/libqt-mt.so.3" -o -r "$qt_dir/libqt-mt.so.3.dylib"; then |
| 71 | 71 | ac_qt_libname=-lqt-mt |
| 72 | 72 | ac_qt_libdir=$qt_dir |
| 73 | 73 | break |
| … |
… |
|
| 144 | 144 | /usr/X11/lib/qt/include" |
| 145 | 145 | |
| 146 | 146 | if test -n "$QTDIR"; then |
| 147 | | qt_include_dirs="$QTDIR/include $qt_include_dirs" |
| | 147 | qt_include_dirs="$QTDIR/include $QTDIR/include/qt $QTDIR/include/qt3 $qt_include_dirs" |
| 148 | 148 | fi |
| 149 | 149 | |
| 150 | 150 | if test -n "$QTINC"; then |
diff -ur licq-1.3.4-RC1.orig/plugins/qt-gui/acinclude.m4.in licq-1.3.4-RC1/plugins/qt-gui/acinclude.m4.in
|
old
|
new
|
|
| 59 | 59 | |
| 60 | 60 | for qt_dir in $qt_library_dirs; do |
| 61 | 61 | if test -z $ac_kde || test "$ac_kde" = "no" || test "$kde_version" -ge 3; then |
| 62 | | if test -r "$qt_dir/libqt-mt.so"; then |
| | 62 | if test -r "$qt_dir/libqt-mt.so" -o -r "$qt_dir/libqt-mt.dylib"; then |
| 63 | 63 | ac_qt_libname=-lqt-mt |
| 64 | 64 | ac_qt_libdir=$qt_dir |
| 65 | 65 | break |
| … |
… |
|
| 67 | 67 | echo "tried $qt_dir/libqt-mt.so" >&AC_FD_CC |
| 68 | 68 | fi |
| 69 | 69 | |
| 70 | | if test -r "$qt_dir/libqt-mt.so.3"; then |
| | 70 | if test -r "$qt_dir/libqt-mt.so.3" -o -r "$qt_dir/libqt-mt.so.3.dylib"; then |
| 71 | 71 | ac_qt_libname=-lqt-mt |
| 72 | 72 | ac_qt_libdir=$qt_dir |
| 73 | 73 | break |
| … |
… |
|
| 144 | 144 | /usr/X11/lib/qt/include" |
| 145 | 145 | |
| 146 | 146 | if test -n "$QTDIR"; then |
| 147 | | qt_include_dirs="$QTDIR/include $qt_include_dirs" |
| | 147 | qt_include_dirs="$QTDIR/include $QTDIR/include/qt $QTDIR/include/qt3 $qt_include_dirs" |
| 148 | 148 | fi |
| 149 | 149 | |
| 150 | 150 | if test -n "$QTINC"; then |
Only in licq-1.3.4-RC1/plugins/qt-gui: autom4te.cache
Only in licq-1.3.4-RC1/plugins/qt-gui: config.h
Only in licq-1.3.4-RC1/plugins/qt-gui: config.log
Only in licq-1.3.4-RC1/plugins/qt-gui: config.status
diff -ur licq-1.3.4-RC1.orig/plugins/qt-gui/configure licq-1.3.4-RC1/plugins/qt-gui/configure
|
old
|
new
|
|
| 21471 | 21471 | /usr/X11/lib/qt/include" |
| 21472 | 21472 | |
| 21473 | 21473 | if test -n "$QTDIR"; then |
| 21474 | | qt_include_dirs="$QTDIR/include $qt_include_dirs" |
| | 21474 | qt_include_dirs="$QTDIR/include $QTDIR/include/qt $QTDIR/include/qt3 $qt_include_dirs" |
| 21475 | 21475 | fi |
| 21476 | 21476 | |
| 21477 | 21477 | if test -n "$QTINC"; then |
| … |
… |
|
| 21671 | 21671 | |
| 21672 | 21672 | for qt_dir in $qt_library_dirs; do |
| 21673 | 21673 | if test -z $ac_kde || test "$ac_kde" = "no" || test "$kde_version" -ge 3; then |
| 21674 | | if test -r "$qt_dir/libqt-mt.so"; then |
| | 21674 | if test -r "$qt_dir/libqt-mt.so" -o -r "$qt_dir/libqt-mt.dylib"; then |
| 21675 | 21675 | ac_qt_libname=-lqt-mt |
| 21676 | 21676 | ac_qt_libdir=$qt_dir |
| 21677 | 21677 | break |
| … |
… |
|
| 21679 | 21679 | echo "tried $qt_dir/libqt-mt.so" >&5 |
| 21680 | 21680 | fi |
| 21681 | 21681 | |
| 21682 | | if test -r "$qt_dir/libqt-mt.so.3"; then |
| | 21682 | if test -r "$qt_dir/libqt-mt.so.3" -o -r "$qt_dir/libqt-mt.so.3.dylib"; then |
| 21683 | 21683 | ac_qt_libname=-lqt-mt |
| 21684 | 21684 | ac_qt_libdir=$qt_dir |
| 21685 | 21685 | break |