aboutsummaryrefslogtreecommitdiff
path: root/release
AgeCommit message (Collapse)Author
2015-01-16Document AltiVec extensionsdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1508 632fc199-4ca6-4c93-a231-07263d6284db
2015-01-07Oops. Delete the duplicate copy of [lib]turbojpeg.dll in the binary ↵dcommander
directory when uninstalling the package. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1482 632fc199-4ca6-4c93-a231-07263d6284db
2014-12-19Include ARMv8 binaries when generating a combined OS X/iOS package using ↵dcommander
'make iosdmg' git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1458 632fc199-4ca6-4c93-a231-07263d6284db
2014-12-19Add iOS architectures to the shared libraries generated by the Mac/iOS ↵dcommander
packaging system. I have no idea how useful this is for "standard" iOS application development, but it is useful in a jailbreak environment, and iOS 8 supposedly allows shared libs in "official" apps as well. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1448 632fc199-4ca6-4c93-a231-07263d6284db
2014-11-06Remove trailing spacesdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1411 632fc199-4ca6-4c93-a231-07263d6284db
2014-08-22Don't use sudo when building a Debian package unless the user is non-rootdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1377 632fc199-4ca6-4c93-a231-07263d6284db
2014-07-17Include "Installed-Size" field in the deb-control file to prevent Ubuntu ↵dcommander
from complaining git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1329 632fc199-4ca6-4c93-a231-07263d6284db
2014-03-23Migrate Mac packaging system to pkgbuild, since PackageMaker is no longer ↵dcommander
supported. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1212 632fc199-4ca6-4c93-a231-07263d6284db
2014-03-22Since we're now maintaining our own Cygwin pseudo-repository directories ↵dcommander
instead of recommending that users install these packages from a local source, it makes more sense to name the packages according to Cygwin specs, so they can be copied as-is into the pseudo-repository. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1204 632fc199-4ca6-4c93-a231-07263d6284db
2014-03-21RHEL 6 (and probably other platforms as well) sets ↵dcommander
_defaultdocdir=%{_datadir}/doc, which screws things up, since we're overriding _datadir. Since we intend _defaultdocdir to be /usr/share/doc, just be explicit about it. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1194 632fc199-4ca6-4c93-a231-07263d6284db
2013-09-26Name the package *cygwin64.tar.bz2 when building on Cygwin64.dcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1044 632fc199-4ca6-4c93-a231-07263d6284db
2013-09-19In the Windows installer packages, place a duplicate copy of turbojpeg.dll ↵dcommander
in c:\libjpeg-turbo[-gcc][64]\bin. This is mainly to give installers an easy way to find the DLL for the purposes of bundling it. Specifically, this was necessary for TurboVNC, becuase 32-bit CMake running on 64-bit Windows cannot ever access the "real" c:\windows\system32 directory. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1027 632fc199-4ca6-4c93-a231-07263d6284db
2013-07-07Fix lintian warning about missing maintainer address when installing on ↵dcommander
recent Debian-based systems git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@991 632fc199-4ca6-4c93-a231-07263d6284db
2013-05-04Make sure the RPM provides "libjpeg-turbo" as well, for backward ↵dcommander
compatibility (the TurboVNC RPM build, in particular, checks for this.) git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@979 632fc199-4ca6-4c93-a231-07263d6284db
2013-05-01Fix 'make rpm'dcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@977 632fc199-4ca6-4c93-a231-07263d6284db
2013-04-24For consistency, allow the name of the Mac and Cygwin packages to be ↵dcommander
overridden as well. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@953 632fc199-4ca6-4c93-a231-07263d6284db
2013-04-24Move the TurboJPEG DLLs back into the system directory on Windows platforms. ↵dcommander
For Windows, it doesn't really simplify the build system to install these libraries in c:\libjpeg-turbo*, and it introduces potential problems with loading the JNI library. Specifically, if a user linked their Java app against the 64-bit libjpeg-turbo SDK and then used a 32-bit JVM at run time, they would not be able to load the 32-bit turbojpeg.dll without manipulating java.library.path or the PATH environment (and vice versa for building against the 32-bit libjpeg-turbo SDK and using a 64-bit JVM at run time.) git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@949 632fc199-4ca6-4c93-a231-07263d6284db
2013-04-23Further enhancements/fixes to the packaging system:dcommander
-- The Mac and Cygwin packages will now be created with the directory structure defined by the configure variables "prefix", "bindir", "libdir", etc., with the exception that the docs are always installed under /usr/share/doc/{package_name}-{version} on Cygwin and /Library/Documentation/{package_name} on Mac. -- Fixed a duplicate filename warning when generating RPMs with the default prefix of /opt/libjpeg-turbo. -- Moved the TurboJPEG libraries out of the system directory on Windows and Mac. It is no longer necessary to put them there, since we are not trying to be backward compatible with TurboJPEG/IPP anymore. -- Fixed an issue whereby building the "installer" target on Windows would not build the Java JAR file, thus causing an error if the JAR had not been previously built. -- Building the "install" target on Windows will now install libjpeg-turbo into c:\libjpeg-turbo[-gcc][64] (the same directories used by the installers.) This can be overridden by setting CMAKE_INSTALL_PREFIX. -- The Java classes on all platforms will now look for the JNI library in the directory under which the build/packaging system installs it. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@946 632fc199-4ca6-4c93-a231-07263d6284db
2013-04-19Overhaul Linux/Unix packaging system, primarily to avoid conflicts with ↵dcommander
vendor-supplied libjpeg-turbo packages (such as in Fedora and RHEL 6.) This also streamlines the packaging system somewhat, since it is no longer necessary to move the TurboJPEG libraries into the system library directory. Relocating those libraries was originally done to provide backward compatibility with TurboJPEG/IPP, but that package is long obsolete, and the software that formerly used it has been linking statically with libjpeg-turbo for quite some time. If the default prefix (/opt/libjpeg-turbo) is used, then we now always install 32-bit libraries in /opt/libjpeg-turbo/lib32 and 64-bit libraries in /opt/libjpeg-turbo/lib64 instead of trying to conform to the Debian or Red Hat conventions. The RPM and DEB packages will now be created with the directory structure defined by the configure variables "prefix", "bindir", "libdir", etc., with the exception that the docs are always installed under /usr/share/doc/{package_name}-{version}. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@944 632fc199-4ca6-4c93-a231-07263d6284db
2013-02-04Fix line breakdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@925 632fc199-4ca6-4c93-a231-07263d6284db
2013-02-04Include ARM v7s (iPhone 5, iPad 4) support in the universal ↵dcommander
libjpeg/libturbojpeg libraries distributed with our official binary package for OS X. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@923 632fc199-4ca6-4c93-a231-07263d6284db
2013-01-23Wordsmith the project descriptiondcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@921 632fc199-4ca6-4c93-a231-07263d6284db
2013-01-19Fix several issues with SRPM generation: (1) ensure that all relevant ↵dcommander
configure arguments get passed down to the configure command line in the generated spec file, (2) adjust the file manifest in the spec to accommodate the differing "age" version whenever the in-memory source/dest managers are used, and (3) fix an issue with the value of SO_MAJOR_VERSION passed down to the configure command line in the generated spec file (SO_MAJOR_VERSION has to remain pure, so we use a different variable to pass down the combined "current+age" value to libtool in Makefile.am.) git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@916 632fc199-4ca6-4c93-a231-07263d6284db
2013-01-10Wordsmithing; Remove mention of TurboJPEG/IPP-- it is no longer a relevant ↵dcommander
comparison, since the version of IPP on which TurboJPEG/IPP was based is now quite old, and TurboJPEG/IPP is no longer distributed or supported by The VirtualGL Project; Include information about mathematical incompatibilities with jpeg-8 git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@893 632fc199-4ca6-4c93-a231-07263d6284db
2012-08-07Allow the libjpeg-turbo32 package to be used on MultiArch-compatible systems ↵dcommander
without overriding the linker path or LD_LIBRARY_PATH. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@858 632fc199-4ca6-4c93-a231-07263d6284db
2012-03-29Provide the legacy unversioned libturbojpeg.so resource so that RPMs that ↵dcommander
dependended on older libjpeg-turbo distributions will still work. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@826 632fc199-4ca6-4c93-a231-07263d6284db
2012-03-23Add a dummy version number to the TurboJPEG dynamic library on Unix systems ↵dcommander
so Linux distro maintainers will not reject it out of hand. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@820 632fc199-4ca6-4c93-a231-07263d6284db
2012-03-23Get rid of the Solaris packaging system. Solaris packages are obsolete, ↵dcommander
only a handful of people were downloading those binaries, and maintaining the system was proving to be a pain. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@819 632fc199-4ca6-4c93-a231-07263d6284db
2012-03-23Fix universal DMG builddcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@815 632fc199-4ca6-4c93-a231-07263d6284db
2012-02-10Oopsdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@806 632fc199-4ca6-4c93-a231-07263d6284db
2012-02-10Move build dir. variables back into makemacpkg to avoid messing up the ↵dcommander
Solaris packaging system. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@803 632fc199-4ca6-4c93-a231-07263d6284db
2012-02-10Don't include documentation in 32-bit supplemental packagedcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@802 632fc199-4ca6-4c93-a231-07263d6284db
2012-02-10Install docs when doing 'make install' on Unix; Fix 'install' target on ↵dcommander
Windows; Include wizard.txt, example.c, and structure.txt in installed docs git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@794 632fc199-4ca6-4c93-a231-07263d6284db
2012-02-10Clean up the iOS packaging mechanism so that ARM architectures can be added ↵dcommander
to i386-only builds as well. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@791 632fc199-4ca6-4c93-a231-07263d6284db
2012-02-09Infrastructure for producing a universal x86-64/i386/ARM version of ↵dcommander
libjpeg.a and libturbojpeg.a on OS X, so that the same library can be used to build OS X and iOS apps git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@789 632fc199-4ca6-4c93-a231-07263d6284db
2012-02-08Merge description from README-turbo.txt into packagesdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@787 632fc199-4ca6-4c93-a231-07263d6284db
2011-07-19Don't include JAR file in 32-bit compatibility packagedcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@676 632fc199-4ca6-4c93-a231-07263d6284db
2011-07-19Trying to out-clever ourselves by having autotools generate the deb-control ↵dcommander
file broke the 32-bit supplementary DEB, so revert to the method we used in LJT 1.0 to generate this file. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@675 632fc199-4ca6-4c93-a231-07263d6284db
2011-05-25"jpegut"="tjunittest" & "jpgtest"="tjbench"dcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@643 632fc199-4ca6-4c93-a231-07263d6284db
2011-05-25Fix OS X uninstallerdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@642 632fc199-4ca6-4c93-a231-07263d6284db
2011-05-24Remove wxWindows license files from packagesdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@640 632fc199-4ca6-4c93-a231-07263d6284db
2011-05-24Remove any references to the wxWindows Library License and VirtualGL copyrightsdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@631 632fc199-4ca6-4c93-a231-07263d6284db
2011-05-24Refactor uninstall script. No legacy code remains, so relicense under ↵dcommander
BSD-style license. Remove uninstall app from package for now, until we can come up with a new version that doesn't have any legacy code. git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@630 632fc199-4ca6-4c93-a231-07263d6284db
2011-05-10Can't assume that current directory is in PATHdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@609 632fc199-4ca6-4c93-a231-07263d6284db
2011-04-27New libjpeg-turbo domaindcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@600 632fc199-4ca6-4c93-a231-07263d6284db
2011-04-01Include TurboJPEG/OSS Java wrapper JAR in Windows distribution packagesdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@553 632fc199-4ca6-4c93-a231-07263d6284db
2011-04-01Fix regression bug that caused the "Installer" targets to fail when building ↵dcommander
from the MSVC IDE git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@552 632fc199-4ca6-4c93-a231-07263d6284db
2011-04-01Build and package TurboJPEG/OSS Java wrapper into JAR filedcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@549 632fc199-4ca6-4c93-a231-07263d6284db
2011-03-22Clean up packaging systemdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@537 632fc199-4ca6-4c93-a231-07263d6284db
2011-02-19Include jpgtest in Unix/Linux distribution packagesdcommander
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@415 632fc199-4ca6-4c93-a231-07263d6284db