diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-02-19 02:11:35 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-02-19 02:11:35 (GMT) |
commit | 617ab83ba8736b50a819c5a87dfe2e384268a27a (patch) | |
tree | fca0ba4b47f485e43a4162434f9f7ab408331cd4 /src/3rdparty/libpng/autogen.sh | |
parent | 6c459aaa628642e86f7f4b56bb35017a3fb06a35 (diff) | |
parent | 3e6a6ec2b095aa361499576517fdc291a7b8042d (diff) | |
download | Qt-617ab83ba8736b50a819c5a87dfe2e384268a27a.zip Qt-617ab83ba8736b50a819c5a87dfe2e384268a27a.tar.gz Qt-617ab83ba8736b50a819c5a87dfe2e384268a27a.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2: (125 commits)
Fixed compile of autotests.
Fix warnings on gcc
Add experimental VBO support for drawCachedGlyphs()'s index array
Fix threaded gl autotest build failure on GLES2
Removed redundant debug output from trace benchmark.
Added two QML based traces to trace benchmark.
Fixed old trace files no longer working.
Reduced the memory footprint of qttrace files.
Added trace replayer benchmark.
Added --range and --single arguments to qttracereplay.
Always accept values reported directly using QTest::setBenchmarkResult.
Make threading use-cases work for X11
Run firstRun initialization in declarative/painting benchmark
Optimization for text drawing on OpenGL
Enable QStaticText in QtDeclarative painting benchmark
Fix no-webkit compiler helpviewer
Make sure height of glyph cache is a power of two
Fixes crash when destroying a QGraphicsItem.
Move benchmarks/qvector to benchmarks/corelib/tools/qvector
Some threading improvements to the GL module
...
Diffstat (limited to 'src/3rdparty/libpng/autogen.sh')
-rwxr-xr-x | src/3rdparty/libpng/autogen.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/3rdparty/libpng/autogen.sh b/src/3rdparty/libpng/autogen.sh new file mode 100755 index 0000000..77b6308 --- /dev/null +++ b/src/3rdparty/libpng/autogen.sh @@ -0,0 +1,25 @@ +#! /bin/sh +# a quick hack script to generate necessary files from +# auto* tools. +# +# WARNING: if you run this you will change the versions +# of the tools which are used and, maybe, required! + touch Makefile.am configure.ac +{ + echo "running libtoolize" >&2 + libtoolize --force --copy --automake +} && { + echo "running aclocal" >&2 + aclocal +} && { + echo "running autoheader [ignore the warnings]" >&2 + autoheader +} && { + echo "running automake" >&2 + automake --force-missing --foreign -a -c +} && { + echo "running autoconf" >&2 + autoconf +} && + echo "autogen complete" >&2 || + echo "ERROR: autogen.sh failed, autogen is incomplete" >&2 |