diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index e69de29..0000000 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..59f7a55 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +ustr-1.0.1.tar.gz diff --git a/Makefile b/Makefile deleted file mode 100644 index 18282e9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: ustr -# $Id$ -NAME := ustr -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/html_doc_fixes.patch b/html_doc_fixes.patch new file mode 100644 index 0000000..9aab590 --- /dev/null +++ b/html_doc_fixes.patch @@ -0,0 +1,42 @@ +--- Documentation/index.html 2007-08-04 01:21:02.000000000 -0400 ++++ Documentation/index.html 2007-08-04 01:43:27.000000000 -0400 +@@ -39,7 +39,7 @@ +
+You can get the stable release of 1.0.x here, it still + doesn't have 100% documentation but it's pretty close. You can get the current +@@ -693,8 +693,8 @@ + + ustr_free(s2); /* free'd one reference to the data pointed to by both s2 and s3 */ + +-ustr_set_share(s2); /* Make s2/s3 "shared" data, +- so it always has infinite references */ ++ustr_setf_share(s2); /* Make s2/s3 "shared" data, ++ so it always has infinite references */ + + if (ustr_shared(s2)) /* This is TRUE */ + /* whatever */ ; +@@ -718,8 +718,8 @@ + hence the explicit first check */ + /* error */ ; + +-ustr_set_owner(s2); /* Make s2 be "non-shared" and have a single owner */ +-ustr_set_owner(s1); /* This fails, as you can't make a read-only string be "non-shared" */ ++ustr_setf_owner(s2); /* Make s2 be "non-shared" and have a single owner */ ++ustr_setf_owner(s1); /* This fails, as you can't make a read-only string be "non-shared" */ + + ustr_sc_del(&s2); /* free'd s2 and set s2 = USTR("") */ + +@@ -742,7 +742,7 @@ +
James Antill + + +-Last modified: Sat Aug 4 01:21:02 EDT 2007 ++Last modified: Sat Aug 4 01:43:27 EDT 2007 + + +