summaryrefslogtreecommitdiff
path: root/libcutl/INSTALL
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2024-03-06 10:24:11 +0100
committerJörg Frings-Fürst <debian@jff.email>2024-03-06 10:24:11 +0100
commit4538829ab86b5a1cd4e845e7eab165029c9d6d46 (patch)
treebbadf39aed0610c8f8f7b41fefff47773b8ac205 /libcutl/INSTALL
parent23d41842168ac1a1580111b9c5c73500ceee3d57 (diff)
parentaad5ad9bf0c02aa4e79bc6b7d6c934612fff4026 (diff)
Update upstream source from tag 'upstream/4.2.0'
Update to upstream version '4.2.0' with Debian dir 1b38df7bbcf313223de3c50107ac0255090fe647
Diffstat (limited to 'libcutl/INSTALL')
-rw-r--r--libcutl/INSTALL69
1 files changed, 0 insertions, 69 deletions
diff --git a/libcutl/INSTALL b/libcutl/INSTALL
deleted file mode 100644
index 9660539..0000000
--- a/libcutl/INSTALL
+++ /dev/null
@@ -1,69 +0,0 @@
-Building on UNIX
-================
-
-The following build instructions are for the Linux/UNIX/Mac OS X
-operating systems as well as for Cygwin and MinGW on Windows.
-
-The standard autotools-based build system is used on these platforms. After
-unpacking the source code archive, change to the libcutl package directory
-(referred to as libcutl/ from now on) and run the configure script:
-
-./configure
-
-To see the available configuration options run configure with --help:
-
-./configure --help
-
-As an example, the following configure command only builds shared libraries,
-uses the specified C and C++ compilers, and compiles with optimization and
-without debug information:
-
-./configure --disable-static CC=gcc-4.5 CXX=g++-4.5 CFLAGS=-O3 CXXFLAGS=-O3
-
-Once configuration is complete, run make to build libcutl:
-
-make
-
-Once the build is completed successfully, you can install the libcutl headers
-and libraries using the install target (you may need to do this step as root
-depending on the installation directory):
-
-make install
-
-
-Building on Windows
-===================
-
-The following build instructions are for Windows using Microsoft Visual
-Studio. If you would like to build libcutl with GCC either using Cygwin
-or MinGW, refer to the "Building on UNIX" section above.
-
-The standard Visual Studio project and solution files are used on this
-platform. To build libcutl, unpack the source code archive and open the
-libcutl-vc<N>.sln file located in the libcutl package directory (referred
-to as libcutl\ from now on). Here <N> is the version of Visual Studio that
-you are using. Once the solution is open, select the desired build
-configuration (Debug or Release) and platform (Win32 or x64) and build
-the solution.
-
-The resulting 32-bit DLLs and import libraries are placed into the
-libcutl\bin\ and libcutl\lib\ directories, respectively. Similarly, the
-64-bit DLLs and import libraries are placed into libcutl\bin64\ and
-libcutl\lib64\. The Release versions of the import libraries are named
-cutl.lib and the Debug versions are named cutl-d.lib.
-
-To configure Visual Studio to automatically locate the libcutl headers,
-DLLs, and import libraries, add the following paths to your VC++
-Directories:
-
-Win32:
-
- Include: ...\libcutl
- Library: ...\libcutl\lib
- Executable: ...\libcutl\bin
-
-x64:
-
- Include: ...\libcutl
- Library: ...\libcutl\lib64
- Executable: ...\libcutl\bin64