81702ff5ea
The minimal variant became quite meaningless lately. There were two port APIs originally that had extra functions in the default port in addition to the core-mandated implementations: the I/O and Termination port APIs. However, the extra Termination API code was removed a year ago, leaving some minimal extension in the I/O port only. As the overhead of the extension is negligible, it is not worth maintaining two library variants. Therefore - this commit removes the minimal variant of the default port lib, - rewrites uses of the minimal variant to use the variant with the I/O extension, and - updates targets where I/O port code was copy-n-pasted. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
13 lines
490 B
Plaintext
13 lines
490 B
Plaintext
prefix=@CMAKE_INSTALL_PREFIX@
|
|
libdir=${prefix}/lib
|
|
includedir=${prefix}/include
|
|
|
|
Name: libjerry-core
|
|
Description: JerryScript: lightweight JavaScript engine (core engine library)
|
|
URL: https://github.com/jerryscript-project/jerryscript
|
|
Version: 1.0
|
|
Requires.private: @JERRY_CORE_PKGCONFIG_REQUIRES@ # NOTE: libjerry-port-default is not added as a required package
|
|
Libs: -L${libdir} -ljerry-core
|
|
Libs.private: @JERRY_CORE_PKGCONFIG_LIBS@
|
|
Cflags: -I${includedir} @JERRY_CORE_PKGCONFIG_CFLAGS@
|