ccomx-develop Mailing List for CCOM - a lib for serial port interface
Brought to you by:
chrisan,
rasmusmyklebust
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(7) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
(62) |
Mar
|
Apr
|
May
(4) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(8) |
Oct
(4) |
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
1
|
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
|
23
(2) |
24
(1) |
25
(1) |
26
|
27
|
28
|
29
|
|
30
|
31
|
|
|
|
|
|
|
From: <ben...@id...> - 2004-05-25 08:16:10
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
|
From: Rasmus M. <ras...@us...> - 2004-05-24 00:23:32
|
Update of /cvsroot/ccomx/ccom/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28395/misc Modified Files: makefile.dj makefile.mgw Log Message: Fixed the use of UNIX_TOOLS if present Index: makefile.mgw =================================================================== RCS file: /cvsroot/ccomx/ccom/misc/makefile.mgw,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** makefile.mgw 23 May 2004 20:53:01 -0000 1.5 --- makefile.mgw 24 May 2004 00:23:20 -0000 1.6 *************** *** 97,100 **** --- 97,114 ---- SYSTEM_LIB_DIR_D = $(MINGDIR_D)\lib + ifneq (,$(findstring /sh.exe,$(SHELL))) + UNIX_TOOLS = 1 + endif + + ifdef UNIX_TOOLS + CP = cp + RM = rm + MKDIR = mkdir + else + CP = copy + RM = del + MKDIR = md + endif + # -------- Set up mktext -------- ALLEGRO_DAT = $(subst /,\,$(ALLEGRO_DAT_X)) *************** *** 275,292 **** ifndef STATICLINK $(WINDIR_U)/$(DLL_BASENAME): $(DLL_NAME) ! copy $(subst /,\,$< $@) endif $(SYSTEM_LIB_DIR)/$(IMPLIB_BASENAME): $(IMPLIB_NAME) ! copy $(subst /,\,$< $@) $(SYSTEM_INCLUDE_DIR)/ccom.h: include/ccom.h ! copy $(subst /,\,$< $@) $(SYSTEM_INCLUDE_DIR)/ccom: ! md $(subst /,\,$@) $(SYSTEM_INCLUDE_DIR)/ccom/%.h: include/ccom/%.h include/ccom ! copy $(subst /,\,$< $@) endif # ifdef CROSSCOMPILE else --- 289,306 ---- ifndef STATICLINK $(WINDIR_U)/$(DLL_BASENAME): $(DLL_NAME) ! $(CP) $(subst /,\,$< $@) endif $(SYSTEM_LIB_DIR)/$(IMPLIB_BASENAME): $(IMPLIB_NAME) ! $(CP) $(subst /,\,$< $@) $(SYSTEM_INCLUDE_DIR)/ccom.h: include/ccom.h ! $(CP) $(subst /,\,$< $@) $(SYSTEM_INCLUDE_DIR)/ccom: ! $(MKDIR) $(subst /,\,$@) $(SYSTEM_INCLUDE_DIR)/ccom/%.h: include/ccom/%.h include/ccom ! $(CP) $(subst /,\,$< $@) endif # ifdef CROSSCOMPILE else Index: makefile.dj =================================================================== RCS file: /cvsroot/ccomx/ccom/misc/makefile.dj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile.dj 8 Feb 2004 20:47:22 -0000 1.3 --- makefile.dj 24 May 2004 00:23:20 -0000 1.4 *************** *** 70,73 **** --- 70,86 ---- SYSTEM_INFO_DIR = $(DJGPPDIR_D)\info + ifneq (,$(findstring /sh.exe,$(SHELL))) + UNIX_TOOLS = 1 + endif + + ifdef UNIX_TOOLS + CP = cp + RM = rm + MKDIR = mkdir + else + CP = copy + RM = del + MKDIR = md + endif # -------- Set up mktext -------- ALLEGRO_DAT = $(subst /,\,$(ALLEGRO_DAT_X)) *************** *** 199,215 **** $(SYSTEM_INCLUDE_DIR)/ccom.h: include/ccom.h ! copy $(subst /,\,$< $@) $(SYSTEM_INCLUDE_DIR)/ccom: ! md $(subst /,\,$@) $(SYSTEM_INCLUDE_DIR)/ccom/%.h: include/ccom/%.h include/ccom ! copy $(subst /,\,$< $@) $(SYSTEM_INFO_DIR)/%$(INFO_SUFFIX): docs/%$(INFO_SUFFIX) ! copy $(subst /,\,$< $@) $(SYSTEM_LIB_DIR)/$(LIB_BASENAME): $(LIB_NAME) ! copy $(subst /,\,$< $@) endif # ifdef CROSSCOMPILE else --- 212,228 ---- $(SYSTEM_INCLUDE_DIR)/ccom.h: include/ccom.h ! $(CP) $(subst /,\,$< $@) $(SYSTEM_INCLUDE_DIR)/ccom: ! $(MKDIR) $(subst /,\,$@) $(SYSTEM_INCLUDE_DIR)/ccom/%.h: include/ccom/%.h include/ccom ! $(CP) $(subst /,\,$< $@) $(SYSTEM_INFO_DIR)/%$(INFO_SUFFIX): docs/%$(INFO_SUFFIX) ! $(CP) $(subst /,\,$< $@) $(SYSTEM_LIB_DIR)/$(LIB_BASENAME): $(LIB_NAME) ! $(CP) $(subst /,\,$< $@) endif # ifdef CROSSCOMPILE else |
|
From: Rasmus M. <ras...@us...> - 2004-05-23 20:53:11
|
Update of /cvsroot/ccomx/ccom/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14759 Modified Files: makefile.mgw makefile.vc Log Message: Fixed reading of $(SystemRoot) and $(SYSTEMROOT) Index: makefile.vc =================================================================== RCS file: /cvsroot/ccomx/ccom/misc/makefile.vc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** makefile.vc 27 Feb 2004 23:48:23 -0000 1.8 --- makefile.vc 23 May 2004 20:53:02 -0000 1.9 *************** *** 66,82 **** ifeq ($(OS),Windows_NT) ! ifeq ($(TERM),msys) ! WINSYSDIR = $(SYSTEMROOT) ! else ! WINSYSDIR = $(SystemRoot) ! endif ! WINSUBDIR = system32 else ! ifeq ($(TERM),msys) ! WINSYSDIR = $(WINDIR) ! else ! WINSYSDIR = $(windir) ! endif ! WINSUBDIR = system endif --- 66,80 ---- ifeq ($(OS),Windows_NT) ! WINSYSDIR = $(SYSTEMROOT) ! ifeq ($(WINSYSDIR),) ! WINSYSDIR = $(SystemRoot) ! endif ! WINSUBDIR = system32 else ! WINSYSDIR = $(WINDIR) ! ifeq ($(WINSYSDIR),) ! WINSYSDIR = $(windir) ! endif ! WINSUBDIR = system endif Index: makefile.mgw =================================================================== RCS file: /cvsroot/ccomx/ccom/misc/makefile.mgw,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** makefile.mgw 8 Feb 2004 20:47:22 -0000 1.4 --- makefile.mgw 23 May 2004 20:53:01 -0000 1.5 *************** *** 59,75 **** ifeq ($(OS),Windows_NT) ! ifeq ($(TERM),msys) ! WINSYSDIR = $(SYSTEMROOT) ! else ! WINSYSDIR = $(SystemRoot) ! endif ! WINSUBDIR = system32 else ! ifeq ($(TERM),msys) ! WINSYSDIR = $(WINDIR) ! else ! WINSYSDIR = $(windir) ! endif ! WINSUBDIR = system endif --- 59,73 ---- ifeq ($(OS),Windows_NT) ! WINSYSDIR = $(SYSTEMROOT) ! ifeq ($(WINSYSDIR),) ! WINSYSDIR = $(SystemRoot) ! endif ! WINSUBDIR = system32 else ! WINSYSDIR = $(WINDIR) ! ifeq ($(WINSYSDIR),) ! WINSYSDIR = $(windir) ! endif ! WINSUBDIR = system endif |
|
From: Rasmus M. <ras...@us...> - 2004-05-23 20:52:38
|
Update of /cvsroot/ccomx/ccom In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14595 Modified Files: fix.bat Log Message: Line ends Index: fix.bat =================================================================== RCS file: /cvsroot/ccomx/ccom/fix.bat,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fix.bat 2 Mar 2003 17:05:59 -0000 1.1.1.1 --- fix.bat 23 May 2004 20:52:22 -0000 1.2 *************** *** 1,90 **** ! @echo off ! ! rem Sets up the CCOM package for building with the specified compiler, ! rem and if possible converting text files from LF to CR/LF format. ! ! ! rem check that number of args is ok ! if [%3] == [] goto arg2 ! goto help ! ! ! rem check if second arg is ok ! :arg2 ! if [%2] == [--quick] goto arg1 ! if [%2] == [] goto arg1 ! goto help ! ! ! rem check if first arg is ok ! :arg1 ! if [%1] == [bcc32] goto begin ! if [%1] == [djgpp] goto begin ! if [%1] == [mingw32] goto begin ! if [%1] == [msvc] goto begin ! goto help ! ! ! rem echo header to makefile, then goto platform specific section ! :begin ! echo # generated by fix.bat > makefile ! if [%1] == [bcc32] goto bcc32 ! if [%1] == [djgpp] goto djgpp ! if [%1] == [mingw32] goto mingw32 ! if [%1] == [msvc] goto msvc ! echo internal error: not reached ! goto end ! ! ! :bcc32 ! echo Configuring CCOM for Windows/BCC32... ! echo MAKEFILE_INC = makefile.bcc >> makefile ! goto finish ! ! ! :djgpp ! echo Configuring CCOM for DOS/djgpp... ! echo MAKEFILE_INC = makefile.dj >> makefile ! goto finish ! ! ! :mingw32 ! echo Configuring CCOM for Windows/Mingw32... ! echo MAKEFILE_INC = makefile.mgw >> makefile ! goto finish ! ! ! :msvc ! echo Configuring CCOM for Windows/MSVC... ! echo MAKEFILE_INC = makefile.vc >> makefile ! goto finish ! ! ! :help ! echo. ! echo Usage: fix platform [--quick] ! echo. ! echo Where platform is one of: djgpp, mingw32, msvc or bcc32. ! echo The --quick parameter is used to turn off LF to CR/LF conversion. ! echo. ! goto end ! ! ! rem write end of makefile and possibly convert end of line format ! :finish ! echo include misc/makefile.all >> makefile ! ! if [%2] == [--quick] goto done ! if [%1] == [bcc32] goto done ! if [%1] == [mingw32] goto done ! ! echo Converting CCOM files to DOS CR/LF format... ! utod *.bat .../*.c .../*.h ! utod .../*.txt .../*._tx makefile* misc/makefile.* readme.* ! ! ! :done ! echo Done! ! ! ! :end --- 1,90 ---- ! @echo off ! ! rem Sets up the CCOM package for building with the specified compiler, ! rem and if possible converting text files from LF to CR/LF format. ! ! ! rem check that number of args is ok ! if [%3] == [] goto arg2 ! goto help ! ! ! rem check if second arg is ok ! :arg2 ! if [%2] == [--quick] goto arg1 ! if [%2] == [] goto arg1 ! goto help ! ! ! rem check if first arg is ok ! :arg1 ! if [%1] == [bcc32] goto begin ! if [%1] == [djgpp] goto begin ! if [%1] == [mingw32] goto begin ! if [%1] == [msvc] goto begin ! goto help ! ! ! rem echo header to makefile, then goto platform specific section ! :begin ! echo # generated by fix.bat > makefile ! if [%1] == [bcc32] goto bcc32 ! if [%1] == [djgpp] goto djgpp ! if [%1] == [mingw32] goto mingw32 ! if [%1] == [msvc] goto msvc ! echo internal error: not reached ! goto end ! ! ! :bcc32 ! echo Configuring CCOM for Windows/BCC32... ! echo MAKEFILE_INC = makefile.bcc >> makefile ! goto finish ! ! ! :djgpp ! echo Configuring CCOM for DOS/djgpp... ! echo MAKEFILE_INC = makefile.dj >> makefile ! goto finish ! ! ! :mingw32 ! echo Configuring CCOM for Windows/Mingw32... ! echo MAKEFILE_INC = makefile.mgw >> makefile ! goto finish ! ! ! :msvc ! echo Configuring CCOM for Windows/MSVC... ! echo MAKEFILE_INC = makefile.vc >> makefile ! goto finish ! ! ! :help ! echo. ! echo Usage: fix platform [--quick] ! echo. ! echo Where platform is one of: djgpp, mingw32, msvc or bcc32. ! echo The --quick parameter is used to turn off LF to CR/LF conversion. ! echo. ! goto end ! ! ! rem write end of makefile and possibly convert end of line format ! :finish ! echo include misc/makefile.all >> makefile ! ! if [%2] == [--quick] goto done ! if [%1] == [bcc32] goto done ! if [%1] == [mingw32] goto done ! ! echo Converting CCOM files to DOS CR/LF format... ! utod *.bat .../*.c .../*.h ! utod .../*.txt .../*._tx makefile* misc/makefile.* readme.* ! ! ! :done ! echo Done! ! ! ! :end |