The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
Download Latest Version
sccs-5.09.tar.bz2 (1.1 MB)
Email in envelope
Get an email when there's a new version of SCCS
Home
Name | Modified | Size | InfoDownloads / Week |
---|---|---|---|
old | 2014年06月16日 | ||
sccs-5.09.tar.bz2 | 2019年02月22日 | 1.1 MB | |
AN-5.09 | 2019年02月22日 | 54.4 kB | |
sccs-5.08.tar.bz2 | 2015年09月05日 | 1.0 MB | |
AN-5.08 | 2015年09月05日 | 26.8 kB | |
sccs-5.07-patch02 | 2015年01月29日 | 316 Bytes | |
sccs-5.07-patch01 | 2015年01月28日 | 888 Bytes | |
sccs-5.07.tar.bz2 | 2015年01月25日 | 1.0 MB | |
AN-5.07 | 2015年01月25日 | 32.2 kB | |
sccs-5.06.tar.bz2 | 2011年11月02日 | 919.7 kB | |
AN-5.06 | 2011年11月02日 | 6.8 kB | |
sccs-5.05.tar.bz2 | 2011年10月03日 | 906.1 kB | |
AN-5.05 | 2011年10月01日 | 4.7 kB | |
sccs-5.04.tar.bz2 | 2011年09月04日 | 865.2 kB | |
AN-5.04 | 2011年09月04日 | 3.2 kB | |
sccs-5.03b.tar.bz2 | 2011年08月24日 | 861.5 kB | |
AN-5.03b | 2011年08月24日 | 1.3 kB | |
sccs-5.03.tar.bz2 | 2011年08月22日 | 861.7 kB | |
AN-5.03 | 2011年08月22日 | 4.4 kB | |
sccs-5.02.tar.bz2 | 2011年08月08日 | 849.5 kB | |
AN-5.02 | 2011年08月08日 | 13.7 kB | |
sccs-5.01.tar.bz2 | 2011年07月11日 | 843.2 kB | |
AN-5.01 | 2011年07月10日 | 24.2 kB | |
TODO_V6 | 2011年07月10日 | 2.5 kB | |
TODO | 2011年07月10日 | 4.0 kB | |
sccs-1.0.tar.bz2 | 2007年02月11日 | 416.8 kB | |
TODO.old | 2007年02月11日 | 2.0 kB | |
AN-1.0 | 2007年02月11日 | 1.5 kB | |
sccs-0.5.tar.bz2 | 2007年01月27日 | 405.1 kB | |
AN-0.5 | 2007年01月27日 | 752 Bytes | |
sccs-0.4.tar.bz2 | 2007年01月24日 | 382.4 kB | |
AN-0.4 | 2007年01月23日 | 1.6 kB | |
sccs-0.3.tar.bz2 | 2007年01月07日 | 360.5 kB | |
AN-0.3 | 2007年01月07日 | 1.9 kB | |
README.SCCS | 2007年01月07日 | 2.2 kB | |
sccs-0.2.tar.bz2 | 2007年01月01日 | 357.1 kB | |
AN-0.2 | 2007年01月01日 | 488 Bytes | |
sccs-0.1.tar.bz2 | 2006年12月26日 | 390.5 kB | |
AN-0.1 | 2006年12月26日 | 778 Bytes | |
Totals: 39 Items | 11.8 MB | 2 |
This is the first working atempt to make a recent SCCS source portable. SCCS is the most mature Revision Control System. This source is: - Based on the original SCCS project that started in 1972 at Bell Labs. - Including all Sun / Solaris extensions. - Large file aware - Allowing to selectively disable/enable expansion of specific SCCS keywords (like %I%, %Q%, ...). - Correctly dealing with lockfiles even in a NFS based multi machine environment. - Using gettext() for internationalized texts. - Completely using a type clean set of function prototypes and external variable definitions. - Ported to and tested on all major OS platforms. To compile, just run "smake" (or Sun make or GNU make). The binaries install to /usr/ccs/bin & /usr/xpg4/bin If you like to install SCCS to a different directory, you need to do the following: If you like to install to e.g. /usr/sccs, call: smake INS_BASE=/usr/sccs smake INS_BASE=/usr/sccs install The binaries then are located in /usr/sccs/ccs/bin and /usr/sccs/xpg4/bin Note that you need to at least recompile sccs.c, delta.c, help.c and help2.c in case that you like to change the install directory. The other programs need to be recompiled too, in order to allow them to find their international string translation files. find . ( -name sccs.o -o -name delta.o -o -name help.o -o -name help2.o ) -exec rm {} + smake INS_BASE=/usr/sccs smake INS_BASE=/usr/sccs install or: rm cmd/sccs/cmd/*/OBJ/*/*.o smake INS_BASE=/usr/sccs smake INS_BASE=/usr/sccs install NOTE: If you are compiling using a K&R C-compiler and like to install to a different dir than /usr/ccs, you need to edit all *.c files in the directory cmd/sccs/cmd/src. Look for the comments tagged XXX for further help and edit all strings in the #else parts of #ifdef PROTOTYPES. Replace the "/usr" prefix with your intended install path. If you like to "install" to a different intermediate directory, call e.g.: smake install DESTDIR=/tmp If you like to use sccs, you need to add /usr/ccs/bin to your PATH. If your PATH includes: ${INS_BASE}/xpg4/bin:${INS_BASE}/ccs/bin you will use the POSIX compliant variants of the SCCS tools.