kde-cygwin--cvs Mailing List for KDE on Cygwin (Page 131)
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-06-21 12:53:51
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/admin In directory usw-pr-cvs1:/tmp/cvs-serv1010 Modified Files: automoc Log Message: fix renaming problematic Index: automoc =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/admin/automoc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** automoc 2001/06/06 13:03:09 1.1.1.1 --- automoc 2001/06/21 12:53:48 1.2 *************** *** 1,3 **** ! #! /usr/local/bin/perl # Changes Makefile.in to work correctly with moc files. When called --- 1,3 ---- ! #! /usr/bin/perl # Changes Makefile.in to work correctly with moc files. When called *************** *** 403,407 **** if ($errorflag == 0) { print FILEOUT "\n# DO_NOT_USE_AUTOMOC\n"; ! rename $newfilename, $filename; } else { system("rm $newfilename"); --- 403,408 ---- if ($errorflag == 0) { print FILEOUT "\n# DO_NOT_USE_AUTOMOC\n"; ! print STDERR $newfilename, $filename; ! system("mv $newfilename $filename"); } else { system("rm $newfilename"); |
From: Ralf H. <hab...@us...> - 2001-06-21 12:53:03
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/admin In directory usw-pr-cvs1:/tmp/cvs-serv890 Modified Files: Makefile.common Log Message: handles with perl bug Index: Makefile.common =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/admin/Makefile.common,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Makefile.common 2001/06/06 13:04:05 1.1.1.1 --- Makefile.common 2001/06/21 12:53:00 1.2 *************** *** 19,23 **** @echo "*** Building Makefile templates (step two)" @autoconf ! @if grep "ac_kw foo" configure &>/dev/null; then perl -p -i -e "s/ac_kw foo/ac_kw int foo/" configure; fi @echo "*** Creating date/time stamp" @touch stamp-h.in --- 19,23 ---- @echo "*** Building Makefile templates (step two)" @autoconf ! @if grep "ac_kw foo" configure >/dev/null; then cat configure | sed "s/ac_kw foo/ac_kw int foo/" > configure.tmp; mv configure.tmp configure ; fi @echo "*** Creating date/time stamp" @touch stamp-h.in *************** *** 36,40 **** perl admin/automoc; \ autoconf; \ ! if grep "ac_kw foo" configure &>/dev/null; then perl -p -i -e "s/ac_kw foo/ac_kw int foo/" configure; fi ;\ touch stamp-h.in; \ if test -d po; then \ --- 36,40 ---- perl admin/automoc; \ autoconf; \ ! if grep "ac_kw foo" configure >/dev/null; then cat configure | sed "s/ac_kw foo/ac_kw int foo/" > configure.tmp; mv configure.tmp configure ; fi ;\ touch stamp-h.in; \ if test -d po; then \ *************** *** 96,105 **** @files=`ls -1 | sort`; \ dirs=`for i in $$files; do if test -d $$i; then echo $$i; fi; done`; \ ! rm -f SUBDIRS ;\ for i in $$dirs; do \ ! echo $$i >> ./SUBDIRS; \ done ! @if test -r subdirs && diff subdirs SUBDIRS > /dev/null; then \ rm -f SUBDIRS.new; \ fi ! @test -r SUBDIRS && mv SUBDIRS subdirs --- 96,107 ---- @files=`ls -1 | sort`; \ dirs=`for i in $$files; do if test -d $$i; then echo $$i; fi; done`; \ ! rm -f SUBDIRS.tmp ;\ for i in $$dirs; do \ ! echo $$i >> ./SUBDIRS.tmp; \ done ! @if test -r subdirs && diff subdirs SUBDIRS.tmp > /dev/null; then \ rm -f SUBDIRS.new; \ fi ! @test -r SUBDIRS.tmp && mv SUBDIRS.tmp subdirs ! ! .PHONY: cvs |
From: Ralf H. <hab...@us...> - 2001-06-21 12:41:02
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdegames In directory usw-pr-cvs1:/tmp/cvs-serv31475 Modified Files: Makefile.in Log Message: updated Index: Makefile.in =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdegames/Makefile.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Makefile.in 2001/05/22 06:57:01 1.1.1.1 --- Makefile.in 2001/06/21 12:40:59 1.2 *************** *** 179,185 **** .SUFFIXES: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) ! cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps Makefile ! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status --- 179,185 ---- .SUFFIXES: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) ! cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile ! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) cd $(top_builddir) \ && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status *************** *** 348,355 **** mkdir $(distdir) -chmod 777 $(distdir) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ ! cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ --- 348,360 ---- mkdir $(distdir) -chmod 777 $(distdir) + here=`cd $(top_builddir) && pwd`; \ + top_distdir=`cd $(distdir) && pwd`; \ + distdir=`cd $(distdir) && pwd`; \ + cd $(top_srcdir) \ + && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ ! cp -pr $$d/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ |
From: Ralf H. <hab...@us...> - 2001-06-21 12:39:46
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdegames/admin In directory usw-pr-cvs1:/tmp/cvs-serv31272/admin Modified Files: Makefile.common Log Message: used am_edit insteed of automoc Index: Makefile.common =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdegames/admin/Makefile.common,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Makefile.common 2001/05/22 06:57:12 1.1.1.1 --- Makefile.common 2001/06/21 12:39:43 1.2 *************** *** 15,23 **** @echo "*** Building Makefile templates (step one)" @automake ! @echo "*** Scanning for moc files" ! @perl admin/automoc @echo "*** Building Makefile templates (step two)" @autoconf ! @if grep "ac_kw foo" configure &>/dev/null; then perl -p -i -e "s/ac_kw foo/ac_kw int foo/" configure; fi @echo "*** Creating date/time stamp" @touch stamp-h.in --- 15,23 ---- @echo "*** Building Makefile templates (step one)" @automake ! @echo "*** Scanning for moc files and KDE tags" ! @perl admin/am_edit @echo "*** Building Makefile templates (step two)" @autoconf ! @if grep "ac_kw foo" configure >/dev/null; then cat configure | sed "s/ac_kw foo/ac_kw int foo/" > configure.tmp; mv configure.tmp configure ; fi @echo "*** Creating date/time stamp" @touch stamp-h.in *************** *** 34,40 **** autoheader; \ automake --foreign --include-deps; \ ! perl admin/automoc; \ autoconf; \ ! if grep "ac_kw foo" configure &>/dev/null; then perl -p -i -e "s/ac_kw foo/ac_kw int foo/" configure; fi ;\ touch stamp-h.in; \ if test -d po; then \ --- 34,40 ---- autoheader; \ automake --foreign --include-deps; \ ! perl admin/am_edit; \ autoconf; \ ! if grep "ac_kw foo" configure >/dev/null; then cat configure | sed "s/ac_kw foo/ac_kw int foo/" > configure.tmp; mv configure.tmp configure ; fi \ touch stamp-h.in; \ if test -d po; then \ *************** *** 104,105 **** --- 104,107 ---- fi @test -r SUBDIRS && mv SUBDIRS subdirs + + .PHONY: cvs |
From: Ralf H. <hab...@us...> - 2001-06-21 12:35:26
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kcontrol/input In directory usw-pr-cvs1:/tmp/cvs-serv30650/kcontrol/input Modified Files: Makefile.am Log Message: removed path separator on trailing end Index: Makefile.am =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kcontrol/input/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:25 1.1.1.1 --- Makefile.am 2001/06/21 12:35:22 1.2 *************** *** 6,10 **** INCLUDES = $(all_includes) LDFLAGS = $(all_libraries) $(KDE_RPATH) ! LDADD = $(LIB_KDEUI) bin_PROGRAMS = kcminput --- 6,11 ---- INCLUDES = $(all_includes) LDFLAGS = $(all_libraries) $(KDE_RPATH) ! LDADD = $(kde_libraries)/libkdecore.a $(kde_libraries)/libkdeui.a $(LIB_QT) $(LIB_X11) -lXext ! #LDADD = $(LIB_KDEUI) bin_PROGRAMS = kcminput |
From: Ralf H. <hab...@us...> - 2001-06-21 12:31:23
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/kioslave In directory usw-pr-cvs1:/tmp/cvs-serv29936/kfm/kioslave Modified Files: main.cpp Log Message: removed path separator on trailing end Index: main.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/kioslave/main.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** main.cpp 2001/05/19 21:24:08 1.1.1.1 --- main.cpp 2001/06/21 12:31:20 1.2 *************** *** 27,31 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 27,31 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif |
From: Ralf H. <hab...@us...> - 2001-06-21 12:31:23
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm In directory usw-pr-cvs1:/tmp/cvs-serv29936/kfm Modified Files: kfmpaths.cpp kfmserver_ipc.cpp kfmw.cpp kioserver.cpp kioserver_ipc.cpp main.cpp Log Message: removed path separator on trailing end Index: kfmpaths.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/kfmpaths.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kfmpaths.cpp 2001/05/19 21:24:03 1.1.1.1 --- kfmpaths.cpp 2001/06/21 12:31:20 1.2 *************** *** 12,16 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 12,16 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif Index: kfmserver_ipc.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/kfmserver_ipc.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kfmserver_ipc.cpp 2001/05/19 21:24:03 1.1.1.1 --- kfmserver_ipc.cpp 2001/06/21 12:31:20 1.2 *************** *** 14,18 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 14,18 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif Index: kfmw.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/kfmw.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kfmw.cpp 2001/05/19 21:24:04 1.1.1.1 --- kfmw.cpp 2001/06/21 12:31:20 1.2 *************** *** 23,27 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 23,27 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif Index: kioserver.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/kioserver.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kioserver.cpp 2001/05/19 21:24:04 1.1.1.1 --- kioserver.cpp 2001/06/21 12:31:20 1.2 *************** *** 39,43 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 39,43 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif Index: kioserver_ipc.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/kioserver_ipc.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kioserver_ipc.cpp 2001/05/19 21:24:04 1.1.1.1 --- kioserver_ipc.cpp 2001/06/21 12:31:20 1.2 *************** *** 14,18 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 14,18 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif Index: main.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/main.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** main.cpp 2001/05/19 21:24:05 1.1.1.1 --- main.cpp 2001/06/21 12:31:20 1.2 *************** *** 42,46 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 42,46 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif |
From: Ralf H. <hab...@us...> - 2001-06-21 12:31:23
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kscreensaver In directory usw-pr-cvs1:/tmp/cvs-serv29936/kscreensaver Modified Files: passwd.cpp Log Message: removed path separator on trailing end Index: passwd.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kscreensaver/passwd.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** passwd.cpp 2001/05/19 21:24:37 1.1.1.1 --- passwd.cpp 2001/06/21 12:31:20 1.2 *************** *** 72,76 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 72,76 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif |
From: Ralf H. <hab...@us...> - 2001-06-21 12:31:23
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kcontrol/display In directory usw-pr-cvs1:/tmp/cvs-serv29936/kcontrol/display Modified Files: kresourceman.cpp Log Message: removed path separator on trailing end Index: kresourceman.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kcontrol/display/kresourceman.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kresourceman.cpp 2001/05/19 21:23:20 1.1.1.1 --- kresourceman.cpp 2001/06/21 12:31:20 1.2 *************** *** 10,14 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 10,14 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif |
From: Ralf H. <hab...@us...> - 2001-06-21 12:31:23
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kcheckpass In directory usw-pr-cvs1:/tmp/cvs-serv29936/kcheckpass Modified Files: kcheckpass.h Log Message: removed path separator on trailing end Index: kcheckpass.h =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kcheckpass/kcheckpass.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kcheckpass.h 2001/05/19 21:23:17 1.1.1.1 --- kcheckpass.h 2001/06/21 12:31:20 1.2 *************** *** 50,54 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 50,54 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif |
From: Ralf H. <hab...@us...> - 2001-06-21 12:12:58
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kdetest In directory usw-pr-cvs1:/tmp/cvs-serv27316/kdetest Modified Files: kconfigtest.cpp ksimpleconfigtest.cpp Log Message: removed path trailing path separator Index: kconfigtest.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kdetest/kconfigtest.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** kconfigtest.cpp 2001/05/20 08:58:55 1.2 --- kconfigtest.cpp 2001/06/21 12:12:55 1.3 *************** *** 20,23 **** --- 20,26 ---- * $Log$ + * Revision 1.3 2001/06/21 12:12:55 habacker + * removed path trailing path separator + * * Revision 1.2 2001/05/20 08:58:55 habacker * added cygwin patches *************** *** 188,192 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 191,195 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif Index: ksimpleconfigtest.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kdetest/ksimpleconfigtest.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ksimpleconfigtest.cpp 2001/05/20 08:14:48 1.1.1.1 --- ksimpleconfigtest.cpp 2001/06/21 12:12:55 1.2 *************** *** 2,5 **** --- 2,8 ---- * $Log$ + * Revision 1.2 2001/06/21 12:12:55 habacker + * removed path trailing path separator + * * Revision 1.1.1.1 2001/05/20 08:14:48 habacker * original version 1.1.2 *************** *** 30,34 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 33,37 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif |
From: Ralf H. <hab...@us...> - 2001-06-21 11:28:59
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kdecore In directory usw-pr-cvs1:/tmp/cvs-serv20882 Modified Files: kapp.cpp ksock.cpp Log Message: added some debug messages Index: kapp.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kdecore/kapp.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kapp.cpp 2001/05/20 08:14:42 1.1.1.1 --- kapp.cpp 2001/06/21 11:28:55 1.2 *************** *** 21,24 **** --- 21,27 ---- // // $Log$ + // Revision 1.2 2001/06/21 11:28:55 habacker + // added some debug messages + // // Revision 1.1.1.1 2001/05/20 08:14:42 habacker // original version 1.1.2 *************** *** 358,362 **** #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp/" #endif --- 361,365 ---- #ifndef _PATH_TMP ! #define _PATH_TMP "/tmp" #endif Index: ksock.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/kdecore/ksock.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ksock.cpp 2001/06/08 07:42:59 1.2 --- ksock.cpp 2001/06/21 11:28:55 1.3 *************** *** 20,23 **** --- 20,26 ---- * $Id$ * $Log$ + * Revision 1.3 2001/06/21 11:28:55 habacker + * added some debug messages + * * Revision 1.2 2001/06/08 07:42:59 habacker * added patches for distributing *************** *** 199,205 **** --- 202,211 ---- #endif + + KSocket::KSocket( const char *_host, unsigned short int _port, int _timeout ) : sock( -1 ), readNotifier( 0L ), writeNotifier( 0L ) { + // warning("KSocket::KSocket(this=%x,_host=%s,_port=%d,_timeout=%d)\n",this,_host,_port,_timeout); timeOut = _timeout; domain = PF_INET; *************** *** 210,213 **** --- 216,220 ---- sock( -1 ), readNotifier( 0L ), writeNotifier( 0L ) { + // warning("KSocket::KSocket(this=%x,_host=%s,_port=%d)\n",this,_host,_port); timeOut = 30; domain = PF_INET; *************** *** 218,221 **** --- 225,229 ---- sock( -1 ), readNotifier( 0L ), writeNotifier( 0L ) { + // warning("KSocket::KSocket(this=%x,_path=%s)\n",this,_path); domain = PF_UNIX; connect( _path ); *************** *** 320,324 **** sock = ::socket(PF_UNIX,SOCK_STREAM,0); ! // warning("Ksocket::connect(socket()= %d errno=%d)\n",sock,errno); if (sock < 0) { --- 328,332 ---- sock = ::socket(PF_UNIX,SOCK_STREAM,0); ! // warning("Ksocket::connect() - after socket(PF_UNIX,SOCK_STREAM,0)= %d errno=%d)\n",sock,errno); if (sock < 0) { *************** *** 326,335 **** return false; } ! if ( 0 > ::connect( sock, (struct sockaddr*)(&unix_addr), ! sizeof( unix_addr ) ) ) { ::close( sock ); ! warning( "KSocket::connect() connect error \n"); sock = -1; return false; --- 334,347 ---- return false; } + + int err; + err = ::connect( sock, (struct sockaddr*)(&unix_addr), + sizeof( unix_addr ) ) ; + ! if (err < 0) { ::close( sock ); ! warning( "KSocket::connect() connect(sock=%d unix_addr,..) = %d errno = %d \n", sock, &unix_addr, err, errno); sock = -1; return false; *************** *** 459,463 **** if ( !init ( _port ) ) { ! // fatal("Error constructing\n"); return; } --- 471,475 ---- if ( !init ( _port ) ) { ! fatal("Error constructing\n"); return; } *************** *** 600,604 **** ksize_t size = sizeof(clientname); ! warning("before accept sock= %d errno=%d\n",sock,errno); if ((new_sock = accept (sock, (struct sockaddr *) &clientname, &size)) < 0) --- 612,616 ---- ksize_t size = sizeof(clientname); ! // warning("before accept sock= %d \n",sock); if ((new_sock = accept (sock, (struct sockaddr *) &clientname, &size)) < 0) |
From: Ralf H. <hab...@us...> - 2001-06-20 19:39:46
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv7830 Modified Files: faq.html index.php kde1-app-status.txt Log Message: updated Index: faq.html =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/faq.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** faq.html 2001/06/18 08:43:41 1.3 --- faq.html 2001/06/20 19:39:39 1.4 *************** *** 38,44 **** <p> - <p> <h3>How hard was it to do the porting ?</h3> ! It was quite easy. I think I have patched only about 100 lines. Most of my time was spent to get a running ld and to patch the libtool used to create the dll's, integrating it into the X environment, testing the applications, --- 38,43 ---- <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 time was spent to get a running ld and to patch the libtool used to create the dll's, integrating it into the X environment, testing the applications, *************** *** 56,60 **** <p> - <p> <h3>You are using cygwin XFree to do the port. Do you plan to port to native windows ?</h3> --- 55,58 ---- *************** *** 84,89 **** <p>currently kde 1.1.2 is running only with the xfree server from the cygwin xfree-server team on <a href="http://xfree.cygwin.org">http://xfree.cygwin.com </a></p> ! <p> ! <h2>Contact</h2> <a href="mailto:hab...@so...">hab...@so...</a><br> --- 82,98 ---- <p>currently kde 1.1.2 is running only with the xfree server from the cygwin xfree-server team on <a href="http://xfree.cygwin.org">http://xfree.cygwin.com </a></p> ! <h3> </h3> ! <h3><a name="Tell me something about the reason why this should be have done">Tell ! me something about the reason why this should be have done</a> ?</h3> ! <p>Somebody asked me, why one should port all this software to this X&%$§ ! windows ? Another one told me, that this would be perverse. Why are we doing ! this real ?<p>I think, that kde is a great desktop and has the oppertunity to be ! a big player in gui apps and desktop area. Especially because of the famous qt ! library, which is designed very platform independed and already ported to many ! operation systems, porting kde application to other unix based operation systems ! isn't very much work. The one currently left operation system is windows. <p>Windows ! 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> Index: index.php =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/index.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** index.php 2001/06/18 09:04:56 1.5 --- index.php 2001/06/20 19:39:39 1.6 *************** *** 4,8 **** <head> <title>Kde cygwin</title> - <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> <meta name="generator" content="Microsoft FrontPage 4.0"> --- 4,7 ---- *************** *** 40,50 **** posix emulation layer for Windows, the xfree86 server and the qt library.<br> <br> - I started this - project in april 2001 and currently I am working alone on it (other developers are - gladly welcome :-). - <p> I think it would be great to have one free development environment for all the different unix or windows OS. Perhaps one day you could kill the windows ! explorer and use kde as default desktop whatever the OS are. <p> Right now, Qt 1.44, Qt 2.3 have been ported and are beta quality.<br> --- 39,52 ---- posix emulation layer for Windows, the xfree86 server and the qt library.<br> <br> I think it would be great to have one free development environment for all the different unix or windows OS. Perhaps one day you could kill the windows ! explorer and use kde as default desktop on whatever the OS are. See <a href="faq.html#Tell me something about the reason why this should be have done">here</a> ! for more reasons. <p> ! I started this ! project in april 2001 and currently I am working alone on porting kde 1.1.2. <a href="mailto:x-...@in...">Donald ! Becker</a> has told, that he is working on an x emulation lib for providing a ! native running kde on Windows. Currently he is verifying, if the <b>ntxlib</b> ! is usable for this. <p> If you like to help in this project, see the <a href="https://sourceforge.net/pm/?group_id=27249">tasklist</a>, ! which we think that has to be done. <p> Right now, Qt 1.44, Qt 2.3 have been ported and are beta quality.<br> *************** *** 77,99 **** <h2><br> Download</h2> ! See the <a href="http://sourceforge.net/project/showfiles.php?group_id=27249">sourceforge download page</a> for the latest releases. Check the release notes (click the bold release title) for installation details. ! <p> <h2>Problems/bugs</h2> ! The most annoying problem is the ALT+TAB not working, because it conflicts with ! windows ALT+TAB (This will be fixed in the next release).<br> See the <a href="kde1-app-status.txt">application status</a> for application bug details. <br> Please report other bugs using <a href="http://sourceforge.net/tracker/?group_id=27249&atid=389712">sourceforge ! bugtracking system</a>. ! ! <p> ! <p> <h2> ! <a href="faq.html">FAQ</a>. </h2> ! <p> ! <p> <h2>Related links</h2> <table border="0" width="100%"> --- 79,97 ---- <h2><br> Download</h2> ! See the <a href="http://sourceforge.net/project/showfiles.php?group_id=27249">sourceforge download page</a> for the latest releases. Check the release notes (click the bold release title) for installation ! details. <h2>Problems/bugs</h2> ! <p> See the <a href="kde1-app-status.txt">application status</a> for application bug details. <br> Please report other bugs using <a href="http://sourceforge.net/tracker/?group_id=27249&atid=389712">sourceforge ! bugtracking system</a>.</p> <h2> ! <a href="faq.html"><br> ! FAQ</a>. </h2> ! <h2> </h2> <h2>Related links</h2> <table border="0" width="100%"> *************** *** 139,142 **** --- 137,159 ---- <li><a href="http://sources.redhat.com/cygwin/lists.html">Cygwin mailing lists</a> </li> + </ul> + + + <h2>Acknowledgements </h2> + <ul> + <li><a href="mailto:pa...@is...">Paul Sokolovsky</a>, who has provided + the ld auto-import option (original for mingw). Without this feature, this + project would have never been started.</li> + <li><a href="mailto:rob...@it...">Robert Collins</a>, who + has applied the auto-import option to a recent cygwin binutils package and + has build a special libtool package for compiling kde2. </li> + <li><a href="mailto:P....@OB...">Phillipe Fremy</a>, who has + initial build this web site</li> + <li><a href="mailto:de...@lo...">Egor Duda</a>, who has fixed the socket + problem in cygwin 1.3.2 </li> + <li>The cygwin team for providing such an excellent software (Chris Faylor, + 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> Index: kde1-app-status.txt =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/kde1-app-status.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** kde1-app-status.txt 2001/06/01 10:32:44 1.1.1.1 --- kde1-app-status.txt 2001/06/20 19:39:39 1.2 *************** *** 1,4 **** ! application status ! ------------------ + running o running with caveats/limitations --- 1,4 ---- ! application status (beta release kde 1.1.2) ! ------------------------------------------- + running o running with caveats/limitations *************** *** 55,62 **** o kcmsamba.exe (missing samba tools) o kcontrol.exe (see kcm* applications) ! - kdehelp (compilation error) o kdmconfig.exe (error: "no write access for the kdm config file") ! - kfind.exe (find nothing) ! o kfm.exe (http and ftp access browser configuration not checked) o kfmclient.exe (only basic tests) ? kfmexec.exe (don't know how to test) --- 55,62 ---- o kcmsamba.exe (missing samba tools) o kcontrol.exe (see kcm* applications) ! + kdehelp o kdmconfig.exe (error: "no write access for the kdm config file") ! + kfind.exe ! o kfm.exe (ftp access browser configuration not checked) o kfmclient.exe (only basic tests) ? kfmexec.exe (don't know how to test) *************** *** 64,68 **** + kfontmanager.exe o kikbd.exe (X11 error: BadWindow (invalid Window parameter)) ! - kioslave.exe (QSocketNotifier: Invalid socket specified/Internal error) - klock.exe (passwd checking doesn't work) + kmenuedit.exe --- 64,68 ---- + kfontmanager.exe o kikbd.exe (X11 error: BadWindow (invalid Window parameter)) ! + kioslave.exe - klock.exe (passwd checking doesn't work) + kmenuedit.exe *************** *** 74,79 **** + krootwm.exe + kstart.exe ! - kthememgr.exe (wrong jpeglib) ! o kvt (emulated through rxvt)(error seems to be termcap depending ?) + kwm.exe ? kwmcom.exe (don't know how to test) --- 74,79 ---- + krootwm.exe + kstart.exe ! + kthememgr.exe ! + kvt + kwm.exe ? kwmcom.exe (don't know how to test) |
From: Ralf H. <hab...@us...> - 2001-06-18 09:06:12
|
Update of /cvsroot/kde-cygwin/website/htdocs/images In directory usw-pr-cvs1:/tmp/cvs-serv23675 Added Files: cygwin-icon.gif ximage.png Log Message: added images --- NEW FILE: cygwin-icon.gif --- GIF89a õnOòÌãL ±÷wß6Ì) >¢®vKÞÖ-E-=\bmYÓ9[¾jòÇG --- NEW FILE: ximage.png --- PNG øÜ_à ÀÿS)%aj1A0¬HE©0Ô¡Öt lcLh Hkÿ»~óÚâÚ²®a%JÓ4ã ðÝ("äWÍT¯/ÌöË_dEÚÉÇÿùïü_û ¢0B¥>yútEQU*U*üäïýÁÄÌk5ÚíÿâWÿA0:DaE°JÆ?°1&4:ÆÇká÷¼ï½1Ï>|kc&|?ÿ0EäÇ>úÿÝÛi5þúÏÿÕÐhµ1Æ÷!ßO£QFiQ.]° 4U"S«U*µh%"8Æ$""¢µf<×4ÆÊhsEį( ý3R¤ýþbfÿÔݵû-1KñDVbÂÐÿ[Dtø(¥thÄQ¤B4FhÎÉ¥HiV:$Ñ"¢ºÀu'dD+5ÆäQï2Høöí_üÊ_»zåÍkW?T"ZæûÝßýß9îý·¿¶ººúäOú½[PÖFiͦ¦ü¦Ð{x§!QT¡Z¼»ìоzåÍçÏÕ£ÊööÊ'~çë[íg}hòÀì~àýëÀh£E)m´¥Æ§~Xí½ü´AÀÎüíÛ/<÷b \xâÜW^}22ÿøþ=ÑV¡G Ç»ZHVa Gùr)¥XieLí±Çi]ÿÒ¾ÜÉÒ˯]wwlfüWþæß¸"&Ý®´àZh%Æ]ê^¢µhÅÌZëóO>õ _ÚÚi áGNÔÝK£´Î?FùmmíüÓ¼·Ð:D^úÊÉ3§9Ú]xµ£Ñ¢ÒZ2z¯à+]µ0ׯ½ùÿÛogYYö?öá¿õK¿¢£ßøõÒY¹]1j¢ÊÔ¥µ1¸xÑÿèÀhcÂ(ÒF¡~áÿåϽè¬3àþîßùOì©ÙÏ\8ñåç¾î®l8ýpV <g5aÆ~òâEO]ûü~÷ÿ¸qóÖ=1ñõ8tDiÓGÎ<úôSú³O?öÄ3¿þñOTªÁSO½SZkS'?~ì'2ÿ·R~§2sµZ-È,"â+"ÌFvÆZ«u::Iºgu®¦ôè%c4 ÀphVsú tÀ&P!ÖZ¨)`bcVZkUÌÌ9ó3ÆS3Vë"âUưRñí"¡W"1B"ÊÌE)eY(b£4Æ0s LJ1seÌìS"¢º,MRF(bföJ¯Ö»Qú.fÄâ1"Z¿I!$!Î?Ýßø*ÝÊoJ÷ù×ÈL"àq¦51Ö¢µh'â@)aѬI)&!RJ(ÒÅ¢DiQ{__Cff&F%¤H|XD¨+zñ#ÿÿ¥¿aæv»96>zå7Þ¼y½·A±B-~m·¶¶666â8îÇ0×cx¿®M]¹vMÐÜÜ~ï{ß+"~^yååç.³YP©ô£=|øp1§Q±R$â?{ñV³Ñp¨_km{]"æ¸|îÏ_tÍàÌ3Gñü]´X {ìQÿòÙÔ+IZg±øÚË/°cúÌçÿ8ÉvR°Á?øADä!õSµR.³Ï<ñX0sW¯ß¸õÖõ×n_¹QÍ`áÃßÿraíåzüô?-§|2"öȯOÖºøØ_~é/þây©+dyæÄÑñ½>Wúí¨ËlËa_¸øÄÕ+o9uòoüÒ__]ºVÆjÑ>ðC#£' {,ÊL1ܵÌ]]éÌ3W®\ýü/ÿÙ/#CúÓ?þ£ÇÎj°¸÷W=ãP?ì5<cÌcϼ+r@ÖÒÄèèáð(*¹Àò0¢ôLfnuÚ *CÂ(LJH ðý&Â"èÏ>ÿ f³èù?ýùØë2ë¡ä;IÚ4³Ö^¿qéò× ÿÕ<W=rv©ß÷}¯ £ ZûàG~qÃêå.ßÜùÂ>Ï,®»Ãrlìný]æíIq~~þÊÜõÍíu÷¾÷/§:" ;¶í3çÏ^|òÐqð¿õÆÖ¢dnwÿø§º°®XÖÚï.'®ª£í±CG£ªo×Zkݼ;ÿúK/ÔVvÖ¿çÿѳ8 !U3^ÅÙC\Z¥±Ý9|DÐO%IJ>qòÜñã㵨::ZÕ-ÚËÕ=4XNYÙÔVGÇXiE qh Äè C:k¦Ê XðÔí±é7.v)ÇZ[PQÅEk-"æ^Ê(*î½À,pPè# PHØÏÍëO[Ø/Ó·müdHBcÊ ÙîÌü#hÚ# JÏ-±TWØqJíŬ<õ`:y@»òí¹Êë%ò`fàwv2ÐÌ,ÄÂBó{GîmÞ#÷ tNODèW<?D"$ò"W"ÑÞvdVÌ -10¢ 2çiÖHH¾·d)+èÈ!@$ì-±XD±Äâábÿ!&"&fb"Ùéyì*³,ó*b[bT'qE&´9@ @@$ñþ "Y TXÌD9nÈ «]é#ßÿýC¸Äî½RªDbq{ {íÚÍ(`ÊîÜYÚÙn:rôÙgß]ÔYPi6wv¶î¾òÊ+L£´Í¸½ùÏ<îâÆsÏLÎ& ¤\9vöQ¬Ô¯ßZXo¶pgyÇ/]ZX^;uúÔôiñ¼BHx÷ë$»Ô=PíÑRYµZ³'NÕÄVãèìÄÓO>"a½66úΧÑ1P= m«£É1b4,ýàw¿; æ>ÿÿ®/ÝT2YQcfkÕà>õïÆê#'Nv]pöØâ iüØOþä@«¡<¼J^m5¶³Ø sV,"Ýd´(g1MÜÖÊÊX»xbr:µ\ÒH Q¦ßhɲÌwëì4 âHHX[E" Á»/üPÞâà ´ÖÂV'ÎL9k1¬DÖ:$JÀÛuÂBC,ù2ÐAß§ÇYþ@ QNDÄQò~kïĽÐì.ÂöaWÏl©ë AíD$,È$"q×-ÝOae¤¬Zú¿ÖØoË÷nH{± ÿ`y'íÞ %»úÿûHYOx[~éc¦¡V«|è¸ #XîWçéÕû{è¦GöÓSO^ßISf¹ð(² [ÏżéÉûòÁõ°B°Ýl¼úê«ËËËizfâÍUïÎ Mç§ãõ÷¿ÿû±.ṵãpl|êÍÿÃÿóÇÜhB¤1Ô^}åµüè¯D3ÙãòøÜÏHµ·Ñ_ó½Â÷ÖsK÷ÒÈ?Jã?zöìé,ËXHDJðÔ¹Ç?L;±M ¸zãΫ¯¾e õîªûѧ{N1ôèÖEl}c§qyîÖÛ©@Ðtlu%f5>{äÙo·h%Z'YGlè :$AÕ ;f4ÕÑóO>qòܹ)Hí^¹üò¥K$VJåyKÃò7Àö¶Êç[[[·æoî4ÖABZ¬QøÐ±Ùóçv¬Z5l')3£³Æ.mkEg§}äôøX)C´àR K}.²AîÆ~>WJÚÍVJT¯9t´ÑlYFT½¹9ù""P3kà òØ Õw>´&`ªjVA3wsJïC±2LßèucZuDêÄ +V 0×¼î_ÎäêZ¾ ÌTª½¹¹Y¯wbK¬ICn|?ÞPÎCªC3gYæ)õJݤ,%ÑD¤HéR¶y9â3303XÇ,qm·ÊèD; ¬ÆYZë&ÆôzäèÙXýÈîW, m± p"Pf¨>' 4kt µGÈl[I,í43Ad1@naÈ@_^}»n«)$G$D¬Åû0Ý 0Py[P.Yz2Vûâ¯Æ#Î9Ë[ }ÃO¬¦rYk-úcwD¹Á9E$t¶_³FÌÀçlÍûÛý_BLmVÔo*» #x/¢©@tëÉO¡LßdD÷Qý| _d+ßñ~eã4ÞÜÜZ]]½xþüÕ«W8gDÌÈBÌ~ÛjÊË¿j 3ksVÎ9ës¡Ë-±«æhÓ:çÁ!ÓZ'q\V[ ¢N§#:(¿Yå=[và¼ÊÙeÍZäÁxti|¼©¯ÝY)mÄY{cþ/^~íµüÈ-29¡BêõZmbbbddÄÝ( I?ÁÞ_·ËN©hê ÌÏø/vÓסX±n¤·«>bálêwõ· Kìxe|mmmzbHjõÑ\4ZÙÞiÆ©/fÈb3΢e·Æ;+ ×)KÅM³«DQç³)tIidHY%ÖonÜZX¸yûÖÒ½åF£ÙIZ`!N#K å0_ ôñîE|¦IóDÙþ :õðhtà¬Ë¬UÖ9DÓ$iÇi .s% k-8f¥³t <ßjDóÉÃòaûâÝþm¸÷PYÊ÷úH¢¢(EÖÚ4;ñN³Ù8Í2ÍVËÆqÇ) ¢Ð³Ö®mnܽ³tgñîâââæÎv¦ [© Aù2(ÕÍÃ}á°÷¤öd*}x´RªÓi aè YcÖÖÖíöí ·Þº±´r¯Õj¥YæsèuóDíSêõúÙ³gO<yìØ±8¯^½êWbmcÃÚ4ίMþ_áÚÒÒ_|Óö±6nqgñVQ<,£?öO=po9N§S¯×[qÇ×ûÐK+÷æço..-Ý]¾×jµóaFt@»àYjµÚ±cÇ?~ìØ±ÉÉÉzµ¦éÉN¥+a47caqÁ묵þpå [Î9FÑZ'Y ÃEçgÀ O¨Öjäâ»·¦ææon¬o9D˲$ ÞÚ\©ØÖÎá;׮δî-/Ö§@! î×õäUws7=ø=ºñÍDt¿Ôfæ,KÔí[kK×ßxm{£uñâc7nof w_S. È$yªE@ LEJ)çDÀ+s>.´'ÕùíXÇDÓp|_yÁÃ]6a½ç¾ÝnÇV½ª+Ñx]:ri§Ý:ÇE×êÃ<qüà -éM'$N§Ê <KRF¬s1È^é ¤°7YÖV!+µjFÕ8ËGwÈS>¦Ã÷÷ÞõªÂÛeÀÍûú4`¸IWR 3·<KGæ»P¹a>úrBK!{íü×ÁpPDÏü»½uG$ÎǨ»b¾H"°xf¤Kt{·T,ÆnÕ,¹}-0ðîfÎsänúczÞ¦¬EÿõBÉVìÛï¼ÏzÜM@oÔ+B«>Ë£}·*:\ÉÎÿBQÌ÷ê³-øÂàÛI!_òP¼£Ã/Ày(·(mKG£ËÀï??z?ý |Y/Ê td>uÊûyJDràk®?ØÂ [ ZºÎ Bÿ¾´<æOþÄ=í ¾êÍË æ)/FÌÎuá¸ð=Ò9W~$ % Frþ©þ/Zè¶ ¡#¹,õÞ |
From: Ralf H. <hab...@us...> - 2001-06-18 09:04:58
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv23455 Modified Files: index.php Log Message: changed wrong image location Index: index.php =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/index.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** index.php 2001/06/18 09:02:08 1.4 --- index.php 2001/06/18 09:04:56 1.5 *************** *** 23,27 **** <table border="0" width="100%"> <tr> ! <td width="33%"> <img border="0" src="../../../../../../../../Dokumente%20und%20Einstellungen/habacker/Eigene%20Dateien/Eigene%20Bilder/ximage.png" width="42" height="41"></td> <td width="33%"></td> <td width="34%"></td> --- 23,27 ---- <table border="0" width="100%"> <tr> ! <td width="33%"> <img border="0" src="images/ximage.png" width="42" height="41"></td> <td width="33%"></td> <td width="34%"></td> *************** *** 36,40 **** <!-- header --> ! <br> </p> <p><b>KDE on Cygwin</b> is the port of Qt and KDE to Windows, using Cygwin, the posix emulation layer for Windows, the xfree86 server and the qt library.<br> --- 36,40 ---- <!-- header --> ! </p> <p><b>KDE on Cygwin</b> is the port of Qt and KDE to Windows, using Cygwin, the posix emulation layer for Windows, the xfree86 server and the qt library.<br> |
From: Ralf H. <hab...@us...> - 2001-06-18 09:02:11
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv22965 Modified Files: index.php Log Message: added additional images Index: index.php =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** index.php 2001/06/12 14:25:26 1.3 --- index.php 2001/06/18 09:02:08 1.4 *************** *** 17,20 **** --- 17,33 ---- <td width="33%"><h1 align="center">KDE on Cygwin</h1> </td> + <td width="34%"> + <p align="center"> </td> + </tr> + </table> + <table border="0" width="100%"> + <tr> + <td width="33%"> <img border="0" src="../../../../../../../../Dokumente%20und%20Einstellungen/habacker/Eigene%20Dateien/Eigene%20Bilder/ximage.png" width="42" height="41"></td> + <td width="33%"></td> + <td width="34%"></td> + </tr> + <tr> + <td width="33%"> <img border="0" src="images/cygwin-icon.gif" width="28" height="28"></td> + <td width="33%"></td> <td width="34%"></td> </tr> |
From: Ralf H. <hab...@us...> - 2001-06-18 08:43:51
|
Update of /cvsroot/kde-cygwin/website/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv18795 Modified Files: faq.html Log Message: added faq topic Index: faq.html =================================================================== RCS file: /cvsroot/kde-cygwin/website/htdocs/faq.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** faq.html 2001/06/05 15:02:10 1.2 --- faq.html 2001/06/18 08:43:41 1.3 *************** *** 78,82 **** --- 78,89 ---- straightforward with a good Posix compiler. + <h3> </h3> + + <h3>Does kde need any particular X implementation, or will + any of the Windows X's work?</h3> + <p>currently kde 1.1.2 is running only with the xfree server from the cygwin + xfree-server team on <a href="http://xfree.cygwin.org">http://xfree.cygwin.com </a></p> <p> + <h2>Contact</h2> <a href="mailto:hab...@so...">hab...@so...</a><br> |
From: Ralf H. <hab...@us...> - 2001-06-15 11:58:49
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm In directory usw-pr-cvs1:/tmp/cvs-serv18580 Modified Files: startkde Log Message: added cygipc starting Index: startkde =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/kfm/startkde,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** startkde 2001/05/20 17:49:25 1.2 --- startkde 2001/06/15 11:58:45 1.3 *************** *** 7,10 **** --- 7,23 ---- export PATH=$QTDIR/bin:$KDEDIR/bin:$PATH + # check if ipc-daemon is installed and start him if so + IPC_DAEMON=/usr/bin/ipc-daemon + if test -x $IPC_DAEMON; then + if ps | grep $IPC_DAEMON >/dev/null; then + echo "$0: ipc-daemon is already running" + else + $IPC_DAEMON & + echo "$0: ipc-daemon started" + fi + else + echo "$0: ipc-daemon (cygipc) is not installed with setup.exe. KDEHelp and some other applications might be crash" + fi + # check if xserver related files are installed #if test ! -f $HOME/.xinitrc |
From: Ralf H. <hab...@us...> - 2001-06-15 11:28:21
|
Update of /cvsroot/kde-cygwin/xlib In directory usw-pr-cvs1:/tmp/cvs-serv13513 Added Files: missing.txt Log Message: added file --- NEW FILE: missing.txt --- this symbols are missing in kde 1.1.2 ------------------------------------ /* kdecore1 - XAllocWMHints (kdecore) - XAllowEvents (kdecore) + XChangeProperty (kdecore) + XCheckTypedWindowEvent (kdecore) + XConvertSelection (kdecore) + XCopyArea (kdecore) - XFlush (kdecore) + XFree (kdecore) - XFreeFontNames (kdecore) + XGetErrorText (kdecore) + XGetGeometry (kdecore) + XGetModifierMapping (kdecore) + XGetSelectionOwner (kdecore) - XGetTransientForHint (kdecore) - XGetWMHints (kdecore) - XGetWMNormalHints (kdecore) - XGetWMProtocols (kdecore) + XGetWindowAttributes (kdecore) + XGetWindowProperty (kdecore) - XGrabKey (kdecore) + XInternAtom (kdecore) + XKeycodeToKeysym (kdecore) + XKeysymToKeycode (kdecore) - XKillClient (kdecore) - XListFonts (kdecore) + XLowerWindow (kdecore) + XMoveResizeWindow (kdecore) + XMoveWindow (kdecore) + XOpenDisplay (kdecore) + XQueryTree (kdecore) + XRaiseWindow (kdecore) + XSendEvent (kdecore) + XSetErrorHandler (kdecore) + XSetIOErrorHandler (kdecore) + XSetIconName (kdecore) + XSetSelectionOwner (kdecore) + XSetWMHints (kdecore) + XSetWMProtocols (kdecore) + XStringToKeysym (kdecore) + XSync (kdecore) + XTranslateCoordinates (kdecore) - XUngrabKey (kdecore) - XUngrabKeyboard (kdecore) - XWithdrawWindow (kdecore) kfile - XAllocWMHints (kfile) - XAllowEvents (kfile) - XChangeProperty (kfile) - XCheckTypedWindowEvent (kfile) - XConvertSelection (kfile) - XCopyArea (kfile) - XFlush (kfile) - XFree (kfile) - XFreeFontName (kfile)s - XGetErrorText (kfile) - XGetGeometry (kfile) - XGetModifierMapping (kfile) - XGetSelectionOwner (kfile) - XGetTransientForHint (kfile) - XGetWMHints (kfile) - XGetWMNormalHints (kfile) - XGetWMProtocols (kfile) - XGetWindowAttributes (kfile) - XGetWindowProperty (kfile) - XGrabKey (kfile) - XInternAtom (kfile) - XKeycodeToKeysym (kfile) - XKeysymToKeycode (kfile) - XKillClient (kfile) - XListFonts (kfile) - XLowerWindow (kfile) - XMoveResizeWindow (kfile) - XMoveWindow (kfile) - XOpenDisplay (kfile) - XQueryTree (kfile) - XRaiseWindow (kfile) - XSendEvent (kfile) - XSetErrorHandler (kfile) - XSetIOErrorHandler (kfile) - XSetIconName (kfile) - XSetSelectionOwner (kfile) - XSetWMHints (kfile) - XSetWMProtocols (kfile) - XStringToKeysym (kfile) - XSync (kfile) - XTranslateCoordinates (kfile) - XUngrabKey (kfile) - XUngrabKeyboard (kfile) - XWithdrawWindow (kfile) kdeui1 - XCheckMaskEvent (kdeui) + XCheckTypedEvent (kdeui) + XCloseDisplay (kdeui) + XCreateGC (kdeui) + XDrawRectangle (kdeui) - XFlush (kdeui) - XFreeFontNames (kdeui) + XInternAtom (kdeui) - XListFonts (kdeui) + XMoveWindow (kdeui) + XOpenDisplay (kdeui) + XQueryPointer (kdeui) + XSetErrorHandler (kdeui) + XSetIconName (kdeui) - XSetTransientForHint (kdeui) + XSync (kdeui) - XUngrabPointer (kdeui) khtmlw + XCheckTypedEvent (khtmlw) qt ----------- - XAllocColor (qt) - XAllowEvents (qt) - XBell (qt) - XChangeGC (qt) - XChangeProperty (qt) - XChangeWindowAttributes (qt) - XCheckIfEvent (qt) - XCheckTypedEvent (qt) - XCheckTypedWindowEvent (qt) - XClearArea (qt) - XClipBox (qt) - XCloseDisplay (qt) - XConnectionNumber (qt) - XConvertSelection (qt) - XCopyArea (qt) - XCreateBitmapFromData (qt) - XCreateColormap (qt) - XCreateFontCursor (qt) - XCreateGC (qt) - XCreateIC (qt) - XCreateImage (qt) - XCreatePixmap (qt) - XCreatePixmapCursor (qt) - XCreateRegion (qt) - XCreateSimpleWindow (qt) - XCreateWindow (qt) - XDefineCursor (qt) - XDeleteProperty (qt) - XDestroyIC (qt) - XDestroyRegion (qt) - XDestroyWindow (qt) - XDisplayName (qt) - XDrawArc (qt) - XDrawArcs (qt) - XDrawImageString (qt) - XDrawLine (qt) - XDrawLines (qt) - XDrawPoint (qt) - XDrawPoints (qt) - XDrawRectangle (qt) - XDrawSegments (qt) - XDrawString (qt) - XEmptyRegion (qt) - XEqualRegion (qt) - XFillArc (qt) - XFillArcs (qt) - XFillPolygon (qt) - XFillRectangle (qt) - XFillRectangles (qt) - XFilterEvent (qt) - XFlush (qt) - XFree (qt) - XFreeColormap (qt) - XFreeColors (qt) - XFreeCursor (qt) - XFreeFont (qt) - XFreeFontNames (qt) - XFreeGC (qt) - XFreePixmap (qt) - XGetAtomName (qt) - XGetErrorText (qt) - XGetImage (qt) - XGetInputFocus (qt) - XGetSelectionOwner (qt) - XGetVisualInfo (qt) - XGetWMHints (qt) - XGetWindowAttributes (qt) - XGetWindowProperty (qt) - XGrabKeyboard (qt) - XGrabPointer (qt) - XIconifyWindow (qt) - XInternAtom (qt) - XInternAtoms (qt) - XIntersectRegion (qt) - XKillClient (qt) - XListFonts (qt) - XLoadQueryFont (qt) - XLookupColor (qt) - XLookupString (qt) - XLowerWindow (qt) - XMapWindow (qt) - XMaxRequestSize (qt) - XMoveResizeWindow (qt) - XMoveWindow (qt) - XNextEvent (qt) - XOffsetRegion (qt) - XOpenDisplay (qt) - XOpenIM (qt) - XParseGeometry (qt) - XPending (qt) - XPointInRegion (qt) - XPolygonRegion (qt) - XPutBackEvent (qt) - XPutImage (qt) - XQueryColors (qt) - XQueryPointer (qt) - XQueryTree (qt) - XRaiseWindow (qt) - XRectInRegion (qt) - XRefreshKeyboardMapping (qt) - XReparentWindow (qt) - XResizeWindow (qt) - XSelectInput (qt) - XSendEvent (qt) - XSetArcMode (qt) - XSetBackground (qt) - XSetClipMask (qt) - XSetClipOrigin (qt) - XSetCloseDownMode (qt) - XSetDashes (qt) - XSetErrorHandler (qt) - XSetFillRule (qt) - XSetFillStyle (qt) - XSetFont (qt) - XSetForeground (qt) - XSetFunction (qt) - XSetGraphicsExposures (qt) - XSetIOErrorHandler (qt) - XSetIconName (qt) - XSetInputFocus (qt) - XSetLineAttributes (qt) - XSetLocaleModifiers (qt) - XSetRegion (qt) - XSetSelectionOwner (qt) - XSetStipple (qt) - XSetSubwindowMode (qt) - XSetTSOrigin (qt) - XSetTile (qt) - XSetTransientForHint (qt) - XSetWMHints (qt) - XSetWMNormalHints (qt) - XSetWMProperties (qt) - XSetWMProtocols (qt) - XSetWindowBackground (qt) - XSetWindowBackgroundPixmap (qt) - XStoreName (qt) - XSubtractRegion (qt) - XSupportsLocale (qt) - XSync (qt) - XSynchronize (qt) - XTextExtents (qt) - XTextWidth (qt) - XTranslateCoordinates (qt) - XUngrabKeyboard (qt) - XUngrabPointer (qt) - XUnionRectWithRegion (qt) - XUnionRegion (qt) - XUnmapWindow (qt) - XVisualIDFromVisual (qt) - XWarpPointer (qt) - XXorRegion (qt) - XmbLookupString (qt) missing symbols sorted alphanumeric ----------------------------------- - XAllocColor (qt) - XAllocWMHints (kdecore) - XAllocWMHints (kfile) - XAllowEvents (kdecore) - XAllowEvents (kfile) - XAllowEvents (qt) - XBell (qt) - XChangeGC (qt) + XChangeProperty (kdecore) - XChangeProperty (kfile) - XChangeProperty (qt) - XChangeWindowAttributes (qt) - XCheckIfEvent (qt) - XCheckMaskEvent (kdeui) + XCheckTypedEvent (kdeui) + XCheckTypedEvent (khtmlw) - XCheckTypedEvent (qt) + XCheckTypedWindowEvent (kdecore) - XCheckTypedWindowEvent (kfile) - XCheckTypedWindowEvent (qt) - XClearArea (qt) - XClipBox (qt) + XCloseDisplay (kdeui) - XCloseDisplay (qt) - XConnectionNumber (qt) + XConvertSelection (kdecore) - XConvertSelection (kfile) - XConvertSelection (qt) + XCopyArea (kdecore) - XCopyArea (kfile) - XCopyArea (qt) - XCreateBitmapFromData (qt) - XCreateColormap (qt) - XCreateFontCursor (qt) + XCreateGC (kdeui) - XCreateGC (qt) - XCreateIC (qt) - XCreateImage (qt) - XCreatePixmap (qt) - XCreatePixmapCursor (qt) - XCreateRegion (qt) - XCreateSimpleWindow (qt) - XCreateWindow (qt) - XDefineCursor (qt) - XDeleteProperty (qt) - XDestroyIC (qt) - XDestroyRegion (qt) - XDestroyWindow (qt) - XDisplayName (qt) - XDrawArc (qt) - XDrawArcs (qt) - XDrawImageString (qt) - XDrawLine (qt) - XDrawLines (qt) - XDrawPoint (qt) - XDrawPoints (qt) + XDrawRectangle (kdeui) - XDrawRectangle (qt) - XDrawSegments (qt) - XDrawString (qt) - XEmptyRegion (qt) - XEqualRegion (qt) - XFillArc (qt) - XFillArcs (qt) - XFillPolygon (qt) - XFillRectangle (qt) - XFillRectangles (qt) - XFilterEvent (qt) - XFlush (kdecore) - XFlush (kdeui) - XFlush (kfile) - XFlush (qt) + XFree (kdecore) - XFree (kfile) - XFree (qt) - XFreeColormap (qt) - XFreeColors (qt) - XFreeCursor (qt) - XFreeFont (qt) - XFreeFontName (kfile)s - XFreeFontNames (kdecore) - XFreeFontNames (kdeui) - XFreeFontNames (qt) - XFreeGC (qt) - XFreePixmap (qt) - XGetAtomName (qt) + XGetErrorText (kdecore) - XGetErrorText (kfile) - XGetErrorText (qt) + XGetGeometry (kdecore) - XGetGeometry (kfile) - XGetImage (qt) - XGetInputFocus (qt) + XGetModifierMapping (kdecore) - XGetModifierMapping (kfile) + XGetSelectionOwner (kdecore) - XGetSelectionOwner (kfile) - XGetSelectionOwner (qt) - XGetTransientForHint (kdecore) - XGetTransientForHint (kfile) - XGetVisualInfo (qt) - XGetWMHints (kdecore) - XGetWMHints (kfile) - XGetWMHints (qt) - XGetWMNormalHints (kdecore) - XGetWMNormalHints (kfile) - XGetWMProtocols (kdecore) - XGetWMProtocols (kfile) + XGetWindowAttributes (kdecore) - XGetWindowAttributes (kfile) - XGetWindowAttributes (qt) + XGetWindowProperty (kdecore) - XGetWindowProperty (kfile) - XGetWindowProperty (qt) - XGrabKey (kdecore) - XGrabKey (kfile) - XGrabKeyboard (qt) - XGrabPointer (qt) - XIconifyWindow (qt) + XInternAtom (kdecore) + XInternAtom (kdeui) - XInternAtom (kfile) - XInternAtom (qt) - XInternAtoms (qt) - XIntersectRegion (qt) + XKeycodeToKeysym (kdecore) - XKeycodeToKeysym (kfile) + XKeysymToKeycode (kdecore) - XKeysymToKeycode (kfile) - XKillClient (kdecore) - XKillClient (kfile) - XKillClient (qt) - XListFonts (kdecore) - XListFonts (kdeui) - XListFonts (kfile) - XListFonts (qt) - XLoadQueryFont (qt) - XLookupColor (qt) - XLookupString (qt) + XLowerWindow (kdecore) - XLowerWindow (kfile) - XLowerWindow (qt) - XMapWindow (qt) - XMaxRequestSize (qt) + XMoveResizeWindow (kdecore) - XMoveResizeWindow (kfile) - XMoveResizeWindow (qt) + XMoveWindow (kdecore) + XMoveWindow (kdeui) - XMoveWindow (kfile) - XMoveWindow (qt) - XNextEvent (qt) - XOffsetRegion (qt) + XOpenDisplay (kdecore) + XOpenDisplay (kdeui) - XOpenDisplay (kfile) - XOpenDisplay (qt) - XOpenIM (qt) - XParseGeometry (qt) - XPending (qt) - XPointInRegion (qt) - XPolygonRegion (qt) - XPutBackEvent (qt) - XPutImage (qt) - XQueryColors (qt) + XQueryPointer (kdeui) - XQueryPointer (qt) + XQueryTree (kdecore) - XQueryTree (kfile) - XQueryTree (qt) + XRaiseWindow (kdecore) - XRaiseWindow (kfile) - XRaiseWindow (qt) - XRectInRegion (qt) - XRefreshKeyboardMapping (qt) - XReparentWindow (qt) - XResizeWindow (qt) - XSelectInput (qt) + XSendEvent (kdecore) - XSendEvent (kfile) - XSendEvent (qt) - XSetArcMode (qt) - XSetBackground (qt) - XSetClipMask (qt) - XSetClipOrigin (qt) - XSetCloseDownMode (qt) - XSetDashes (qt) + XSetErrorHandler (kdecore) + XSetErrorHandler (kdeui) - XSetErrorHandler (kfile) - XSetErrorHandler (qt) - XSetFillRule (qt) - XSetFillStyle (qt) - XSetFont (qt) - XSetForeground (qt) - XSetFunction (qt) - XSetGraphicsExposures (qt) + XSetIOErrorHandler (kdecore) - XSetIOErrorHandler (kfile) - XSetIOErrorHandler (qt) + XSetIconName (kdecore) + XSetIconName (kdeui) - XSetIconName (kfile) - XSetIconName (qt) - XSetInputFocus (qt) - XSetLineAttributes (qt) - XSetLocaleModifiers (qt) - XSetRegion (qt) + XSetSelectionOwner (kdecore) - XSetSelectionOwner (kfile) - XSetSelectionOwner (qt) - XSetStipple (qt) - XSetSubwindowMode (qt) - XSetTSOrigin (qt) - XSetTile (qt) - XSetTransientForHint (kdeui) - XSetTransientForHint (qt) + XSetWMHints (kdecore) - XSetWMHints (kfile) - XSetWMHints (qt) - XSetWMNormalHints (qt) - XSetWMProperties (qt) + XSetWMProtocols (kdecore) - XSetWMProtocols (kfile) - XSetWMProtocols (qt) - XSetWindowBackground (qt) - XSetWindowBackgroundPixmap (qt) - XStoreName (qt) + XStringToKeysym (kdecore) - XStringToKeysym (kfile) - XSubtractRegion (qt) - XSupportsLocale (qt) + XSync (kdecore) + XSync (kdeui) - XSync (kfile) - XSync (qt) - XSynchronize (qt) - XTextExtents (qt) - XTextWidth (qt) + XTranslateCoordinates (kdecore) - XTranslateCoordinates (kfile) - XTranslateCoordinates (qt) - XUngrabKey (kdecore) - XUngrabKey (kfile) - XUngrabKeyboard (kdecore) - XUngrabKeyboard (kfile) - XUngrabKeyboard (qt) - XUngrabPointer (kdeui) - XUngrabPointer (qt) - XUnionRectWithRegion (qt) - XUnionRegion (qt) - XUnmapWindow (qt) - XVisualIDFromVisual (qt) - XWarpPointer (qt) - XWithdrawWindow (kdecore) - XWithdrawWindow (kfile) - XXorRegion (qt) - XmbLookupString (qt) $Id: missing.txt,v 1.1 2001/06/15 11:28:18 habacker Exp $ |
From: Ralf H. <hab...@us...> - 2001-06-15 11:17:52
|
Update of /cvsroot/kde-cygwin/xlib In directory usw-pr-cvs1:/tmp/cvs-serv11902/xlib Log Message: Directory /cvsroot/kde-cygwin/xlib added to the repository |
From: Ralf H. <hab...@us...> - 2001-06-14 11:01:28
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase In directory usw-pr-cvs1:/tmp/cvs-serv12760/kdebase Modified Files: libtool.cygwin Log Message: fixed lib naming conventions (cygxxx-n.dll libxxx.dll.a) Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/libtool.cygwin,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** libtool.cygwin 2001/06/11 10:53:33 1.5 --- libtool.cygwin 2001/06/14 11:01:25 1.6 *************** *** 127,131 **** # Library versioning type. ! version_type=windows # Format of library name prefix. --- 127,131 ---- # Library versioning type. ! version_type=cygwin # Format of library name prefix. *************** *** 134,138 **** # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. ! library_names_spec="\${libname}\`echo \${release} | sed -e s/[.]/-/g\`\${versuffix}.dll \$libname.dll.a" # The coded name of the library, if different from the real name. --- 134,138 ---- # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. ! library_names_spec="cyg\${libname}\`echo \${release} | sed -e s/[.]/-/g\`\${versuffix}.dll lib\$libname.dll.a" # The coded name of the library, if different from the real name. *************** *** 149,154 **** # Commands used to build and install a shared archive. ! archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/\$libname.dll.a ! -Wl,--exclude-symbols=_cygwin_dll_entry@12 -Wl,--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" --- 149,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,--whole-archive \$libobjs -Wl,--no-whole-archive \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" *************** *** 1393,1397 **** # Building a libtool convenience library. libext=al ! oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience dependency_libs="$deplibs" --- 1393,1397 ---- # Building a libtool convenience library. libext=al ! oldlibs="$output_objdir/lib$libname.$libext $oldlibs" build_libtool_libs=convenience dependency_libs="$deplibs" *************** *** 1506,1509 **** --- 1506,1516 ---- ;; + cygwin) + # Like Linux, but with '-' rather than '.', since we only + # want one extension on Windows 95. + major=`expr $current - $age` + versuffix="-$major" + ;; + *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 *************** *** 1557,1561 **** # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then ! oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. --- 1564,1568 ---- # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then ! oldlibs="$oldlibs $output_objdir/lib$libname.$libext" # Transform .lo files to .o files. *************** *** 2383,2387 **** *.la) old_library= ! test "$build_old_libs" = yes && old_library="$libname.$libext" $show "creating $output" --- 2390,2394 ---- *.la) old_library= ! test "$build_old_libs" = yes && old_library="lib$libname.$libext" $show "creating $output" |
From: Ralf H. <hab...@us...> - 2001-06-14 10:58:15
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdelibs In directory usw-pr-cvs1:/tmp/cvs-serv11292/kdelibs Modified Files: libtool.cygwin Log Message: fixed lib naming conventions (cygxxx-n.dll libxxx.dll.a) Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdelibs/libtool.cygwin,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** libtool.cygwin 2001/06/11 14:49:22 1.8 --- libtool.cygwin 2001/06/14 10:58:10 1.9 *************** *** 127,131 **** # Library versioning type. ! version_type=windows # Format of library name prefix. --- 127,131 ---- # Library versioning type. ! version_type=cygwin # Format of library name prefix. *************** *** 134,138 **** # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. ! library_names_spec="\${libname}\`echo \${release} | sed -e s/[.]/-/g\`\${versuffix}.dll \$libname.dll.a" # The coded name of the library, if different from the real name. --- 134,138 ---- # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. ! library_names_spec="cyg\${libname}\`echo \${release} | sed -e s/[.]/-/g\`\${versuffix}.dll lib\$libname.dll.a" # The coded name of the library, if different from the real name. *************** *** 149,154 **** # Commands used to build and install a shared archive. ! archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/\$libname.dll.a ! -Wl,--exclude-symbols=_cygwin_dll_entry@12 -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" --- 149,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,--whole-archive \$libobjs -Wl,--no-whole-archive \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" *************** *** 1393,1397 **** # Building a libtool convenience library. libext=al ! oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience dependency_libs="$deplibs" --- 1393,1397 ---- # Building a libtool convenience library. libext=al ! oldlibs="$output_objdir/lib$libname.$libext $oldlibs" build_libtool_libs=convenience dependency_libs="$deplibs" *************** *** 1506,1509 **** --- 1506,1516 ---- ;; + cygwin) + # Like Linux, but with '-' rather than '.', since we only + # want one extension on Windows 95. + major=`expr $current - $age` + versuffix="-$major" + ;; + *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 *************** *** 1557,1561 **** # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then ! oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. --- 1564,1568 ---- # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then ! oldlibs="$oldlibs $output_objdir/lib$libname.$libext" # Transform .lo files to .o files. *************** *** 2383,2387 **** *.la) old_library= ! test "$build_old_libs" = yes && old_library="$libname.$libext" $show "creating $output" --- 2390,2394 ---- *.la) old_library= ! test "$build_old_libs" = yes && old_library="lib$libname.$libext" $show "creating $output" |
From: Ralf H. <hab...@us...> - 2001-06-14 10:58:14
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdesupport In directory usw-pr-cvs1:/tmp/cvs-serv11292/kdesupport Modified Files: libtool.cygwin Log Message: fixed lib naming conventions (cygxxx-n.dll libxxx.dll.a) Index: libtool.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdesupport/libtool.cygwin,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** libtool.cygwin 2001/06/11 14:49:22 1.8 --- libtool.cygwin 2001/06/14 10:58:10 1.9 *************** *** 127,131 **** # Library versioning type. ! version_type=windows # Format of library name prefix. --- 127,131 ---- # Library versioning type. ! version_type=cygwin # Format of library name prefix. *************** *** 134,138 **** # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. ! library_names_spec="\${libname}\`echo \${release} | sed -e s/[.]/-/g\`\${versuffix}.dll \$libname.dll.a" # The coded name of the library, if different from the real name. --- 134,138 ---- # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. ! library_names_spec="cyg\${libname}\`echo \${release} | sed -e s/[.]/-/g\`\${versuffix}.dll lib\$libname.dll.a" # The coded name of the library, if different from the real name. *************** *** 149,154 **** # Commands used to build and install a shared archive. ! archive_cmds="\$CC -g -shared -v -Wl,--out-implib,\$objdir/\$libname.dll.a ! -Wl,--exclude-symbols=_cygwin_dll_entry@12 -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" --- 149,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,--whole-archive \$libobjs -Wl,--no-whole-archive \$mydeplibs \$deplibs -L/usr/local/lib/qt1/lib -lqt -L/usr/X11R6/lib -lX11 -lXext" *************** *** 1393,1397 **** # Building a libtool convenience library. libext=al ! oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience dependency_libs="$deplibs" --- 1393,1397 ---- # Building a libtool convenience library. libext=al ! oldlibs="$output_objdir/lib$libname.$libext $oldlibs" build_libtool_libs=convenience dependency_libs="$deplibs" *************** *** 1506,1509 **** --- 1506,1516 ---- ;; + cygwin) + # Like Linux, but with '-' rather than '.', since we only + # want one extension on Windows 95. + major=`expr $current - $age` + versuffix="-$major" + ;; + *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 *************** *** 1557,1561 **** # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then ! oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. --- 1564,1568 ---- # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then ! oldlibs="$oldlibs $output_objdir/lib$libname.$libext" # Transform .lo files to .o files. *************** *** 2383,2387 **** *.la) old_library= ! test "$build_old_libs" = yes && old_library="$libname.$libext" $show "creating $output" --- 2390,2394 ---- *.la) old_library= ! test "$build_old_libs" = yes && old_library="lib$libname.$libext" $show "creating $output" |
From: Ralf H. <hab...@us...> - 2001-06-14 08:15:51
|
Update of /cvsroot/kde-cygwin/qt-1.45 In directory usw-pr-cvs1:/tmp/cvs-serv26262 Modified Files: README.cygwin Log Message: corrected wrong links Index: README.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/qt-1.45/README.cygwin,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** README.cygwin 2001/06/14 08:00:22 1.2 --- README.cygwin 2001/06/14 08:15:48 1.3 *************** *** 14,18 **** Compiling 1. installed cygwin, gcc, bintuils and cvs packages see http://www.cygwin.com ! 2. installed ld with auto-import-patch (see misc package on http://sourceforge.net/projexcts/kde-cygwin) --- 14,18 ---- Compiling 1. installed cygwin, gcc, bintuils and cvs packages see http://www.cygwin.com ! 2. installed ld with auto-import-patch (see misc package on http://sourceforge.net/projects/kde-cygwin) |
From: Ralf H. <hab...@us...> - 2001-06-14 08:00:25
|
Update of /cvsroot/kde-cygwin/qt-1.45 In directory usw-pr-cvs1:/tmp/cvs-serv22809 Modified Files: README.cygwin Log Message: removed tabs Index: README.cygwin =================================================================== RCS file: /cvsroot/kde-cygwin/qt-1.45/README.cygwin,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** README.cygwin 2001/06/14 07:59:04 1.1 --- README.cygwin 2001/06/14 08:00:22 1.2 *************** *** 9,18 **** Installation ! 1. installed cygwin (>= 1.1.8 tested with 1.1.8) see http://www.cygwin.com ! 2. installed xfree86 Server (version 4.03 and greater) see http://xfree.cygwin.com Compiling ! 1. installed cygwin, gcc, bintuils and cvs packages see http://www.cygwin.com ! 2. installed ld with auto-import-patch (see misc package on http://sourceforge.net/projexcts/kde-cygwin) --- 9,18 ---- Installation ! 1. installed cygwin (>= 1.1.8 tested with 1.1.8) see http://www.cygwin.com ! 2. installed xfree86 Server (version 4.03 and greater) see http://xfree.cygwin.com Compiling ! 1. installed cygwin, gcc, bintuils and cvs packages see http://www.cygwin.com ! 2. installed ld with auto-import-patch (see misc package on http://sourceforge.net/projexcts/kde-cygwin) *************** *** 21,39 **** 1. checkout qt sources from cvs ! a) login ! $ cvs -d:pserver:ano...@cv...:/cvsroot/kde-cygwin login ! When prompted for a password for anonymous, simply press the Enter key ! ! b) checkout ! $ cvs -z3 -d:pserver:ano...@cv...:/cvsroot/kde-cygwin co qt-1.45 ! ! 2. configure qt ! $ make cygwin-g++-shared 3. compile ! $ make ! Installation --- 21,39 ---- 1. checkout qt sources from cvs ! a) login ! $ cvs -d:pserver:ano...@cv...:/cvsroot/kde-cygwin login ! When prompted for a password for anonymous, simply press the Enter key ! ! b) checkout ! $ cvs -z3 -d:pserver:ano...@cv...:/cvsroot/kde-cygwin co qt-1.45 ! ! 2. configure qt ! $ make cygwin-g++-shared 3. compile ! $ make ! Installation |