diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | packages/rpm/doxygen.spec | 2 | ||||
-rw-r--r-- | src/packagedef.h | 6 |
5 files changed, 10 insertions, 4 deletions
@@ -1,4 +1,4 @@ -DOXYGEN Version 1.2.7 +DOXYGEN Version 1.2.7-20010517 Please read the installation section of the manual for instructions. @@ -1,4 +1,4 @@ -DOXYGEN Version 1.2.7 +DOXYGEN Version 1.2.7_20010517 Please read INSTALL for compilation instructions. @@ -1 +1 @@ -1.2.7 +1.2.7-20010517 diff --git a/packages/rpm/doxygen.spec b/packages/rpm/doxygen.spec index 0bbe68d..b61fab3 100644 --- a/packages/rpm/doxygen.spec +++ b/packages/rpm/doxygen.spec @@ -1,5 +1,5 @@ Name: doxygen -Version: 1.2.7 +Version: 1.2.7_20010517 Summary: documentation system for C, C++ and IDL Release: 2 Source: doxygen_%{version}.src.tar.gz diff --git a/src/packagedef.h b/src/packagedef.h index 5b01dba..fbaefa5 100644 --- a/src/packagedef.h +++ b/src/packagedef.h @@ -56,6 +56,12 @@ class PackageSDict : public SDict<PackageDef> { public: PackageSDict(int size) : SDict<PackageDef>(size) {} + int compareItems(GCI item1,GCI item2) + { + return stricmp(((PackageDef *)item1)->name(), + ((PackageDef *)item2)->name() + ); + } }; #endif |