Update of /cvsroot/ccomx/ccom/misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15326/misc
Modified Files:
dllsyms.lst makefile.all makefile.ver zipup.sh
Log Message:
fixed bug 1297991
Index: makefile.ver
===================================================================
RCS file: /cvsroot/ccomx/ccom/misc/makefile.ver,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** makefile.ver 8 Nov 2004 21:15:21 -0000 1.7
--- makefile.ver 21 Sep 2005 18:12:10 -0000 1.8
***************
*** 7,10 ****
# Shared library versions for Unix
# todo: this is unused at the moment
! shared_version = 0.9.2
shared_major_minor = 0.9
--- 7,10 ----
# Shared library versions for Unix
# todo: this is unused at the moment
! shared_version = 0.9.3
shared_major_minor = 0.9
Index: makefile.all
===================================================================
RCS file: /cvsroot/ccomx/ccom/misc/makefile.all,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** makefile.all 18 Sep 2005 18:33:54 -0000 1.11
--- makefile.all 21 Sep 2005 18:12:10 -0000 1.12
***************
*** 6,10 ****
# See readme.txt for more information about CCOM.
#
- #
# Available options:
#
--- 6,9 ----
***************
*** 18,44 ****
# docs: Build only the documentation.
# clean: Remove rebuildable files.
! # compress: Compress the example executable using upx.
! # uninstall: Uninstalls the header files of CCOM and all brands of the lib that has been installed.
# help: Display this help.
#
# Developer Targets:
#
! # texts: Builds the textfile and the includefile(s) *.ht from *.t
# This should actually be part of the default build but
! # for the user conveniance (it needs CGUIDIR to be set) it is pre-built.
! # depend: Regenerate dependencies.
# veryclean: Remove rebuildable files, including dependencies.
! # rewhisp: Reformat all text files to unix format using whisped.
! # rewhisp-dos: Reformat all text files to dos format using whisped.
! # zipupd-big: Create developer zip with additional stuff from dos.
#
# Variables:
#
# DEBUGMODE=1 Include debug info in the library.
# CCOM_FORTIFY=1 Include memory debugger. Sources are not included in the distribution
# c-files are assumed to be located in src and h-files in include.
##
-
include misc/makefile.ver
--- 17,47 ----
# docs: Build only the documentation.
# clean: Remove rebuildable files.
! # compress: Compress the example executable using the executable compressing program pointed to by UPX_PROGRAM.
# help: Display this help.
#
# Developer Targets:
#
! # dat: Builds the textfile and the includefile(s) *.ht from *.t
# This should actually be part of the default build but
! # for the user conveniance it is pre-built. This is needed to build a lib using code
! # checked out from cvs. This target needs the environment variable CGUIDIR to point
! # to the directory of CGUI, and ALLEGRO to point to the directory of Allegro.
! # depend: Regenerate dependencies. This is needed to build a lib using code checked out from cvs.
# veryclean: Remove rebuildable files, including dependencies.
! # rewhisp: Reformat all text files to unix format using whisped. This requires the whisped program to in your path.
! # rewhisp-dos: Reformat all text files to dos format using whisped. This requires the whisped program to in your path.
#
# Variables:
#
+ # ALLEGRO=<directoy-of-allegro-source> See target `dat' above.
+ # CGUIDIR=<directoy-of-cgui> Needed by target `dat', see above.
+ #
+ # UPX_PROGRAM=<program-to-compress-with> See target `compress' above.
# DEBUGMODE=1 Include debug info in the library.
# CCOM_FORTIFY=1 Include memory debugger. Sources are not included in the distribution
# c-files are assumed to be located in src and h-files in include.
+ #
##
include misc/makefile.ver
***************
*** 98,102 ****
docs/ccom.txt docs/ccom$(HTML_SUFFIX) docs/ccom$(INFO_SUFFIX) docs/ccom.rtf \
docs/internal.txt docs/internal$(HTML_SUFFIX) docs/internal$(INFO_SUFFIX) docs/internal.rtf \
! readme.txt readme.html docs/readme$(INFO_SUFFIX) \
docs/changes.txt docs/changes$(HTML_SUFFIX)
--- 101,105 ----
docs/ccom.txt docs/ccom$(HTML_SUFFIX) docs/ccom$(INFO_SUFFIX) docs/ccom.rtf \
docs/internal.txt docs/internal$(HTML_SUFFIX) docs/internal$(INFO_SUFFIX) docs/internal.rtf \
! readme.txt readme$(HTML_SUFFIX) docs/readme$(INFO_SUFFIX) \
docs/changes.txt docs/changes$(HTML_SUFFIX)
***************
*** 115,119 ****
# -------- Compile --------
! .PHONY: default all lib examples docs clean compress donemsg texts
.PRECIOUS: docs/%$(TEXI_SUFFIX) $(OBJ_DIR)/%$(OBJ_SUFFIX)
--- 118,122 ----
# -------- Compile --------
! .PHONY: default all lib examples docs clean compress donemsg dat
.PRECIOUS: docs/%$(TEXI_SUFFIX) $(OBJ_DIR)/%$(OBJ_SUFFIX)
Index: dllsyms.lst
===================================================================
RCS file: /cvsroot/ccomx/ccom/misc/dllsyms.lst,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** dllsyms.lst 2 Mar 2003 17:06:10 -0000 1.1.1.1
--- dllsyms.lst 21 Sep 2005 18:12:10 -0000 1.2
***************
*** 1,11 ****
! CCPSendBuffer
! CCPSetBaud
! CCPSetBits
! CCPSetParity
! CCPSetParityEnable
! CCPSetPath
! CCPSetStopBits
! CCPSettingsDialogue
! CCPStartScanning
! CCPStopScanning
! CCPStopSending
--- 1,12 ----
! CcomLoopBackMode
! CcomSendBuffer
! CcomSetBaud
! CcomSetBits
! CcomSetParity
! CcomSetParityEnable
! CcomSetPath
! CcomSetStopBits
! CcomSettingsDialogue
! CcomStartScanning
! CcomStopScanning
! CcomStopSending
Index: zipup.sh
===================================================================
RCS file: /cvsroot/ccomx/ccom/misc/zipup.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** zipup.sh 18 Sep 2005 18:33:54 -0000 1.8
--- zipup.sh 21 Sep 2005 18:12:10 -0000 1.9
***************
*** 12,17 ****
# note: these are patched by fixver.sh script.
! zipversion=092
! tgzversion=0.9.2
if [ "$1" != "-q" ]; then
--- 12,17 ----
# note: these are patched by fixver.sh script.
! zipversion=093
! tgzversion=0.9.3
if [ "$1" != "-q" ]; then
***************
*** 40,45 ****
./fix.sh djgpp --quick
make depend
! ./fix.sh bcc32 --quick
! make depend
./fix.sh djgpp --quick
fi
--- 40,45 ----
./fix.sh djgpp --quick
make depend
! # ./fix.sh bcc32 --quick
! # make depend
./fix.sh djgpp --quick
fi
***************
*** 47,51 ****
echo generate other files for the distribution...
make docs "LFN=y"
! make texts
fi
--- 47,51 ----
echo generate other files for the distribution...
make docs "LFN=y"
! make dat
fi
***************
*** 74,78 ****
echo remove old archives...
rm -f ccom/ccom$zipversion.zip
! rm -f ccom/ccom-$tgzversion.tgz
echo create tar.gz archives...
--- 74,78 ----
echo remove old archives...
rm -f ccom/ccom$zipversion.zip
! rm -f ccom/ccom-$tgzversion.tar.gz
echo create tar.gz archives...
|