Bump version to 2.1.1
This commit is contained in:
parent
e4d859eb2c
commit
8c2fd3d097
@ -3,25 +3,25 @@
|
|||||||
The cmake based buildsystem for expat works on Windows (cygwin, mingw, Visual
|
The cmake based buildsystem for expat works on Windows (cygwin, mingw, Visual
|
||||||
Studio) and should work on all other platform cmake supports.
|
Studio) and should work on all other platform cmake supports.
|
||||||
|
|
||||||
Assuming ~/expat-2.1.0 is the source directory of expat, add a subdirectory
|
Assuming ~/expat-2.1.1 is the source directory of expat, add a subdirectory
|
||||||
build and change into that directory:
|
build and change into that directory:
|
||||||
~/expat-2.1.0$ mkdir build && cd build
|
~/expat-2.1.1$ mkdir build && cd build
|
||||||
~/expat-2.1.0/build$
|
~/expat-2.1.1/build$
|
||||||
|
|
||||||
From that directory, call cmake first, then call make, make test and
|
From that directory, call cmake first, then call make, make test and
|
||||||
make install in the usual way:
|
make install in the usual way:
|
||||||
~/expat-2.1.0/build$ cmake ..
|
~/expat-2.1.1/build$ cmake ..
|
||||||
-- The C compiler identification is GNU
|
-- The C compiler identification is GNU
|
||||||
-- The CXX compiler identification is GNU
|
-- The CXX compiler identification is GNU
|
||||||
....
|
....
|
||||||
-- Configuring done
|
-- Configuring done
|
||||||
-- Generating done
|
-- Generating done
|
||||||
-- Build files have been written to: /home/patrick/expat-2.1.0/build
|
-- Build files have been written to: /home/patrick/expat-2.1.1/build
|
||||||
|
|
||||||
If you want to specify the install location for your files, append
|
If you want to specify the install location for your files, append
|
||||||
-DCMAKE_INSTALL_PREFIX=/your/install/path to the cmake call.
|
-DCMAKE_INSTALL_PREFIX=/your/install/path to the cmake call.
|
||||||
|
|
||||||
~/expat-2.1.0/build$ make && make test && make install
|
~/expat-2.1.1/build$ make && make test && make install
|
||||||
Scanning dependencies of target expat
|
Scanning dependencies of target expat
|
||||||
[ 5%] Building C object CMakeFiles/expat.dir/lib/xmlparse.c.o
|
[ 5%] Building C object CMakeFiles/expat.dir/lib/xmlparse.c.o
|
||||||
[ 11%] Building C object CMakeFiles/expat.dir/lib/xmlrole.c.o
|
[ 11%] Building C object CMakeFiles/expat.dir/lib/xmlrole.c.o
|
||||||
|
@ -6,7 +6,7 @@ project(expat)
|
|||||||
cmake_minimum_required(VERSION 2.6)
|
cmake_minimum_required(VERSION 2.6)
|
||||||
set(PACKAGE_BUGREPORT "expat-bugs@libexpat.org")
|
set(PACKAGE_BUGREPORT "expat-bugs@libexpat.org")
|
||||||
set(PACKAGE_NAME "expat")
|
set(PACKAGE_NAME "expat")
|
||||||
set(PACKAGE_VERSION "2.1.0")
|
set(PACKAGE_VERSION "2.1.1")
|
||||||
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
||||||
set(PACKAGE_TARNAME "${PACKAGE_NAME}")
|
set(PACKAGE_TARNAME "${PACKAGE_NAME}")
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Expat, Release 2.1.0
|
Expat, Release 2.1.1
|
||||||
|
|
||||||
This is Expat, a C library for parsing XML, written by James Clark.
|
This is Expat, a C library for parsing XML, written by James Clark.
|
||||||
Expat is a stream-oriented XML parser. This means that you register
|
Expat is a stream-oriented XML parser. This means that you register
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
%define version 2.1.0
|
%define version 2.1.1
|
||||||
%define release 1
|
%define release 1
|
||||||
|
|
||||||
Summary: Expat is an XML 1.0 parser written in C.
|
Summary: Expat is an XML 1.0 parser written in C.
|
||||||
@ -40,6 +40,10 @@ install -D xmlwf/xmlwf $RPM_BUILD_ROOT/usr/bin/xmlwf
|
|||||||
/usr/share/man/man1/xmlwf.1.gz
|
/usr/share/man/man1/xmlwf.1.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 2 2016 Sebastian Pipping <sebastian@pipping.org>
|
||||||
|
[Release 2.1.1-1]
|
||||||
|
- Update for the 2.1.1 release.
|
||||||
|
|
||||||
* Sat Mar 3 2012 Karl Waclawek <karl@waclawek.net>
|
* Sat Mar 3 2012 Karl Waclawek <karl@waclawek.net>
|
||||||
[Release 2.1.0-1]
|
[Release 2.1.0-1]
|
||||||
- Update for the 2.1.0 release.
|
- Update for the 2.1.0 release.
|
||||||
|
@ -1038,7 +1038,7 @@ XML_GetFeatureList(void);
|
|||||||
*/
|
*/
|
||||||
#define XML_MAJOR_VERSION 2
|
#define XML_MAJOR_VERSION 2
|
||||||
#define XML_MINOR_VERSION 1
|
#define XML_MINOR_VERSION 1
|
||||||
#define XML_MICRO_VERSION 0
|
#define XML_MICRO_VERSION 1
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -7,17 +7,17 @@
|
|||||||
[Setup]
|
[Setup]
|
||||||
AppName=Expat
|
AppName=Expat
|
||||||
AppId=expat
|
AppId=expat
|
||||||
AppVersion=2.1.0
|
AppVersion=2.1.1
|
||||||
AppVerName=Expat 2.1.0
|
AppVerName=Expat 2.1.1
|
||||||
AppCopyright=Copyright © 1998-2012 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers
|
AppCopyright=Copyright © 1998-2012 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers
|
||||||
AppPublisher=The Expat Developers
|
AppPublisher=The Expat Developers
|
||||||
AppPublisherURL=http://www.libexpat.org/
|
AppPublisherURL=http://www.libexpat.org/
|
||||||
AppSupportURL=http://www.libexpat.org/
|
AppSupportURL=http://www.libexpat.org/
|
||||||
AppUpdatesURL=http://www.libexpat.org/
|
AppUpdatesURL=http://www.libexpat.org/
|
||||||
UninstallDisplayName=Expat XML Parser 2.1.0
|
UninstallDisplayName=Expat XML Parser 2.1.1
|
||||||
VersionInfoVersion=2.1.0
|
VersionInfoVersion=2.1.1
|
||||||
|
|
||||||
DefaultDirName={pf}\Expat 2.1.0
|
DefaultDirName={pf}\Expat 2.1.1
|
||||||
UninstallFilesDir={app}\Uninstall
|
UninstallFilesDir={app}\Uninstall
|
||||||
|
|
||||||
Compression=lzma
|
Compression=lzma
|
||||||
|
Loading…
Reference in New Issue
Block a user