kde-cygwin--cvs Mailing List for KDE on Cygwin (Page 130)
Status: Inactive
Brought to you by:
habacker
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(88) |
Jul
(27) |
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
(20) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(23) |
Feb
(25) |
Mar
(9) |
Apr
(88) |
May
(137) |
Jun
(244) |
Jul
(52) |
Aug
(17) |
Sep
(1) |
Oct
(12) |
Nov
(124) |
Dec
(42) |
2003 |
Jan
(112) |
Feb
(53) |
Mar
(24) |
Apr
(6) |
May
|
Jun
(63) |
Jul
(64) |
Aug
(151) |
Sep
(5) |
Oct
(87) |
Nov
(58) |
Dec
(13) |
2004 |
Jan
(76) |
Feb
(22) |
Mar
(30) |
Apr
(41) |
May
(4) |
Jun
(60) |
Jul
(39) |
Aug
(217) |
Sep
(165) |
Oct
(90) |
Nov
(72) |
Dec
(60) |
2005 |
Jan
(153) |
Feb
(110) |
Mar
(76) |
Apr
(237) |
May
(60) |
Jun
(20) |
Jul
(39) |
Aug
(8) |
Sep
(136) |
Oct
(39) |
Nov
|
Dec
|
2006 |
Jan
(16) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ralf H. <hab...@us...> - 2001-07-19 12:08:03
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/mediatool In directory usw-pr-cvs1:/tmp/cvs-serv2396/mediatool Modified Files: kaudio.cpp kaudio.h Log Message: enabled prelimary sound support as static lib Index: kaudio.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/mediatool/kaudio.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** kaudio.cpp 2001/05/20 08:58:56 1.2 --- kaudio.cpp 2001/07/19 12:08:01 1.3 *************** *** 34,38 **** #define maxFnameLen 256 ! #ifdef KAUDIO_SUPPORT KAudio::KAudio() : QObject() --- 34,38 ---- #define maxFnameLen 256 ! #ifndef __CYGWIN__ KAudio::KAudio() : QObject() *************** *** 237,278 **** } #else ! // Kaudio-Dummy-Implementation KAudio::KAudio() : QObject() { ! ServerContacted = false; } - bool KAudio::play() { ! return false; } bool KAudio::play(QString& filename) { ! return false; ! } - bool KAudio::play(const char *filename) { ! return false; } bool KAudio::setFilename(QString& filename) { ! return false; } bool KAudio::setFilename(const char *filename) { ! return false; } - bool KAudio::stop() { ! return false; } --- 237,284 ---- } #else ! // Kaudio-Cygwin-Implementation ! #include <process.h> KAudio::KAudio() : QObject() { ! ServerContacted = true; } bool KAudio::play() { ! if (WAVname[0] =='\0') ! return false; ! ! int ret = spawnl(_P_NOWAITO,"/bin/cp","cp",WAVname,"/dev/dsp",NULL); ! return true; } bool KAudio::play(QString& filename) { ! setFilename(filename.data()); ! return play(); } bool KAudio::play(const char *filename) { ! setFilename(filename); ! return play(); } bool KAudio::setFilename(QString& filename) { ! strcpy(WAVname,filename.data()); ! return true; } + bool KAudio::setFilename(const char *filename) { ! strcpy(WAVname,filename); ! return true; } bool KAudio::stop() { ! return true; } *************** *** 292,299 **** --- 298,321 ---- void KAudio::setSignals(bool sigs) { + if (sigs) { + if (!finishTimer) { + finishTimer = new QTimer(this); + connect ( finishTimer, SIGNAL(timeout()), this , SLOT(checkFinished()) ); + finishTimer->start(100); + } + } + else { + if (finishTimer) { + disconnect( finishTimer ); + finishTimer->stop(); + delete finishTimer; + finishTimer = 0; + } + } } void KAudio::checkFinished() { + emit playFinished(); } #endif Index: kaudio.h =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/mediatool/kaudio.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** kaudio.h 2001/05/20 08:58:56 1.2 --- kaudio.h 2001/07/19 12:08:01 1.3 *************** *** 29,37 **** #include <qtimer.h> - #ifdef KAUDIO_SUPPORT extern "C" { #include <mediatool.h> } - #endif /** --- 29,35 ---- *************** *** 145,150 **** private: bool ServerContacted; - #ifdef KAUDIO_SUPPORT bool autosync; char *WAVname; MdCh_FNAM* FnamChunk; --- 143,150 ---- private: bool ServerContacted; bool autosync; + #ifdef __CYGWIN__ + char WAVname[200]; + #else char *WAVname; MdCh_FNAM* FnamChunk; *************** *** 152,158 **** MdCh_IHDR* IhdrChunk; MdCh_STAT* StatChunk; QTimer *finishTimer; uint8 currentId; - #endif private slots: --- 152,158 ---- MdCh_IHDR* IhdrChunk; MdCh_STAT* StatChunk; + #endif QTimer *finishTimer; uint8 currentId; private slots: |
From: Ralf H. <hab...@us...> - 2001-07-19 12:06:49
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/mediatool In directory usw-pr-cvs1:/tmp/cvs-serv2178/mediatool Modified Files: Makefile.am Log Message: enabled prelimary sound support as static lib Index: Makefile.am =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/mediatool/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 2001/06/08 07:42:59 1.3 --- Makefile.am 2001/07/19 12:06:46 1.4 *************** *** 24,35 **** MEDIATOOLVERSION= 0.0 MEDIATOOLPATCH = 91 ! INCLUDES = -I$(top_srcdir)/kdecore $(QT_INCLUDES) $(X_INCLUDES) -DKAUDIO_SUPPORT ! libmediatool_la_SOURCES = chunk.c eventcounter.c \ ! connect.c filename.c playlist.c kaudio.cpp include_HEADERS= mediatool.h kaudio.h ! noinst_HEADERS = chunk.h playlist.h ! libmediatool_la_LDFLAGS = -version-info 2:0 -static libmediatool_la_LIBADD = ../kdecore/libkdecore.la $(LIBCOMPAT) -lipc libmediatool_la_METASOURCES = kaudio.moc --- 24,38 ---- MEDIATOOLVERSION= 0.0 MEDIATOOLPATCH = 91 ! INCLUDES = -I$(top_srcdir)/kdecore $(QT_INCLUDES) $(X_INCLUDES) ! #libmediatool_la_SOURCES = chunk.c eventcounter.c \ ! # connect.c filename.c playlist.c kaudio.cpp ! noinst_HEADERS = chunk.h playlist.h ! ! libmediatool_la_SOURCES = playlist.c kaudio.cpp include_HEADERS= mediatool.h kaudio.h ! #noinst_HEADERS = playlist.h ! libmediatool_la_LDFLAGS = -static -version-info 2:0 libmediatool_la_LIBADD = ../kdecore/libkdecore.la $(LIBCOMPAT) -lipc libmediatool_la_METASOURCES = kaudio.moc |
From: Ralf H. <hab...@us...> - 2001-07-19 12:06:11
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kspell In directory usw-pr-cvs1:/tmp/cvs-serv2042/kspell Modified Files: Makefile.am Log Message: removed redunant lib references Index: Makefile.am =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kspell/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 2001/06/08 07:42:59 1.3 --- Makefile.am 2001/07/19 12:06:08 1.4 *************** *** 25,29 **** lib_LTLIBRARIES = libkspell.la libkspell_la_LDFLAGS = -version-info 2:0 ! libkspell_la_LIBADD = ../kdeui/libkdeui.la ../kdecore/libkdecore.la $(qt_libraries)/libqt.la -L$(x_libraries) -lX11 -lXext include_HEADERS = kspell.h ksconfig.h kprocio.h kspelldlg.h --- 25,29 ---- lib_LTLIBRARIES = libkspell.la libkspell_la_LDFLAGS = -version-info 2:0 ! libkspell_la_LIBADD = ../kdeui/libkdeui.la ../kdecore/libkdecore.la include_HEADERS = kspell.h ksconfig.h kprocio.h kspelldlg.h |
From: Ralf H. <hab...@us...> - 2001-07-19 12:05:20
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kdeui In directory usw-pr-cvs1:/tmp/cvs-serv1815/kdeui Modified Files: Makefile.am Log Message: removed redunant lib references Index: Makefile.am =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kdeui/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 2001/06/08 07:42:59 1.3 --- Makefile.am 2001/07/19 12:05:17 1.4 *************** *** 25,29 **** lib_LTLIBRARIES = libkdeui.la libkdeui_la_LDFLAGS = -version-info 2:0 ! libkdeui_la_LIBADD = ../kdecore/libkdecore.la $(qt_libraries)/libqt.la -L$(x_libraries) -lX11 -lXext --- 25,29 ---- lib_LTLIBRARIES = libkdeui.la libkdeui_la_LDFLAGS = -version-info 2:0 ! libkdeui_la_LIBADD = ../kdecore/libkdecore.la |
From: Ralf H. <hab...@us...> - 2001-07-19 12:04:35
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs In directory usw-pr-cvs1:/tmp/cvs-serv1414 Modified Files: libtool.cygwin Log Message: disabled auto-image-base because of cygwin relocation problems Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/libtool.cygwin,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** libtool.cygwin 2001/06/22 11:46:10 1.11 --- libtool.cygwin 2001/07/19 12:04:32 1.12 *************** *** 150,154 **** # Commands used to build and install a shared archive. archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/lib\$libname.dll.a ! -Wl,--enable-auto-image-base -o \$lib -Wl,--export-all-symbols -Wl,--whole-archive \$libobjs -Wl,--no-whole-archive -lcygwin \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" --- 150,154 ---- # Commands used to build and install a shared archive. archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/lib\$libname.dll.a ! -Wl,--disable-auto-image-base,--image-base=0x10000000 -o \$lib -Wl,--export-all-symbols -Wl,--whole-archive \$libobjs -Wl,--no-whole-archive -lcygwin \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" *************** *** 156,160 **** postinstall_cmds="" postuninstall_cmds="" ! # -Wl,--disable-auto-image-base,--image-base=0x10000000 # Method to check whether dependent libraries are shared objects. --- 156,160 ---- postinstall_cmds="" postuninstall_cmds="" ! # -Wl,--enable-auto-image-base # Method to check whether dependent libraries are shared objects. |
From: Ralf H. <hab...@us...> - 2001-07-19 10:58:36
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm In directory usw-pr-cvs1:/tmp/cvs-serv20009 Modified Files: startkde Log Message: prelimary sound support Index: startkde =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/startkde,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** startkde 2001/06/15 11:58:45 1.3 --- startkde 2001/07/19 10:58:32 1.4 *************** *** 27,52 **** kcontrol -init ! # Start the common desktop tools in the background. ! # The sleeps reduce disk usage during startup. ! # kaudioserver will put itself in the background automagically ! #sleep 1 ; kaudioserver ! #(sleep 1 && exec kwmsound) & ! # Add -ncols 96 after kfm if using a 8-bit display ! #(sleep 1 && exec kfm) & kfm & - #(sleep 1 && exec krootwm) & - #(sleep 1 && exec kpanel) & - #(sleep 3 && exec kbgndwm) & krootwm & kpanel & kbgndwm & - #kikbd & - # finally, give the session control to the window manager ! #sleep 2 ; exec kwm kwm --- 27,47 ---- kcontrol -init ! # start soundserver if available ! if test -x $KDEDIR/bin/kaudioserver.exe; then ! kaudioserver ! fi ! # start sound ! kwmsound & ! # Start the common desktop tools in the background. kfm & krootwm & kpanel & kbgndwm & ! # finally, give the session control to the window manager kwm |
From: Ralf H. <hab...@us...> - 2001-07-19 10:58:13
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kaudio In directory usw-pr-cvs1:/tmp/cvs-serv19945 Modified Files: kplayaudio.cpp Makefile.am Log Message: prelimary sound support Index: kplayaudio.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kaudio/kplayaudio.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kplayaudio.cpp 2001/05/19 21:23:17 1.1.1.1 --- kplayaudio.cpp 2001/07/19 10:58:10 1.2 *************** *** 54,58 **** return 1; } ! return globalKapp->exec(); } --- 54,60 ---- return 1; } ! return 0; ! // this hangs because of unknown reason. Starting with gdb and sending break signal kills xserver ! // return globalKapp->exec(); } *************** *** 63,68 **** SimpleAudioClient::SimpleAudioClient() : QObject() { ! KAServer.setSignals(true); ! QObject::connect(&KAServer, SIGNAL(playFinished()), this, SLOT(quit())); } --- 65,70 ---- SimpleAudioClient::SimpleAudioClient() : QObject() { ! // KAServer.setSignals(true); ! // QObject::connect(&KAServer, SIGNAL(playFinished()), this, SLOT(quit())); } Index: Makefile.am =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kaudio/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Makefile.am 2001/05/19 21:23:17 1.1.1.1 --- Makefile.am 2001/07/19 10:58:10 1.2 *************** *** 2,23 **** # $Id$ ! INCLUDES = $(all_includes) ! LDFLAGS = $(all_libraries) $(KDE_RPATH) LDADD = -lmediatool $(LIB_KFILE) $(LIBUCB) $(LIBCOMPAT) ! maudio_SOURCES = io_oss.cpp maudio.cpp sample.cpp ! kaudioserver_SOURCES = kaudioserver.cpp demo_SOURCES = democlient.cpp kplayaudio_SOURCES = kplayaudio.cpp METASOURCES = democlient.moc kplayaudio.moc ! bin_PROGRAMS = maudio kaudioserver kplayaudio noinst_PROGRAMS = demo noinst_HEADERS = version.h maudio.h sample.h io_oss.h democlient.h kplayaudio.h ! datadir = $(kde_htmldir)/en/kmedia/ ! data_DATA = maudio.html ! EXTRA_DIST = $(data_DATA) VERSION README.kaudioserver kaudioserver.lsm maudio.lsm version.h: VERSION --- 2,24 ---- # $Id$ ! INCLUDES = $(all_includes) -DDEBUG ! LDFLAGS = $(all_libraries) $(KDE_RPATH) -v LDADD = -lmediatool $(LIB_KFILE) $(LIBUCB) $(LIBCOMPAT) ! #maudio_SOURCES = io_oss.cpp maudio.cpp sample.cpp ! #kaudioserver_SOURCES = kaudioserver.cpp demo_SOURCES = democlient.cpp kplayaudio_SOURCES = kplayaudio.cpp METASOURCES = democlient.moc kplayaudio.moc ! bin_PROGRAMS = kplayaudio # maudio kaudioserver noinst_PROGRAMS = demo noinst_HEADERS = version.h maudio.h sample.h io_oss.h democlient.h kplayaudio.h + noinst_HEADERS = kplayaudio.h ! #datadir = $(kde_htmldir)/en/kmedia/ ! #data_DATA = maudio.html ! #EXTRA_DIST = $(data_DATA) VERSION README.kaudioserver kaudioserver.lsm maudio.lsm version.h: VERSION |
From: Ralf H. <hab...@us...> - 2001-07-19 10:56:54
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase In directory usw-pr-cvs1:/tmp/cvs-serv19524 Modified Files: libtool.cygwin Log Message: removed linking with -lc Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/libtool.cygwin,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** libtool.cygwin 2001/06/14 11:01:25 1.6 --- libtool.cygwin 2001/07/19 10:56:50 1.7 *************** *** 1546,1550 **** # Add libc to deplibs on all systems. dependency_libs="$deplibs" ! deplibs="$deplibs -lc" fi --- 1546,1551 ---- # Add libc to deplibs on all systems. dependency_libs="$deplibs" ! # cfg says never to link with -lc ! # deplibs="$deplibs -lc" fi |
From: Ralf H. <hab...@us...> - 2001-07-17 19:53:11
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv12218 Modified Files: index.php Log Message: added mailing list notes Index: index.php =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/index.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** index.php 2001/06/27 14:41:28 1.9 --- index.php 2001/07/17 19:53:06 1.10 *************** *** 135,139 **** <h2>Mailing lists</h2> <ul> ! <li><a href="http://master.kde.org/mailman/listinfo/kde-cygwin">kde...@kd...</a> <br> </li> </ul> --- 135,141 ---- <h2>Mailing lists</h2> <ul> ! <li><a href="http://master.kde.org/mailman/listinfo/kde-cygwin">kde...@kd...</a> ! - Please send all notes and questions to this list and <b>not</b> to the ! kde-cygwin sourceforge discussion forum. </li> </ul> |
From: Ralf H. <hab...@us...> - 2001-06-27 14:41:32
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv10730 Modified Files: index.php Log Message: added vacation message Index: index.php =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/index.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** index.php 2001/06/27 11:56:48 1.8 --- index.php 2001/06/27 14:41:28 1.9 *************** *** 168,172 **** <p> ! <a href="mailto:hab...@so...">hab...@so...</a> </p> <p> <a href="http://sourceforge.net/project/memberlist.php?group_id=27249">other --- 168,173 ---- <p> ! <a href="mailto:hab...@so...">hab...@so...</a> (on ! vacation from Juni 28 to July 20) </p> <p> <a href="http://sourceforge.net/project/memberlist.php?group_id=27249">other |
From: Ralf H. <hab...@us...> - 2001-06-27 11:56:52
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv2273 Modified Files: index.php Log Message: updated new.kde.org topics Index: index.php =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/index.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** index.php 2001/06/25 09:08:02 1.7 --- index.php 2001/06/27 11:56:48 1.8 *************** *** 111,116 **** <li> <a href="http://xfree.cygwin.com/">Cygwin/XFree86<br> </a> ! <li> relating news on <a href="http://dot.kde.org/990126889">dot.kde.org</a><a href="http://dot.kde.org/990126889"><br> ! </a> </ul> --- 111,122 ---- <li> <a href="http://xfree.cygwin.com/">Cygwin/XFree86<br> </a> ! </ul> ! ! <p> Topics on <b>news.kde.org</b> </p> ! <ul> ! <li> <a href="http://dot.kde.org/990126889">KDE on Windows ?</a> ! from 2001, Thursday May 17 ! <li> <a href="http://news.kde.org/993610099/">Trolltech: ! No-Charge License for Qt/Windows</a> from 2001, Tuesday June 26 </ul> |
From: Ralf H. <hab...@us...> - 2001-06-25 09:18:47
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv16393 Modified Files: faq.html Log Message: new topic compiling qt apps added Index: faq.html =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/faq.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** faq.html 2001/06/25 09:09:39 1.5 --- faq.html 2001/06/25 09:18:44 1.6 *************** *** 104,113 **** <tr> <td width="6%"></td> ! <td width="94%"><font face="Courier">g++ -L/usr/local/lib/qt2/lib -Wl,-rpath,/usr/local/lib/qt2/lib -o ! ./desktop desktop.o -lqt -lz<br> ! <b>Warning: resolving Qt::white by linking to __imp___2Qt$white (auto-import)<br> ! Warning: resolving QString::shared_null by linking to __imp___7QString$shared_null ! (auto-import)<br> ! Warning: resolving _qApp by linking to __imp__qApp (auto-import) </b></font></td> </tr> </table> --- 104,111 ---- <tr> <td width="6%"></td> ! <td width="94%"><font face="Courier" size="1">g++ -L/usr/local/lib/qt2/lib -Wl,-rpath,/usr/local/lib/qt2/lib -o ./xmlquotes main.o quoteparser.o richtext.o moc_richtext.o -lqt -lz<br> ! Warning: resolving QString::shared_null by linking to __imp___7QString$shared_null (auto-import)<br> ! Warning: resolving QString::null by linking to __imp___7QString$null (auto-import)<br> ! Warning: resolving _qApp by linking to __imp__qApp (auto-import)</font></td> </tr> </table> |
From: Ralf H. <hab...@us...> - 2001-06-25 09:09:42
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv14886 Modified Files: faq.html Log Message: new topic compiling qt apps added Index: faq.html =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/faq.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** faq.html 2001/06/20 19:39:39 1.4 --- faq.html 2001/06/25 09:09:39 1.5 *************** *** 37,41 **** running(games for example), but the desktop communcation isn't working. ! <p> <h3>How hard was it to do the porting ?</h3> It was quite easy. I think for kde 1.1.2 I have patched only about 100 lines. Most of my --- 37,41 ---- running(games for example), but the desktop communcation isn't working. ! <h3> </h3> <h3>How hard was it to do the porting ?</h3> It was quite easy. I think for kde 1.1.2 I have patched only about 100 lines. Most of my *************** *** 94,98 **** is the standard os in many companies. How could this fact be used to enforce kde propagation ? The answer is simple: Build something that allow kde application ! running on top on windows. This goal we try to reach with this project. <h2>Contact</h2> <a href="mailto:hab...@so...">hab...@so...</a><br> --- 94,118 ---- is the standard os in many companies. How could this fact be used to enforce kde propagation ? The answer is simple: Build something that allow kde application ! running on top on windows. This goal we try to reach with this project. <h3> </h3> ! <h3>How do I link qt applications ?</h3> ! <p>Look at a makefile of the example or tutorial dir in the source distribution ! of qt. The most importend point is to link wth the import library in the lib ! directory, not the dll directly. One can verify proper operation of the linker. ! On linking the linker prints some "auto-import" lines depending of the ! used qt objects. At least the line showing _qApp is recommended. <br> ! <table border="0" width="100%"> ! <tr> ! <td width="6%"></td> ! <td width="94%"><font face="Courier">g++ -L/usr/local/lib/qt2/lib -Wl,-rpath,/usr/local/lib/qt2/lib -o ! ./desktop desktop.o -lqt -lz<br> ! <b>Warning: resolving Qt::white by linking to __imp___2Qt$white (auto-import)<br> ! Warning: resolving QString::shared_null by linking to __imp___7QString$shared_null ! (auto-import)<br> ! Warning: resolving _qApp by linking to __imp__qApp (auto-import) </b></font></td> ! </tr> ! </table> ! ! <p> ! <h2> </h2> <h2>Contact</h2> <a href="mailto:hab...@so...">hab...@so...</a><br> |
From: Ralf H. <hab...@us...> - 2001-06-25 09:08:06
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv14587 Modified Files: index.php Log Message: bug fixing Index: index.php =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/index.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** index.php 2001/06/20 19:39:39 1.6 --- index.php 2001/06/25 09:08:02 1.7 *************** *** 155,159 **** Corinna Vinschen and other)</li> <li>the cygwin-xfree team for building this very good x-server (Suhaib ! Sidiqi, Harol Hunt and other)</li> </ul> --- 155,159 ---- Corinna Vinschen and other)</li> <li>the cygwin-xfree team for building this very good x-server (Suhaib ! Siddiqi, Harold Hunt and other)</li> </ul> |
From: Ralf H. <hab...@us...> - 2001-06-22 11:56:42
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/dist In directory usw-pr-cvs1:/tmp/cvs-serv17463 Modified Files: pack_kde Added Files: Makefile.cygwin Log Message: added cygwin/binutils installation --- NEW FILE: Makefile.cygwin --- # note: docs are missing INSTALL=install ROOT=${HOME}/tmp/kde/cygwin-1.3.2-1/build/i686-pc-cygwin install: all cygwin1: cygwin tar all: libiberty newlib cygwin utils tar libiberty: # because of bug in install script install -d usr/lib cd ${ROOT}/libiberty && make ${INSTALL} -e prefix=/usr/local/build/cygwin/usr newlib: cd ${ROOT}/newlib && make ${INSTALL} -e prefix=/usr/local/build/cygwin/usr cp -a usr/i686-pc-cygwin/lib/* usr/lib install -d usr/include cp -a usr/i686-pc-cygwin/include/* usr/include rm -r usr/i686-pc-cygwin cygwin: cd ${ROOT}/winsup/cygwin && make ${INSTALL} -e prefix=/usr/local/build/cygwin/usr utils: cd ${ROOT}/winsup/utils && make ${INSTALL} -e prefix=/usr/local/build/cygwin/usr tar: tar -cjvf ${HOME}/tmp/kde/kde-1.1.2/dist/cygwin-1.3.2-2.tar.bz2 usr publish: rm /install/cygwin/kde-1.1.2/cygwin-1.* cp ${HOME}/tmp/kde/kde-1.1.2/dist/cygwin-1.3.2-2.tar.bz2 /install/cygwin/kde-1.1.2 rebuild: cinstall_import /install/cygwin/kde-1.1.2 /install/cygwin/kde-1.1.2/setup.ini .PHONY:cygwin tar libiberty newlib utils publish rebuild Index: pack_kde =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/dist/pack_kde,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** pack_kde 2001/06/12 12:37:16 1.3 --- pack_kde 2001/06/22 11:56:39 1.4 *************** *** 23,31 **** VERSION=-1.1.2 ! SRCBASE=$HOME/tmp/kde/kde$VERSION PUBLISHDIR=//optiplexgxproii/anwendungen/win/cygwin/kde-1.1.2 # dir for imcoming downloads ! DOWNLOAD=/download # # --- 23,32 ---- VERSION=-1.1.2 ! SRCROOT=$HOME/tmp/kde ! SRCBASE=$SRCROOT/kde$VERSION PUBLISHDIR=//optiplexgxproii/anwendungen/win/cygwin/kde-1.1.2 # dir for imcoming downloads ! DOWNLOAD=$HOME/tar/kde # # *************** *** 36,40 **** DATE=`date +%Y%m%d` ! PACKAGE="support libs base games utils misc devel ld X11 qt1" --- 37,41 ---- DATE=`date +%Y%m%d` ! PACKAGE="support libs base games utils misc devel binutils X11 qt1" *************** *** 47,50 **** --- 48,52 ---- echo " rebuild - rebuild CYGWIN-Installer setup database" echo " test - test a package (base, games, utils)" + echo " list - list all supported packages" echo echo "part = support | libs | base | games | utils | misc | <blank>" *************** *** 61,64 **** --- 63,71 ---- fi + if test $MODE = "list"; then + echo $PACKAGE + exit 0 + fi + if test $MODE = "install"; then *************** *** 84,89 **** # install package cd $SRCDIR$PART ! make -e prefix=$BUILDBASE install-strip ! # do special post install actions if test "x$PART" = "xbase"; then --- 91,98 ---- # install package cd $SRCDIR$PART ! ! # install instead of install-strip used because kdegames does not support this ! make -e prefix=$BUILDBASE install ! # do special post install actions if test "x$PART" = "xbase"; then *************** *** 107,113 **** # create devel package if test "x$PART" = "xsupport" || test "x$PART" = "xlibs"; then ! install -d $DEVELBASE ! mv $BUILDBASE/include/* $DEVELBASE/include ! mv $BUILDBASE/lib/* $DEVELBASE/lib rm -r $BUILDBASE/include rm -r $BUILDBASE/lib --- 116,123 ---- # create devel package if test "x$PART" = "xsupport" || test "x$PART" = "xlibs"; then ! install -d $DEVELBASE/include ! install -d $DEVELBASE/lib ! mv $BUILDBASE/include/* $DEVELBASE/include ! mv $BUILDBASE/lib/* $DEVELBASE/lib rm -r $BUILDBASE/include rm -r $BUILDBASE/lib *************** *** 128,140 **** ;; misc) - # misc dateien installieren - X=$PWD - MYHOME=home/administrator rm -r $BUILDBASE ! install -d $BUILDBASE/$MYHOME ! cd /home/habacker ! cp .xinitrc .xserverrc $BUILDBASE/$MYHOME ! cp /startkde1.bat $BUILDBASE/ ! cd $X ;; --- 138,145 ---- ;; misc) rm -r $BUILDBASE ! install -d $BUILDBASE ! cd $SRCDIR$PART ! make -e prefix=$BUILDBASE install-strip ;; *************** *** 146,159 **** ;; - # install special ld build - ld) - echo "not implemented yet" - # LDBUILD=$BUILDROOT/usr/i868-pc-cygwin-ai - # X=$PWD - # cd /home/habacker/src/cygipc - # make -e prefix="/usr/local/cygipc/usr" install - # cd $X - ;; - X11) echo "nothing to install" --- 151,154 ---- *************** *** 164,167 **** --- 159,183 ---- ;; + # install special binutils build + binutils) + BUILDDIR=$BUILDROOT/binutils + X=$PWD + cd $SRCROOT/binutils-20010425-2 + make -e prefix="$BUILDDIR/usr" install + find "$BUILDDIR" \( -name '*.exe' -or -name '*.dll' \) -print -exec sh -c "ls -l {}; strip -s {}; ls -l {}" \; + find "$BUILDDIR" -name '*.a' -print -exec sh -c "ls -l {}; strip -g {}; ls -l {}" \; + cd $X + ;; + + # install cygwin build + cygwin) + BUILDDIR=$BUILDROOT/cygwin + X=$PWD + make -f Makefile.cygwin -e prefix="$BUILDDIR/usr" install + find "$BUILDDIR" \( -name '*.exe' -or -name '*.dll' \) -print -exec sh -c "ls -l {}; strip -s {}; ls -l {}" \; + find "$BUILDDIR" -name '*.a' -print -exec sh -c "ls -l {}; strip -g {}; ls -l {}" \; + cd $X + ;; + # all other packages *) *************** *** 228,231 **** --- 244,269 ---- cd $X cp $DOWNLOAD/cygipc*-src.tar.gz $X + ;; + + binutils) + X=$PWD + FILEBASE=binutils-20010425-2-auto-import + LDBUILD=$BUILDROOT/binutils + cd $LDBUILD + tar -cjvf $X/$FILEBASE-bin.tar.bz2 usr + cd $X + cp $DOWNLOAD/$FILEBASE-src.tar.bz2 $X + ;; + + cygwin) + X=$PWD + FILEBASE=cygwin-1.3.2-1 + LDBUILD=$BUILDROOT/cygwin + cd $LDBUILD + tar -cjvf $X/$FILEBASE-patched-bin.tar.bz2 usr + cd $DOWNLOAD + tar -cjvf $X/$FILEBASE-patched-diff.tar.bz2 af_unix-socket-security-race-fix* + cp $FILEBASE-src.tar.gz $X/ + cd $X ;; |
From: Ralf H. <hab...@us...> - 2001-06-22 11:46:13
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs In directory usw-pr-cvs1:/tmp/cvs-serv15661/kdelibs Modified Files: libtool.cygwin Log Message: fixed bug in installing dlls Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/libtool.cygwin,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** libtool.cygwin 2001/06/22 11:27:03 1.10 --- libtool.cygwin 2001/06/22 11:46:10 1.11 *************** *** 2639,2643 **** XX=`echo $i | egrep "\.dll$"` if test -n "$XX" ; then ! xdestdir=`echo $destdir | sed s#lib#bin#g` $show "$install_prog $dir/$i $xdestdir/$i" $run eval "$install_prog -d $xdestdir" || exit $? --- 2639,2643 ---- XX=`echo $i | egrep "\.dll$"` if test -n "$XX" ; then ! xdestdir=`echo $destdir | sed s#/lib#/bin#g` $show "$install_prog $dir/$i $xdestdir/$i" $run eval "$install_prog -d $xdestdir" || exit $? |
From: Ralf H. <hab...@us...> - 2001-06-22 11:46:13
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdesupport In directory usw-pr-cvs1:/tmp/cvs-serv15661/kdesupport Modified Files: libtool.cygwin Log Message: fixed bug in installing dlls Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdesupport/libtool.cygwin,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** libtool.cygwin 2001/06/22 11:27:03 1.10 --- libtool.cygwin 2001/06/22 11:46:10 1.11 *************** *** 2638,2642 **** XX=`echo $i | egrep "\.dll$"` if test -n "$XX" ; then ! xdestdir=`echo $destdir | sed s#lib#bin#g` $show "$install_prog $dir/$i $xdestdir/$i" $run eval "$install_prog -d $xdestdir" || exit $? --- 2638,2642 ---- XX=`echo $i | egrep "\.dll$"` if test -n "$XX" ; then ! xdestdir=`echo $destdir | sed s#/lib#/bin#g` $show "$install_prog $dir/$i $xdestdir/$i" $run eval "$install_prog -d $xdestdir" || exit $? |
From: Ralf H. <hab...@us...> - 2001-06-22 11:27:08
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdesupport In directory usw-pr-cvs1:/tmp/cvs-serv13048/kdesupport Modified Files: libtool.cygwin Log Message: removed linking with -lc Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdesupport/libtool.cygwin,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** libtool.cygwin 2001/06/14 10:58:10 1.9 --- libtool.cygwin 2001/06/22 11:27:03 1.10 *************** *** 151,155 **** archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/lib\$libname.dll.a -Wl,--disable-auto-image-base,--image-base=0x10000000 ! -o \$lib -Wl,--whole-archive \$libobjs -Wl,--no-whole-archive \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" archive_sym_cmds="" --- 151,155 ---- archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/lib\$libname.dll.a -Wl,--disable-auto-image-base,--image-base=0x10000000 ! -o \$lib -Wl,--whole-archive \$libobjs -Wl,--no-whole-archive -lcygwin \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" archive_sym_cmds="" *************** *** 1546,1550 **** # Add libc to deplibs on all systems. dependency_libs="$deplibs" ! deplibs="$deplibs -lc" fi --- 1546,1551 ---- # Add libc to deplibs on all systems. dependency_libs="$deplibs" ! # cfg says not to link with -lc ! # deplibs="$deplibs -lc" fi |
From: Ralf H. <hab...@us...> - 2001-06-22 11:27:07
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs In directory usw-pr-cvs1:/tmp/cvs-serv13048/kdelibs Modified Files: libtool.cygwin Log Message: removed linking with -lc Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/libtool.cygwin,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** libtool.cygwin 2001/06/14 10:58:10 1.9 --- libtool.cygwin 2001/06/22 11:27:03 1.10 *************** *** 55,59 **** # Whether or not to build static libraries. ! build_old_libs=no # The host system. --- 55,59 ---- # Whether or not to build static libraries. ! build_old_libs=yes # The host system. *************** *** 150,159 **** # Commands used to build and install a shared archive. archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/lib\$libname.dll.a ! -Wl,--disable-auto-image-base,--image-base=0x10000000 ! -o \$lib -Wl,--whole-archive \$libobjs -Wl,--no-whole-archive \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" archive_sym_cmds="" postinstall_cmds="" postuninstall_cmds="" # Method to check whether dependent libraries are shared objects. --- 150,160 ---- # Commands used to build and install a shared archive. archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/lib\$libname.dll.a ! -Wl,--enable-auto-image-base ! -o \$lib -Wl,--export-all-symbols -Wl,--whole-archive \$libobjs -Wl,--no-whole-archive -lcygwin \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" archive_sym_cmds="" postinstall_cmds="" postuninstall_cmds="" + # -Wl,--disable-auto-image-base,--image-base=0x10000000 # Method to check whether dependent libraries are shared objects. *************** *** 1546,1550 **** # Add libc to deplibs on all systems. dependency_libs="$deplibs" ! deplibs="$deplibs -lc" fi --- 1547,1552 ---- # Add libc to deplibs on all systems. dependency_libs="$deplibs" ! # cfg says not to link with -lc ! # deplibs="$deplibs -lc" fi |
From: Ralf H. <hab...@us...> - 2001-06-22 08:37:25
|
Update of /cvsroot/kde-cygwin/kde-1.1.2 In directory usw-pr-cvs1:/tmp/cvs-serv19861 Modified Files: README.compile Log Message: updated Index: README.compile =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/README.compile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** README.compile 2001/06/11 08:00:54 1.3 --- README.compile 2001/06/22 08:37:21 1.4 *************** *** 24,28 **** --- 24,30 ---- ld 2.11 with auto-import patch http://kde-cygwin.sf.net + Note: Mostly files marked as from "http://mirrors.rcn.net/pub/sourceware/latest/..." could be installed with the cygwin installer. + Generall hints -------------- *************** *** 33,38 **** 2. Currently the configure stuff is buggy because of depending automake/autoconf. So after checkout the repository and configuring there are some thing left to do. - Installation for compiling --- 35,41 ---- 2. Currently the configure stuff is buggy because of depending automake/autoconf. So after checkout the repository and configuring there are some thing left to do. + 3. Before reconfiguring please delete config.cache file, otherwise unwanted effects will occur. + Installation for compiling |
From: Ralf H. <hab...@us...> - 2001-06-22 06:05:06
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdegames/admin In directory usw-pr-cvs1:/tmp/cvs-serv30917 Removed Files: automoc Log Message: removed file --- automoc DELETED --- |
From: Ralf H. <hab...@us...> - 2001-06-21 13:00:05
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdeutils In directory usw-pr-cvs1:/tmp/cvs-serv2146 Modified Files: configure.in.in Log Message: removed compilation of kfloppy Index: configure.in.in =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/configure.in.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** configure.in.in 2001/06/06 13:02:53 1.1.1.1 --- configure.in.in 2001/06/21 13:00:02 1.2 *************** *** 152,155 **** --- 152,157 ---- ]) + ac_cv_compile_kfloppy=no + AC_MSG_RESULT($ac_cv_compile_kfloppy) if test "$ac_cv_compile_kfloppy" = "no"; then |
From: Ralf H. <hab...@us...> - 2001-06-21 12:55:56
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/po/sl In directory usw-pr-cvs1:/tmp/cvs-serv1560 Removed Files: Makefile Makefile.in Log Message: removed intermediate files --- Makefile DELETED --- --- Makefile.in DELETED --- |
From: Ralf H. <hab...@us...> - 2001-06-21 12:54:51
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/klpq In directory usw-pr-cvs1:/tmp/cvs-serv1216/klpq Modified Files: main.cpp Log Message: added missing header Index: main.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/klpq/main.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** main.cpp 2001/06/06 13:09:17 1.1.1.1 --- main.cpp 2001/06/21 12:54:48 1.2 *************** *** 37,40 **** --- 37,41 ---- #include <kapp.h> #include <drag.h> + #include <getopt.h> #include "klpq.h" |
From: Ralf H. <hab...@us...> - 2001-06-21 12:54:25
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/admin In directory usw-pr-cvs1:/tmp/cvs-serv1130 Modified Files: acinclude.m4.in Log Message: fix installation path problems Index: acinclude.m4.in =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/admin/acinclude.m4.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** acinclude.m4.in 2001/06/06 13:03:09 1.1.1.1 --- acinclude.m4.in 2001/06/21 12:54:22 1.2 *************** *** 347,351 **** fi ! bindir=$kde_bindir ]) --- 347,351 ---- fi ! #bindir=$kde_bindir ]) |