-
Notifications
You must be signed in to change notification settings - Fork 420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autoreconf: 'configure.ac' or 'configure.in' is required #314
Comments
We've merged with libjpeg 2.0, which removed support for autotools. Now cmake is the only option. |
My apologies. I have used cmake now and all is well. |
How to use cmake in this case? |
https://github.com/mozilla/mozjpeg/blob/master/BUILDING.md Un*xThe following procedure will build libjpeg-turbo on Unix and Unix-like systems.
This will generate the following files under {build_directory}: libjpeg.a libjpeg.so.{version} (Linux, Unix) By default, {version} is 62.2.0, 7.2.0, or 8.1.2, depending on whether libjpeg.so (Linux, Unix) libjpeg.dll.a (Cygwin) libturbojpeg.a libturbojpeg.so.0.2.0 (Linux, Unix) libturbojpeg.so (Linux, Unix) libturbojpeg.dll.a (Cygwin) Visual C++ (Command Line)
This will build either a 32-bit or a 64-bit version of libjpeg-turbo, depending The following files will be generated under {build_directory}: jpeg-static.lib jpeg{version}.dll jpeg.lib turbojpeg-static.lib turbojpeg.dll turbojpeg.lib {version} is 62, 7, or 8, depending on whether libjpeg v6b (default), v7, or Visual C++ (IDE)Choose the appropriate CMake generator option for your version of Visual Studio
NOTE: Add "Win64" to the generator name (for example, "Visual Studio 10 Win64") You can then open ALL_BUILD.vcproj in Visual Studio and build one of the This will generate the following files under {build_directory}: {configuration}/jpeg-static.lib {configuration}/jpeg{version}.dll {configuration}/jpeg.lib {configuration}/turbojpeg-static.lib {configuration}/turbojpeg.dll {configuration}/turbojpeg.lib {configuration} is Debug, Release, RelWithDebInfo, or MinSizeRel, depending MinGWNOTE: This assumes that you are building on a Windows machine using the MSYS
This will generate the following files under {build_directory}: libjpeg.a libjpeg-{version}.dll libjpeg.dll.a libturbojpeg.a libturbojpeg.dll libturbojpeg.dll.a {version} is 62, 7, or 8, depending on whether libjpeg v6b (default), v7, or Debug BuildAdd |
A few days ago I could run
autoreconf -fiv
after doing a fresh clone of the mozjpeg master branch without issue, but today it says eitherconfigure.ac
orconfigure.in
is required as there is noconfigure
file.The text was updated successfully, but these errors were encountered: