- github
- ocaml
- opam-repository
- e26ca3
- compilers,4.14,conf-m4.1,revdeps,lablgtk.2.18.11
(not at the head of any monitored branch or PR)
2026-03-21 18:50.26: New job: test lablgtk.2.18.11 with conf-m4.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29579/head (e26ca330660bcb49f8bb8e3d37703d278be8c4bd)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29579/head" && git reset --hard e26ca330
git fetch origin master
git merge --no-edit 76bf2ed9443fdee37e6f046c6295d358be3f8598
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn conf-m4.1 1
RUN opam reinstall conf-m4.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'conf-m4.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall lablgtk.2.18.11; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lablgtk.2.18.11' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test lablgtk.2.18.11) || true
RUN opam reinstall --with-test --verbose lablgtk.2.18.11; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lablgtk.2.18.11' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-21 18:50.26: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-conf-m4.1-lablgtk.2.18.11-e26ca330660bcb49f8bb8e3d37703d278be8c4bd"
2026-03-21 18:50.26: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn conf-m4.1 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-m4.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lablgtk.2.18.11;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lablgtk.2.18.11' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test lablgtk.2.18.11) || true"))
(run (shell "opam reinstall --with-test --verbose lablgtk.2.18.11;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lablgtk.2.18.11' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-21 18:50.26: Waiting for resource in pool OCluster
2026-03-21 21:31.50: Waiting for worker…
2026-03-21 21:34.55: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 76bf2ed944 Merge pull request #29572 from hannesm/release-letsencrypt-v2.0.0
Updating 76bf2ed944..e26ca33066
Fast-forward
packages/conf-findutils/conf-findutils.1/opam | 2 ++
packages/conf-m4/conf-m4.1/opam | 1 +
.../conf-mingw-w64-bzip2-x86_64/conf-mingw-w64-bzip2-x86_64.1/opam | 4 ++--
packages/conf-mingw-w64-gcc-x86_64/conf-mingw-w64-gcc-x86_64.1/opam | 4 ++--
packages/conf-mingw-w64-gmp-x86_64/conf-mingw-w64-gmp-x86_64.1/opam | 4 ++--
.../conf-mingw-w64-pkgconf-x86_64.1/opam | 6 +++---
.../conf-mingw-w64-zlib-x86_64/conf-mingw-w64-zlib-x86_64.1/opam | 4 ++--
.../conf-mingw-w64-zstd-x86_64/conf-mingw-w64-zstd-x86_64.1/opam | 4 ++--
packages/conf-perl/conf-perl.2/opam | 1 +
9 files changed, 17 insertions(+), 13 deletions(-)
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-21 21:35.01 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-21 21:35.01 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-21 21:35.01 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-21 21:35.01 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-21 21:35.01 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-21 21:35.02 ---> using "64b0b1c5956282be62155632b73d49a512770a013b8177e3bd97cfd5e30573f3" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-21 21:35.02 ---> using "5bbc18b187922ee43ab28303966f314ef55d58cc243daaa1a62d891c4651643d" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 10.0 MB in 1s (9665 kB/s)
- Reading package lists...
2026-03-21 21:35.02 ---> using "26c4cf2d2932a5613ac2db8ae671186642ac802d5db4f44c87661f5676362dec" from cache
/home/opam: (run (shell "opam pin add -k version -yn conf-m4.1 1"))
conf-m4 is now pinned to version 1
2026-03-21 21:35.02 ---> using "1f550c38f5bac1e80ecbaf30222372f1ba650bb720c00e72e38ddd72856eafa1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-m4.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
conf-m4.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install conf-m4 1 (pinned)
The following system packages will first need to be installed:
m4
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "m4"
- Selecting previously unselected package m4.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Setting up m4 (1.4.19-8) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-m4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 21:35.02 ---> using "e0baf65572c68338ca7ad6c8769e7aeb1e3d03e85ea3541782477400153674e3" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lablgtk.2.18.11;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lablgtk.2.18.11' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lablgtk.2.18.11 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install conf-gtk2 1 [required by lablgtk]
- install conf-pkg-config 4 [required by conf-gtk2]
- install lablgtk 2.18.11
- install ocamlfind 1.9.8 [required by lablgtk]
The following system packages will first need to be installed:
libexpat1-dev libgtk2.0-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libexpat1-dev" "libgtk2.0-dev" "pkg-config"
- Preconfiguring packages ...
- Selecting previously unselected package libdbus-1-3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20710 files and directories currently installed.)
- Preparing to unpack .../0-libdbus-1-3_1.16.2-2_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../1-dbus-bin_1.16.2-2_amd64.deb ...
- Unpacking dbus-bin (1.16.2-2) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../2-dbus-session-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-session-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../3-dbus-daemon_1.16.2-2_amd64.deb ...
- Unpacking dbus-daemon (1.16.2-2) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../4-dbus-system-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-system-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../5-dbus_1.16.2-2_amd64.deb ...
- Unpacking dbus (1.16.2-2) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../6-libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../7-python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21116 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21602 files and directories currently installed.)
- Preparing to unpack .../000-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package sensible-utils.
- Preparing to unpack .../001-sensible-utils_0.0.25_all.deb ...
- Unpacking sensible-utils (0.0.25) ...
- Selecting previously unselected package libmagic-mgc.
- Preparing to unpack .../002-libmagic-mgc_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic-mgc (1:5.46-5) ...
- Selecting previously unselected package libmagic1t64:amd64.
- Preparing to unpack .../003-libmagic1t64_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic1t64:amd64 (1:5.46-5) ...
- Selecting previously unselected package file.
- Preparing to unpack .../004-file_1%3a5.46-5_amd64.deb ...
- Unpacking file (1:5.46-5) ...
- Selecting previously unselected package gettext-base.
- Preparing to unpack .../005-gettext-base_0.23.1-2_amd64.deb ...
- Unpacking gettext-base (0.23.1-2) ...
- Selecting previously unselected package libuchardet0:amd64.
- Preparing to unpack .../006-libuchardet0_0.0.8-1+b2_amd64.deb ...
- Unpacking libuchardet0:amd64 (0.0.8-1+b2) ...
- Selecting previously unselected package groff-base.
- Preparing to unpack .../007-groff-base_1.23.0-9_amd64.deb ...
- Unpacking groff-base (1.23.0-9) ...
- Selecting previously unselected package bsdextrautils.
- Preparing to unpack .../008-bsdextrautils_2.41-5_amd64.deb ...
- Unpacking bsdextrautils (2.41-5) ...
- Selecting previously unselected package libpipeline1:amd64.
- Preparing to unpack .../009-libpipeline1_1.5.8-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-1) ...
- Selecting previously unselected package man-db.
- Preparing to unpack .../010-man-db_2.13.1-1_amd64.deb ...
- Unpacking man-db (2.13.1-1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../011-libgdk-pixbuf2.0-common_2.42.12+dfsg-4_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../012-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../013-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../014-shared-mime-info_2.4-5+b2_amd64.deb ...
- Unpacking shared-mime-info (2.4-5+b2) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../015-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../016-libpng16-16t64_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../017-libdeflate0_1.23-2_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../018-libjbig0_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblerc4:amd64.
- Preparing to unpack .../019-liblerc4_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libsharpyuv0:amd64.
- Preparing to unpack .../020-libsharpyuv0_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebp7:amd64.
- Preparing to unpack .../021-libwebp7_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp7:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiff6:amd64.
- Preparing to unpack .../022-libtiff6_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../023-libgdk-pixbuf-2.0-0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../024-gtk-update-icon-cache_4.18.6+ds-2_amd64.deb ...
- No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
- No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
- Unpacking gtk-update-icon-cache (4.18.6+ds-2) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../025-hicolor-icon-theme_0.18-2_all.deb ...
- Unpacking hicolor-icon-theme (0.18-2) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../026-adwaita-icon-theme_48.1-1_all.deb ...
- Unpacking adwaita-icon-theme (48.1-1) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../027-at-spi2-common_2.56.2-1+deb13u1_all.deb ...
- Unpacking at-spi2-common (2.56.2-1+deb13u1) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../028-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../029-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../030-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package autopoint.
- Preparing to unpack .../031-autopoint_0.23.1-2_all.deb ...
- Unpacking autopoint (0.23.1-2) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../032-bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package libdebhelper-perl.
- Preparing to unpack .../033-libdebhelper-perl_13.24.2_all.deb ...
- Unpacking libdebhelper-perl (13.24.2) ...
- Selecting previously unselected package libtool.
- Preparing to unpack .../034-libtool_2.5.4-4_all.deb ...
- Unpacking libtool (2.5.4-4) ...
- Selecting previously unselected package dh-autoreconf.
- Preparing to unpack .../035-dh-autoreconf_20_all.deb ...
- Unpacking dh-autoreconf (20) ...
- Selecting previously unselected package libarchive-zip-perl.
- Preparing to unpack .../036-libarchive-zip-perl_1.68-1_all.deb ...
- Unpacking libarchive-zip-perl (1.68-1) ...
- Selecting previously unselected package libfile-stripnondeterminism-perl.
- Preparing to unpack .../037-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ...
- Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ...
- Selecting previously unselected package dh-strip-nondeterminism.
- Preparing to unpack .../038-dh-strip-nondeterminism_1.14.1-2_all.deb ...
- Unpacking dh-strip-nondeterminism (1.14.1-2) ...
- Selecting previously unselected package libelf1t64:amd64.
- Preparing to unpack .../039-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package dwz.
- Preparing to unpack .../040-dwz_0.15-1+b1_amd64.deb ...
- Unpacking dwz (0.15-1+b1) ...
- Selecting previously unselected package gettext.
- Preparing to unpack .../041-gettext_0.23.1-2_amd64.deb ...
- Unpacking gettext (0.23.1-2) ...
- Selecting previously unselected package intltool-debian.
- Preparing to unpack .../042-intltool-debian_0.35.0+20060710.6_all.deb ...
- Unpacking intltool-debian (0.35.0+20060710.6) ...
- Selecting previously unselected package po-debconf.
- Preparing to unpack .../043-po-debconf_1.0.21+nmu1_all.deb ...
- Unpacking po-debconf (1.0.21+nmu1) ...
- Selecting previously unselected package debhelper.
- Preparing to unpack .../044-debhelper_13.24.2_all.deb ...
- Unpacking debhelper (13.24.2) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../045-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../046-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../047-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../048-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../049-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../050-fontconfig_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig (2.15.0-2.3) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../051-gir1.2-glib-2.0_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libatk1.0-0t64:amd64.
- Preparing to unpack .../052-libatk1.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package gir1.2-atk-1.0:amd64.
- Preparing to unpack .../053-gir1.2-atk-1.0_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../054-libpixman-1-0_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../055-libxcb-render0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../056-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../057-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../058-libcairo2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../059-libcairo-gobject2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package gir1.2-freedesktop:amd64.
- Preparing to unpack .../060-gir1.2-freedesktop_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-glib-2.0-dev:amd64.
- Preparing to unpack .../061-gir1.2-glib-2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking gir1.2-glib-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package gir1.2-freedesktop-dev:amd64.
- Preparing to unpack .../062-gir1.2-freedesktop-dev_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop-dev:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../063-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgtk2.0-common.
- Preparing to unpack .../064-libgtk2.0-common_2.24.33-7_all.deb ...
- Unpacking libgtk2.0-common (2.24.33-7) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../065-libgraphite2-3_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../066-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-gobject0:amd64.
- Preparing to unpack .../067-libharfbuzz-gobject0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
- Preparing to unpack .../068-gir1.2-harfbuzz-0.0_10.2.0-1+b1_amd64.deb ...
- Unpacking gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../069-libfribidi0_1.0.16-1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.16-1) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../070-libthai-data_0.1.29-2_all.deb ...
- Unpacking libthai-data (0.1.29-2) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../071-libdatrie1_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../072-libthai0_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../073-libpango-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../074-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../075-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../076-libxft2_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libpangoxft-1.0-0:amd64.
- Preparing to unpack .../077-libpangoxft-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package gir1.2-pango-1.0:amd64.
- Preparing to unpack .../078-gir1.2-pango-1.0_1.56.3-1_amd64.deb ...
- Unpacking gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../079-libavahi-common-data_0.8-16_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../080-libavahi-common3_0.8-16_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../081-libavahi-client3_0.8-16_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-16) ...
- Selecting previously unselected package libcups2t64:amd64.
- Preparing to unpack .../082-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...
- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../083-libxcomposite1_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../084-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../085-libxcursor1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../086-libxdamage1_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../087-libxi6_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../088-libxinerama1_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../089-libxrandr2_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libgtk2.0-0t64:amd64.
- Preparing to unpack .../090-libgtk2.0-0t64_2.24.33-7_amd64.deb ...
- Unpacking libgtk2.0-0t64:amd64 (2.24.33-7) ...
- Selecting previously unselected package gir1.2-gtk-2.0:amd64.
- Preparing to unpack .../091-gir1.2-gtk-2.0_2.24.33-7_amd64.deb ...
- Unpacking gir1.2-gtk-2.0:amd64 (2.24.33-7) ...
- Selecting previously unselected package native-architecture.
- Preparing to unpack .../092-native-architecture_0.2.6_all.deb ...
- Unpacking native-architecture (0.2.6) ...
- Selecting previously unselected package libgirepository-2.0-0:amd64.
- Preparing to unpack .../093-libgirepository-2.0-0_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgirepository-2.0-0:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package girepository-tools:amd64.
- Preparing to unpack .../094-girepository-tools_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking girepository-tools:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package gnome-accessibility-themes.
- Preparing to unpack .../095-gnome-accessibility-themes_3.28-4_all.deb ...
- Unpacking gnome-accessibility-themes (3.28-4) ...
- Selecting previously unselected package gnome-themes-extra-data.
- Preparing to unpack .../096-gnome-themes-extra-data_3.28-4_all.deb ...
- Unpacking gnome-themes-extra-data (3.28-4) ...
- Selecting previously unselected package gtk2-engines-pixbuf:amd64.
- Preparing to unpack .../097-gtk2-engines-pixbuf_2.24.33-7_amd64.deb ...
- Unpacking gtk2-engines-pixbuf:amd64 (2.24.33-7) ...
- Selecting previously unselected package gnome-themes-extra:amd64.
- Preparing to unpack .../098-gnome-themes-extra_3.28-4_amd64.deb ...
- Unpacking gnome-themes-extra:amd64 (3.28-4) ...
- Selecting previously unselected package libicu76:amd64.
- Preparing to unpack .../099-libicu76_76.1-4_amd64.deb ...
- Unpacking libicu76:amd64 (76.1-4) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../100-icu-devtools_76.1-4_amd64.deb ...
- Unpacking icu-devtools (76.1-4) ...
- Selecting previously unselected package libarchive-cpio-perl.
- Preparing to unpack .../101-libarchive-cpio-perl_0.10-3_all.deb ...
- Unpacking libarchive-cpio-perl (0.10-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../102-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../103-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../104-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../105-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../106-uuid-dev_2.41-5_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libblkid-dev:amd64.
- Preparing to unpack .../107-libblkid-dev_2.41-5_amd64.deb ...
- Unpacking libblkid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsepol-dev:amd64.
- Preparing to unpack .../108-libsepol-dev_3.8.1-1_amd64.deb ...
- Unpacking libsepol-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../109-libpcre2-16-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../110-libpcre2-32-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../111-libpcre2-posix3_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../112-libpcre2-dev_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libselinux1-dev:amd64.
- Preparing to unpack .../113-libselinux1-dev_3.8.1-1_amd64.deb ...
- Unpacking libselinux1-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libmount-dev:amd64.
- Preparing to unpack .../114-libmount-dev_2.41-5_amd64.deb ...
- Unpacking libmount-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsysprof-capture-4-dev:amd64.
- Preparing to unpack .../115-libsysprof-capture-4-dev_48.0-2_amd64.deb ...
- Unpacking libsysprof-capture-4-dev:amd64 (48.0-2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../116-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libgio-2.0-dev:amd64.
- Preparing to unpack .../117-libgio-2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgio-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../118-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...
- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-bin.
- Preparing to unpack .../119-libglib2.0-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package python3-packaging.
- Preparing to unpack .../120-python3-packaging_25.0-1_all.deb ...
- Unpacking python3-packaging (25.0-1) ...
- Selecting previously unselected package libgio-2.0-dev-bin.
- Preparing to unpack .../121-libgio-2.0-dev-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgio-2.0-dev-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-dev-bin.
- Preparing to unpack .../122-libglib2.0-dev-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-dev-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-dev:amd64.
- Preparing to unpack .../123-libglib2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libatk1.0-dev:amd64.
- Preparing to unpack .../124-libatk1.0-dev_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk1.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../125-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../126-libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Selecting previously unselected package liblzo2-2:amd64.
- Preparing to unpack .../127-liblzo2-2_2.10-3+b1_amd64.deb ...
- Unpacking liblzo2-2:amd64 (2.10-3+b1) ...
- Selecting previously unselected package libcairo-script-interpreter2:amd64.
- Preparing to unpack .../128-libcairo-script-interpreter2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-script-interpreter2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../129-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../130-libpng-dev_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../131-libfreetype-dev_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../132-libfontconfig-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libpixman-1-dev:amd64.
- Preparing to unpack .../133-libpixman-1-dev_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-dev:amd64 (0.44.0-3) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../134-x11-common_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking x11-common (1:7.7+24+deb13u1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../135-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../136-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../137-libice-dev_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../138-libsm-dev_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxcb-render0-dev:amd64.
- Preparing to unpack .../139-libxcb-render0-dev_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0-dev:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0-dev:amd64.
- Preparing to unpack .../140-libxcb-shm0-dev_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0-dev:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../141-libxext-dev_2%3a1.3.4-1+b3_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../142-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2-dev:amd64.
- Preparing to unpack .../143-libcairo2-dev_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2-dev:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libdatrie-dev:amd64.
- Preparing to unpack .../144-libdatrie-dev_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie-dev:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../145-libdav1d7_1.5.1-1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.1-1) ...
- Selecting previously unselected package libdeflate-dev:amd64.
- Preparing to unpack .../146-libdeflate-dev_1.23-2_amd64.deb ...
- Unpacking libdeflate-dev:amd64 (1.23-2) ...
- Selecting previously unselected package libfribidi-dev:amd64.
- Preparing to unpack .../147-libfribidi-dev_1.0.16-1_amd64.deb ...
- Unpacking libfribidi-dev:amd64 (1.0.16-1) ...
- Selecting previously unselected package libgail18t64:amd64.
- Preparing to unpack .../148-libgail18t64_2.24.33-7_amd64.deb ...
- Unpacking libgail18t64:amd64 (2.24.33-7) ...
- Selecting previously unselected package libgail-common:amd64.
- Preparing to unpack .../149-libgail-common_2.24.33-7_amd64.deb ...
- Unpacking libgail-common:amd64 (2.24.33-7) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../150-libgdk-pixbuf2.0-bin_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Selecting previously unselected package libjpeg62-turbo-dev:amd64.
- Preparing to unpack .../151-libjpeg62-turbo-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjpeg-dev:amd64.
- Preparing to unpack .../152-libjpeg-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjbig-dev:amd64.
- Preparing to unpack .../153-libjbig-dev_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig-dev:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../154-liblzma-dev_5.8.1-1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.8.1-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../155-libzstd-dev_1.5.7+dfsg-1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Selecting previously unselected package libwebpdemux2:amd64.
- Preparing to unpack .../156-libwebpdemux2_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebpmux3:amd64.
- Preparing to unpack .../157-libwebpmux3_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebpdecoder3:amd64.
- Preparing to unpack .../158-libwebpdecoder3_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libsharpyuv-dev:amd64.
- Preparing to unpack .../159-libsharpyuv-dev_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebp-dev:amd64.
- Preparing to unpack .../160-libwebp-dev_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp-dev:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiffxx6:amd64.
- Preparing to unpack .../161-libtiffxx6_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiffxx6:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package liblerc-dev:amd64.
- Preparing to unpack .../162-liblerc-dev_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc-dev:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libtiff-dev:amd64.
- Preparing to unpack .../163-libtiff-dev_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiff-dev:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-dev:amd64.
- Preparing to unpack .../164-libgdk-pixbuf-2.0-dev_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-dev:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgraphite2-dev:amd64.
- Preparing to unpack .../165-libgraphite2-dev_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-dev:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libgtk2.0-bin.
- Preparing to unpack .../166-libgtk2.0-bin_2.24.33-7_amd64.deb ...
- Unpacking libgtk2.0-bin (2.24.33-7) ...
- Selecting previously unselected package libharfbuzz-icu0:amd64.
- Preparing to unpack .../167-libharfbuzz-icu0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-icu0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-subset0:amd64.
- Preparing to unpack .../168-libharfbuzz-subset0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-subset0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-cairo0:amd64.
- Preparing to unpack .../169-libharfbuzz-cairo0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-cairo0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../170-libicu-dev_76.1-4_amd64.deb ...
- Unpacking libicu-dev:amd64 (76.1-4) ...
- Selecting previously unselected package libharfbuzz-dev:amd64.
- Preparing to unpack .../171-libharfbuzz-dev_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-dev:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libthai-dev:amd64.
- Preparing to unpack .../172-libthai-dev_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai-dev:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libxft-dev:amd64.
- Preparing to unpack .../173-libxft-dev_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft-dev:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package pango1.0-tools.
- Preparing to unpack .../174-pango1.0-tools_1.56.3-1_amd64.deb ...
- Unpacking pango1.0-tools (1.56.3-1) ...
- Selecting previously unselected package libpango1.0-dev:amd64.
- Preparing to unpack .../175-libpango1.0-dev_1.56.3-1_amd64.deb ...
- Unpacking libpango1.0-dev:amd64 (1.56.3-1) ...
- Selecting previously unselected package libxinerama-dev:amd64.
- Preparing to unpack .../176-libxinerama-dev_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxfixes-dev:amd64.
- Preparing to unpack .../177-libxfixes-dev_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxi-dev:amd64.
- Preparing to unpack .../178-libxi-dev_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi-dev:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxrandr-dev:amd64.
- Preparing to unpack .../179-libxrandr-dev_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libxcursor-dev:amd64.
- Preparing to unpack .../180-libxcursor-dev_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor-dev:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxcomposite-dev:amd64.
- Preparing to unpack .../181-libxcomposite-dev_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxdamage-dev:amd64.
- Preparing to unpack .../182-libxdamage-dev_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxml2-utils.
- Preparing to unpack .../183-libxml2-utils_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-utils (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libgtk2.0-dev:amd64.
- Preparing to unpack .../184-libgtk2.0-dev_2.24.33-7_amd64.deb ...
- Unpacking libgtk2.0-dev:amd64 (2.24.33-7) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../185-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libltdl-dev:amd64.
- Preparing to unpack .../186-libltdl-dev_2.5.4-4_amd64.deb ...
- Unpacking libltdl-dev:amd64 (2.5.4-4) ...
- Selecting previously unselected package libsys-hostname-long-perl.
- Preparing to unpack .../187-libsys-hostname-long-perl_1.5-3_all.deb ...
- Unpacking libsys-hostname-long-perl (1.5-3) ...
- Selecting previously unselected package libmail-sendmail-perl.
- Preparing to unpack .../188-libmail-sendmail-perl_0.80-3_all.deb ...
- Unpacking libmail-sendmail-perl (0.80-3) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../189-libpng-tools_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng-tools (1.6.48-1+deb13u3) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../190-librsvg2-2_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../191-librsvg2-common_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../192-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../193-xdg-user-dirs_0.18-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-2) ...
- Setting up media-types (13.0.0) ...
- Setting up libpipeline1:amd64 (1.5.8-1) ...
- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
- Setting up libpixman-1-dev:amd64 (0.44.0-3) ...
- Setting up native-architecture (0.2.6) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Setting up liblerc4:amd64 (4.0.0+ds-5) ...
- Setting up libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Setting up bsdextrautils (2.41-5) ...
- Setting up hicolor-icon-theme (0.18-2) ...
- Setting up libxi6:amd64 (2:1.8.2-1) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...
- Setting up xdg-user-dirs (0.18-2) ...
- Setting up libmagic-mgc (1:5.46-5) ...
- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...
- Setting up libarchive-zip-perl (1.68-1) ...
- Setting up libdebhelper-perl (13.24.2) ...
- Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Setting up libmagic1t64:amd64 (1:5.46-5) ...
- Setting up x11-common (1:7.7+24+deb13u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libdeflate0:amd64 (1.23-2) ...
- Setting up libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Setting up gnome-themes-extra-data (3.28-4) ...
- Setting up gettext-base (0.23.1-2) ...
- Setting up liblzo2-2:amd64 (2.10-3+b1) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up file (1:5.46-5) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libjbig0:amd64 (2.1-6.1+b2) ...
- Setting up libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Setting up libelf1t64:amd64 (0.192-4) ...
- Setting up libsysprof-capture-4-dev:amd64 (48.0-2) ...
- Setting up libxcb-shm0-dev:amd64 (1.17.0-2+b1) ...
- Setting up libgraphite2-dev:amd64 (1.3.14-2+b1) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- No schema files found: doing nothing.
- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up gnome-accessibility-themes (3.28-4) ...
- Setting up libexpat1-dev:amd64 (2.7.1-2) ...
- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Setting up libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up uuid-dev:amd64 (2.41-5) ...
- Setting up libavahi-common-data:amd64 (0.8-16) ...
- Setting up libdbus-1-3:amd64 (1.16.2-2) ...
- Setting up libfribidi0:amd64 (1.0.16-1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Setting up autopoint (0.23.1-2) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up libsepol-dev:amd64 (3.8.1-1) ...
- Setting up libxcb-render0-dev:amd64 (1.17.0-2+b1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u2) ...
- Setting up liblerc-dev:amd64 (4.0.0+ds-5) ...
- Setting up libltdl7:amd64 (2.5.4-4) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up libwebp7:amd64 (1.5.0-0.1) ...
- Setting up libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Setting up liblzma-dev:amd64 (5.8.1-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Setting up dwz (0.15-1+b1) ...
- Setting up libdav1d7:amd64 (1.5.1-1) ...
- Setting up sensible-utils (0.0.25) ...
- Setting up gir1.2-glib-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up at-spi2-common (2.56.2-1+deb13u1) ...
- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...
- Setting up dbus-session-bus-common (1.16.2-2) ...
- Setting up libarchive-cpio-perl (0.10-3) ...
- Setting up libuchardet0:amd64 (0.0.8-1+b2) ...
- Setting up libthai-data (0.1.29-2) ...
- Setting up libgtk2.0-common (2.24.33-7) ...
- Setting up libicu76:amd64 (76.1-4) ...
- Setting up dbus-system-bus-common (1.16.2-2) ...
- Setting up libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...
- Setting up libtiffxx6:amd64 (4.7.0-3+deb13u1) ...
- Setting up libdeflate-dev:amd64 (1.23-2) ...
- Setting up libxcomposite1:amd64 (1:0.4.6-1) ...
- Setting up libsys-hostname-long-perl (1.5-3) ...
- Setting up libxrender-dev:amd64 (1:0.9.12-1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up dbus-bin (1.16.2-2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libbz2-dev:amd64 (1.0.8-6) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
- Setting up libfile-stripnondeterminism-perl (1.14.1-2) ...
- Setting up libblkid-dev:amd64 (2.41-5) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up gettext (0.23.1-2) ...
- Setting up libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Setting up libice-dev:amd64 (2:1.1.1-1) ...
- Setting up libpng-tools (1.6.48-1+deb13u3) ...
- Setting up libtool (2.5.4-4) ...
- Setting up libgirepository-2.0-0:amd64 (2.84.4-3~deb13u2) ...
- Setting up gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Setting up libselinux1-dev:amd64 (3.8.1-1) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libfribidi-dev:amd64 (1.0.16-1) ...
- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libpng-dev:amd64 (1.6.48-1+deb13u3) ...
- Setting up libavahi-common3:amd64 (0.8-16) ...
- Setting up libjpeg-dev:amd64 (1:2.1.5-4) ...
- Setting up libjbig-dev:amd64 (2.1-6.1+b2) ...
- Setting up libglib2.0-bin (2.84.4-3~deb13u2) ...
- Setting up dbus-daemon (1.16.2-2) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up intltool-debian (0.35.0+20060710.6) ...
- Setting up libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Setting up dh-autoreconf (20) ...
- Setting up libmail-sendmail-perl (0.80-3) ...
- Setting up libltdl-dev:amd64 (2.5.4-4) ...
- Setting up libthai0:amd64 (0.1.29-2+b1) ...
- Setting up libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Setting up libwebp-dev:amd64 (1.5.0-0.1) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up libtiff-dev:amd64 (4.7.0-3+deb13u1) ...
- Setting up dbus (1.16.2-2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.4-5+b2) ...
- Setting up icu-devtools (76.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up dh-strip-nondeterminism (1.14.1-2) ...
- Setting up libdatrie-dev:amd64 (0.2.13-3+b1) ...
- Setting up groff-base (1.23.0-9) ...
- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libxi-dev:amd64 (2:1.8.2-1) ...
- Setting up libxml2-utils (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libicu-dev:amd64 (76.1-4) ...
- Setting up libavahi-client3:amd64 (0.8-16) ...
- Setting up libmount-dev:amd64 (2.41-5) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Setting up gtk-update-icon-cache (4.18.6+ds-2) ...
- Setting up fontconfig (2.15.0-2.3) ...
- Regenerating fonts cache...
- done.
- Setting up libxft2:amd64 (2.3.6-1+b4) ...
- Setting up libgio-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up libharfbuzz-icu0:amd64 (10.2.0-1+b1) ...
- Setting up girepository-tools:amd64 (2.84.4-3~deb13u2) ...
- Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up libsm-dev:amd64 (2:1.2.6-1) ...
- Setting up libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Setting up libxcursor-dev:amd64 (1:1.2.3-1) ...
- Setting up po-debconf (1.0.21+nmu1) ...
- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Setting up man-db (2.13.1-1) ...
- Building database of manual pages ...
- Setting up libcairo2:amd64 (1.18.4-1+b1) ...
- Setting up libfreetype-dev:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up python3-packaging (25.0-1) ...
- Setting up libharfbuzz-cairo0:amd64 (10.2.0-1+b1) ...
- Setting up adwaita-icon-theme (48.1-1) ...
- update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
- Setting up gtk2-engines-pixbuf:amd64 (2.24.33-7) ...
- Setting up libthai-dev:amd64 (0.1.29-2+b1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Setting up libharfbuzz-subset0:amd64 (10.2.0-1+b1) ...
- Setting up libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcairo-script-interpreter2:amd64 (1.18.4-1+b1) ...
- Setting up libgio-2.0-dev-bin (2.84.4-3~deb13u2) ...
- Setting up gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Setting up libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Setting up libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Setting up pango1.0-tools (1.56.3-1) ...
- Setting up debhelper (13.24.2) ...
- Setting up gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Setting up gnome-themes-extra:amd64 (3.28-4) ...
- Setting up librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Setting up gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Setting up gir1.2-freedesktop-dev:amd64 (1.84.0-1) ...
- Setting up libgtk2.0-0t64:amd64 (2.24.33-7) ...
- Setting up librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Setting up libgail18t64:amd64 (2.24.33-7) ...
- Setting up libgtk2.0-bin (2.24.33-7) ...
- Setting up libxft-dev:amd64 (2.3.6-1+b4) ...
- Setting up libglib2.0-dev-bin (2.84.4-3~deb13u2) ...
- Setting up libgail-common:amd64 (2.24.33-7) ...
- Setting up libglib2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up gir1.2-gtk-2.0:amd64 (2.24.33-7) ...
- Setting up libcairo2-dev:amd64 (1.18.4-1+b1) ...
- Setting up libatk1.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Setting up libgdk-pixbuf-2.0-dev:amd64 (2.42.12+dfsg-4) ...
- Setting up libharfbuzz-dev:amd64 (10.2.0-1+b1) ...
- Setting up libpango1.0-dev:amd64 (1.56.3-1) ...
- Setting up libgtk2.0-dev:amd64 (2.24.33-7) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.4
-> installed conf-gtk2.1
-> retrieved lablgtk.2.18.11 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed ocamlfind.1.9.8
-> installed lablgtk.2.18.11
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 21:36.04 ---> saved as "715ab9ff920f544ee7054441a95315365cc057fa5243f4712958efe400fc1e86"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lablgtk.2.18.11) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lablgtk 2.18.11
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved lablgtk.2.18.11 (https://opam.ocaml.org/cache)
-> removed lablgtk.2.18.11
-> installed lablgtk.2.18.11
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 21:36.30 ---> saved as "9a599272289f6448878d30d56e554c23c448c81daf0a19d893631c45b35aa5ee"
/home/opam: (run (shell "opam reinstall --with-test --verbose lablgtk.2.18.11;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lablgtk.2.18.11' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile lablgtk 2.18.11
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [lablgtk.2.18.11: extract]
-> retrieved lablgtk.2.18.11 (cached)
[lablgtk: patch] applying lablgldir.patch
Processing 2/4: [lablgtk: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix" "/home/opam/.opam/4.14" "LABLGLDIR=/home/opam/.opam/4.14/lib/lablgl" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11)
- checking for ocamlc... ocamlc
- ocaml version is 4.14.2
- ocaml library path is /home/opam/.opam/4.14/lib/ocaml
- Default install dirs are : /home/opam/.opam/4.14/lib/ocaml/lablgtk2 and /home/opam/.opam/4.14/lib/ocaml/stublibs
- Compile with ocamlc -I +lablgtk2
- checking for ocamlopt... ocamlopt
- checking ocamlopt version... ok
- checking for ocamlc.opt... ocamlc.opt
- checking ocamlc.opt version... ok
- checking for ocamlopt.opt... ocamlopt.opt
- checking ocamlc.opt version... ok
- checking for ocamlrun... ocamlrun
- checking for ocamldep... ocamldep
- checking for ocamldoc... ocamldoc
- checking for ocamllex... ocamllex
- checking for ocamlyacc... ocamlyacc
- checking for ocamlmktop... ocamlmktop
- checking for ocamlmklib... ocamlmklib
- checking for camlp4o... no
- configure: WARNING: Cannot find camlp4o; please do not modify .ml4 files.
- checking for ocamlfind... ocamlfind
- ocamlfind library path is /home/opam/.opam/4.14/lib
- ocamlfind ldconf path is /home/opam/.opam/4.14/lib/ocaml/ld.conf
- checking for ocaml threads... use system threads
- checking for ocaml dll support... yes
- checking for ranlib... ranlib
- OCaml uses gcc to compile C files
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to accept ISO C89... none needed
- checking whether C compiler accepts -fno-unwind-tables... yes
- checking platform... Unix
- checking native dynlink... checking for pkg-config... /usr/bin/pkg-config
- checking for GTK+ - version >= 2.0.0...
- yes (version 2.24.33)
- checking pkg-config is at least version 0.9.0... yes
- checking for GTKGL... no
- checking for GLADE... no
- checking for RSVG... no
- checking for GNOMECANVAS... no
- checking for GNOMEUI... no
- checking for PANEL... no
- checking for GTKSPELL... no
- checking for GTKSOURCEVIEW... no
- checking for GTKSOURCEVIEW2... no
- checking for GTKQUARTZ... no
- checking for GTKALL... yes
- configure: creating ./config.status
- config.status: creating config.make
-
- LablGTK configuration:
- threads system
- native dynlink yes
- GtkGLArea not found
- libglade not found
- librsvg not found
- libgnomecanvas not found
- libgnomeui not found
- libpanelapplet not found
- gtkspell not found
- gtksourceview 1 not found
- gtksourceview 2 not found
- quartz not found
-
- debug no
- C compiler gcc
- Camlp4 no
Processing 2/4: [lablgtk: make world]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "world" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11)
- make -C src world
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11/src'
- ocamlc.opt -w s-3+52 -c varcc.ml
- File "varcc.ml", line 181, characters 45-53:
- 181 | if List.mem "noconv" flags
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "varcc.ml", line 255, characters 62-70:
- 255 | (List.mem
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "varcc.ml", line 259, characters 58-66:
- 259 | (List.mem "private"
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "varcc.ml", line 383, characters 39-47:
- 383 | if List.mem "flags" flags
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- ocamlc.opt -o varcc varcc.cmo
- rm -f *_tags.h *_tags.c
- ./varcc gdkpixbuf_tags.var
- Makefile:209: warning: pattern recipe did not update peer target 'gdkpixbufEnums.ml'.
- ./varcc gdk_tags.var
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gdkpixbuf.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gdkpixbuf.c'
- ml_gdkpixbuf.c: In function 'ml_GdkPixbuf_serialize':
- ml_gdkpixbuf.c:67:3: warning: 'gdk_pixdata_from_pixbuf' is deprecated [-Wdeprecated-declarations]
- 67 | pixels = gdk_pixdata_from_pixbuf (&pixdata, pb, pixbuf_marshal_use_rle);
- | ^~~~~~
- In file included from ml_gdkpixbuf.c:28:
- /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixdata.h:102:17: note: declared here
- 102 | gpointer gdk_pixdata_from_pixbuf (GdkPixdata *pixdata,
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:68:3: warning: 'gdk_pixdata_serialize' is deprecated [-Wdeprecated-declarations]
- 68 | stream = gdk_pixdata_serialize (&pixdata, &len);
- | ^~~~~~
- /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixdata.h:94:17: note: declared here
- 94 | guint8* gdk_pixdata_serialize (const GdkPixdata *pixdata,
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:69:13: warning: "serialize_int_4" is deprecated: use "caml_serialize_int_4" instead
- 69 | serialize_int_4 (len);
- | ^~~~~~~~~~~~
- ml_gdkpixbuf.c:70:13: warning: "serialize_block_1" is deprecated: use "caml_serialize_block_1" instead
- 70 | serialize_block_1 (stream, len);
- | ^~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c: In function 'ml_GdkPixbuf_deserialize':
- ml_gdkpixbuf.c:85:13: warning: "deserialize_uint_4" is deprecated: use "caml_deserialize_uint_4" instead
- 85 | len = deserialize_uint_4();
- | ^~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:86:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 86 | stream = stat_alloc (len);
- | ^~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:87:13: warning: "deserialize_block_1" is deprecated: use "caml_deserialize_block_1" instead
- 87 | deserialize_block_1 (stream, len);
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:88:3: warning: 'gdk_pixdata_deserialize' is deprecated [-Wdeprecated-declarations]
- 88 | gdk_pixdata_deserialize (&pixdata, len, stream, &error);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixdata.h:97:17: note: declared here
- 97 | gboolean gdk_pixdata_deserialize (GdkPixdata *pixdata,
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:90:3: warning: 'gdk_pixbuf_from_pixdata' is deprecated [-Wdeprecated-declarations]
- 90 | pb = gdk_pixbuf_from_pixdata (&pixdata, TRUE, &error);
- | ^~
- /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixdata.h:106:17: note: declared here
- 106 | GdkPixbuf* gdk_pixbuf_from_pixdata (const GdkPixdata *pixdata,
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:95:13: warning: "stat_free" is deprecated: use "caml_stat_free" instead
- 95 | stat_free (stream);
- | ^~~~~~~~~
- ml_gdkpixbuf.c:103:13: warning: "deserialize_error" is deprecated: use "caml_deserialize_error" instead
- 103 | deserialize_error (msg);
- | ^~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c: In function 'ml_gdkpixbuf_init':
- ml_gdkpixbuf.c:133:13: warning: "register_custom_operations" is deprecated: use "caml_register_custom_operations" instead
- 133 | register_custom_operations (&ml_custom_GdkPixbuf);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c: In function 'ml_gdk_pixbuf_get_pixels':
- ml_gdkpixbuf.c:149:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 149 | value ret = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c: In function 'ml_gdk_pixbuf_get_file_info':
- ml_gdkpixbuf.c:185:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 185 | v = alloc_tuple(3);
- | ^~~~~~~~~
- ml_gdkpixbuf.c:186:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 186 | Store_field(v, 0, copy_string(gdk_pixbuf_format_get_name(fmt)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c: In function 'ml_gdk_pixbuf_render_pixmap_and_mask':
- ml_gdkpixbuf.c:262:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 262 | ret = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~
- ml_gdkpixbuf.c: In function 'convert_gdk_pixbuf_options':
- ml_gdkpixbuf.c:301:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 301 | *opt_k = stat_alloc(sizeof (char *) * (len + 1));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:302:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 302 | *opt_v = stat_alloc(sizeof (char *) * (len + 1));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c: In function 'ml_gdk_pixbuf_save':
- ml_gdkpixbuf.c:330:13: warning: "stat_free" is deprecated: use "caml_stat_free" instead
- 330 | stat_free(opt_k);
- | ^~~~~~~
- ml_gdkpixbuf.c:331:13: warning: "stat_free" is deprecated: use "caml_stat_free" instead
- 331 | stat_free(opt_v);
- | ^~~~~~~
- ml_gdkpixbuf.c: In function 'ml_gdkpixbuf_savefunc':
- ml_gdkpixbuf.c:347:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 347 | s = alloc_string (count);
- | ^~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:349:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 349 | res = callback_exn (*cb, s);
- | ^~~~~~~~~~~~~~~~~~
- ml_gdkpixbuf.c:353:27: warning: "format_caml_exception" is deprecated: use "caml_format_exception" instead
- 353 | "%s", format_caml_exception(Extract_exception(res)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ./varcc pango_tags.var
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gdk.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gdk.c'
- ml_gdk.c: In function 'ml_raise_gdk':
- ml_gdk.c:65:13: warning: "raise_with_string" is deprecated: use "caml_raise_with_string" instead
- 65 | raise_with_string (*exn, (char*)errmsg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_drawable_get_size':
- ml_gdk.c:260:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 260 | ret = alloc_small (2,0);
- | ^~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GDK_WINDOW_XWINDOW':
- ml_gdk.c:285:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 285 | ML_1 (GDK_WINDOW_XWINDOW, GdkDrawable_val, Val_XID)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_window_get_position':
- ml_gdk.c:294:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 294 | ret = alloc_small (2,0);
- | ^~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_window_get_pointer_location':
- ml_gdk.c:306:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 306 | ret = alloc_small (2, 0);
- | ^~~~~~~~~~~~~~~
- ml_gdk.c: In function 'Val_GdkCursor_new':
- ml_gdk.c:314:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 314 | Make_Val_final_pointer_ext (GdkCursor, _new, Ignore, gdk_cursor_unref, 20)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_display_get_window_at_pointer':
- ml_gdk.c:346:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 346 | tup = alloc_tuple(3);
- | ^~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_pixmap_colormap_create_from_xpm':
- ml_gdk.c:393:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 393 | ret = alloc_small (2,0);
- | ^~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_pixmap_colormap_create_from_xpm_d':
- ml_gdk.c:416:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 416 | ret = alloc_small (2, 0);
- | ^~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'Val_GdkFont':
- ml_gdk.c:424:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 424 | Make_Val_final_pointer (GdkFont, gdk_font_ref, gdk_font_unref, 0)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'Val_GdkFont_no_ref':
- ml_gdk.c:425:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 425 | Make_Val_final_pointer_ext (GdkFont, _no_ref, Ignore, gdk_font_unref, 20)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_property_change':
- ml_gdk.c:448:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 448 | int nelems = (format == 8 ? string_length (data) : Wosize_val(data));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'copy_xdata':
- ml_gdk.c:482:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 482 | data = alloc_string (nitems);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:487:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 487 | data = alloc (nitems,0);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:493:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 493 | data = alloc (nitems,0);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:495:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 495 | Store_field(data, i, copy_int32 (((long*)xdata)[i]));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:502:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 502 | ret = alloc_small (2,0);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_property_get':
- ml_gdk.c:533:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 533 | pair = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'Val_GdkRegion':
- ml_gdk.c:548:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 548 | Make_Val_final_pointer (GdkRegion, Ignore, gdk_region_destroy, 0)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_gc_set_dashes':
- ml_gdk.c:610:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 610 | cdashes = stat_alloc(sizeof (gint8) * l);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:615:13: warning: "stat_free" is deprecated: use "caml_stat_free" instead
- 615 | stat_free (cdashes);
- | ^~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_gc_get_values':
- ml_gdk.c:634:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 634 | ret = alloc (18, 0);
- | ^~~~~~~~~~~~
- ml_gdk.c: In function 'ml_point_array_new':
- ml_gdk.c:682:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 682 | invalid_argument("PointArray.new");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:683:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 683 | ret = alloc (1 + Wosize_asize(Int_val(len)*sizeof(GdkPoint)),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_segment_array_new':
- ml_gdk.c:702:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 702 | invalid_argument("SegmentArray.new");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:703:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 703 | ret = alloc (1 + Wosize_asize(Int_val(len)*sizeof(GdkSegment)),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'Val_GdkEvent':
- ml_gdk.c:766:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 766 | Make_Val_final_pointer (GdkEvent, Ignore, gdk_event_free, 1)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_gdk_event_get_time':
- ml_gdk.c:787:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 787 | ML_1 (gdk_event_get_time, GdkEvent_val, copy_int32)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventMotion_x':
- ml_gdk.c:805:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 805 | Make_Extractor (GdkEventMotion, GdkEvent_arg(Motion), x, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventMotion_y':
- ml_gdk.c:806:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 806 | Make_Extractor (GdkEventMotion, GdkEvent_arg(Motion), y, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'copy_axes':
- ml_gdk.c:813:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 813 | x = copy_double(axes[0]);
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:814:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 814 | y = copy_double(axes[0]);
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c:815:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 815 | ret = alloc_small(2, 0);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventMotion_x_root':
- ml_gdk.c:827:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 827 | Make_Extractor (GdkEventMotion, GdkEvent_arg(Motion), x_root, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventMotion_y_root':
- ml_gdk.c:828:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 828 | Make_Extractor (GdkEventMotion, GdkEvent_arg(Motion), y_root, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventButton_x':
- ml_gdk.c:830:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 830 | Make_Extractor (GdkEventButton, GdkEvent_arg(Button), x, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventButton_y':
- ml_gdk.c:831:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 831 | Make_Extractor (GdkEventButton, GdkEvent_arg(Button), y, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventButton_x_root':
- ml_gdk.c:836:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 836 | Make_Extractor (GdkEventButton, GdkEvent_arg(Button), x_root, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventButton_y_root':
- ml_gdk.c:837:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 837 | Make_Extractor (GdkEventButton, GdkEvent_arg(Button), y_root, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventScroll_x':
- ml_gdk.c:840:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 840 | Make_Extractor (GdkEventScroll, GdkEvent_arg(Scroll), x, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventScroll_y':
- ml_gdk.c:841:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 841 | Make_Extractor (GdkEventScroll, GdkEvent_arg(Scroll), y, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventScroll_x_root':
- ml_gdk.c:846:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 846 | Make_Extractor (GdkEventScroll, GdkEvent_arg(Scroll), x_root, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventScroll_y_root':
- ml_gdk.c:847:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 847 | Make_Extractor (GdkEventScroll, GdkEvent_arg(Scroll), y_root, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventCrossing_x':
- ml_gdk.c:857:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 857 | Make_Extractor (GdkEventCrossing, GdkEvent_arg(Crossing), x, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventCrossing_y':
- ml_gdk.c:858:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 858 | Make_Extractor (GdkEventCrossing, GdkEvent_arg(Crossing), y, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventCrossing_x_root':
- ml_gdk.c:859:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 859 | Make_Extractor (GdkEventCrossing, GdkEvent_arg(Crossing), x_root, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventCrossing_y_root':
- ml_gdk.c:860:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 860 | Make_Extractor (GdkEventCrossing, GdkEvent_arg(Crossing), y_root, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventSelection_requestor':
- ml_gdk.c:885:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 885 | Val_GdkNativeWindow)
- | ^ ~~~~~~~~~~~~~~~~~~~~
- ml_gdk.c: In function 'ml_GdkEventSetting_name':
- ml_gdk.c:905:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 905 | Make_Extractor (GdkEventSetting, GdkEvent_arg(Setting), name, copy_string)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ./varcc glib_tags.var
- Makefile:209: warning: pattern recipe did not update peer target 'glibEnums.ml'.
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_glib.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_glib.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_glib.c:34:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from ml_glib.c:33:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_glib.c: In function 'copy_string_v':
- ml_glib.c:67:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 67 | s = copy_string (*v);
- | ^~~~~~~~~~~~~~~
- ml_glib.c:68:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 68 | c = alloc_small (2, 0);
- | ^~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_raise_glib':
- ml_glib.c:93:13: warning: "raise_with_string" is deprecated: use "caml_raise_with_string" instead
- 93 | raise_with_string (*exn, (char*)errmsg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'Val_GList':
- ml_glib.c:104:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 104 | new_cell = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_glib.c:108:13: warning: "modify" is deprecated: use "caml_modify" instead
- 108 | else modify(&Field(last_cell,1), new_cell);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_register_exn_map':
- ml_glib.c:141:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 141 | struct exn_data *exn_data = stat_alloc (sizeof *exn_data);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_raise_gerror_exn':
- ml_glib.c:169:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 169 | msg = copy_string(err->message);
- | ^~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c:170:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 170 | b = alloc_small (3, 0);
- | ^~~~~~~~~~~~~
- ml_glib.c:175:13: warning: "mlraise" is deprecated: use "caml_raise" instead
- 175 | mlraise(b);
- | ^
- ml_glib.c: In function 'ml_raise_generic_gerror':
- ml_glib.c:186:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 186 | failwith ("gerror");
- | ^~~~~~~~~~~~~~
- ml_glib.c:188:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 188 | msg = copy_string (err->message);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c:190:13: warning: "raise_with_arg" is deprecated: use "caml_raise_with_arg" instead
- 190 | raise_with_arg (*exn, msg);
- | ^~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_log_func':
- ml_glib.c:212:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 212 | msg = copy_string (message);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_glib.c:213:13: warning: "callback2_exn" is deprecated: use "caml_callback2_exn" instead
- 213 | callback2_exn(*clos_p, Val_int(log_level), msg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_log_set_handler':
- ml_glib.c:225:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 225 | value ret = alloc_small(3,0);
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_main_iteration':
- ml_glib.c:262:13: warning: Deprecated pre-processor symbol: replace with "g_main_context_iteration"
- 262 | ML_1 (g_main_iteration, Bool_val, Val_bool)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_main_pending':
- ml_glib.c:263:13: warning: Deprecated pre-processor symbol: replace with "g_main_context_pending"
- 263 | ML_0 (g_main_pending, Val_bool)
- | ^~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_main_is_running':
- ml_glib.c:264:13: warning: Deprecated pre-processor symbol: replace with "g_main_loop_is_running"
- 264 | ML_1 (g_main_is_running, GMainLoop_val, Val_bool)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_main_quit':
- ml_glib.c:265:13: warning: Deprecated pre-processor symbol: replace with "g_main_loop_quit"
- 265 | ML_1 (g_main_quit, GMainLoop_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_main_destroy':
- ml_glib.c:266:13: warning: Deprecated pre-processor symbol: replace with "g_main_loop_unref"
- 266 | ML_1 (g_main_destroy, GMainLoop_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_source_func':
- ml_glib.c:271:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 271 | res = callback_exn (*clos, Val_unit);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'Val_GIOChannel':
- ml_glib.c:323:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 323 | Make_Val_final_pointer (GIOChannel, g_io_channel_ref, g_io_channel_unref, 0)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'Val_GIOChannel_noref':
- ml_glib.c:324:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 324 | Make_Val_final_pointer_ext (GIOChannel, _noref, Ignore, g_io_channel_unref, 20)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_io_channel_watch':
- ml_glib.c:344:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 344 | res = callback_exn (*clos_p, cond);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_io_channel_read':
- ml_glib.c:370:3: warning: 'g_io_channel_read' is deprecated: Use 'g_io_channel_read_chars' instead [-Wdeprecated-declarations]
- 370 | switch (g_io_channel_read(GIOChannel_val(io),
- | ^~~~~~
- In file included from /usr/include/glib-2.0/glib.h:56:
- /usr/include/glib-2.0/glib/giochannel.h:169:13: note: declared here
- 169 | GIOError g_io_channel_read (GIOChannel *channel,
- | ^~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'Val_GSList':
- ml_glib.c:426:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 426 | new_cell = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_glib.c:430:13: warning: "modify" is deprecated: use "caml_modify" instead
- 430 | else modify(&Field(last_cell,1), new_cell);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'caml_copy_string_len_and_free':
- ml_glib.c:465:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 465 | v = alloc_string (len);
- | ^~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_convert':
- ml_glib.c:476:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 476 | c_res = g_convert(String_val(str),string_length(str),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_convert_with_fallback':
- ml_glib.c:488:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 488 | c_res = g_convert_with_fallback(String_val(str),string_length(str),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_filename_to_utf8':
- ml_glib.c:507:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 507 | Make_conversion(g_filename_to_utf8)
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_filename_from_utf8':
- ml_glib.c:509:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 509 | Make_conversion(g_filename_from_utf8)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_filename_from_uri':
- ml_glib.c:522:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 522 | v_p = alloc_small(2, 0);
- | ^~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_get_charset':
- ml_glib.c:543:13: warning: Deprecated pre-processor symbol: replace with "const"
- 543 | G_CONST_RETURN char *c;
- | ^~~~~~~~~~~~~
- ml_glib.c:545:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 545 | couple = alloc_tuple(2);
- | ^~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_utf8_validate':
- ml_glib.c:553:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 553 | return Val_bool(g_utf8_validate(SizedString_val(s),NULL));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_utf8_strlen':
- ml_glib.c:564:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 564 | ML_1 (g_utf8_strlen, SizedString_val, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_utf8_normalize':
- ml_glib.c:565:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 565 | ML_2 (g_utf8_normalize, SizedString_val, Normalize_mode_val, copy_string_g_free)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_utf8_casefold':
- ml_glib.c:566:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 566 | ML_1 (g_utf8_casefold, SizedString_val, copy_string_g_free)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_utf8_collate_key':
- ml_glib.c:568:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 568 | ML_1 (g_utf8_collate_key, SizedString_val, copy_string_g_free)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_utf8_strup':
- ml_glib.c:569:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 569 | ML_1 (g_utf8_strup, SizedString_val, copy_string_g_free)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_utf8_strdown':
- ml_glib.c:570:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 570 | ML_1 (g_utf8_strdown, SizedString_val, copy_string_g_free)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_markup_escape_text':
- ml_glib.c:594:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 594 | ML_1 (g_markup_escape_text, SizedString_val, copy_string_g_free)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_get_user_name':
- ml_glib.c:606:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 606 | ML_0 (g_get_user_name, copy_string)
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_get_real_name':
- ml_glib.c:607:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 607 | ML_0 (g_get_real_name, copy_string)
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_get_home_dir':
- ml_glib.c:611:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 611 | return s ? ml_some (copy_string (s)) : Val_unit;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_get_tmp_dir':
- ml_glib.c:613:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 613 | ML_0 (g_get_tmp_dir, copy_string)
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_find_program_in_path':
- ml_glib.c:618:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 618 | if (s == NULL) raise_not_found();
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c:619:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 619 | v = copy_string(s);
- | ^~~~~~~~~
- ml_glib.c: In function 'ml_g_getenv':
- ml_glib.c:627:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 627 | if (s == NULL) raise_not_found();
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c:628:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 628 | return copy_string(s);
- | ^~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_setenv':
- ml_glib.c:635:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 635 | failwith("g_setenv");
- | ^~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_get_user_cache_dir':
- ml_glib.c:645:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 645 | ML_0 (g_get_user_cache_dir, copy_string)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_get_user_data_dir':
- ml_glib.c:646:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 646 | ML_0 (g_get_user_data_dir, copy_string)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glib.c: In function 'ml_g_get_user_config_dir':
- ml_glib.c:647:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 647 | ML_0 (g_get_user_config_dir, copy_string)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ./varcc gobject_tags.var
- Makefile:209: warning: pattern recipe did not update peer target 'gobjectEnums.ml'.
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gobject.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gobject.c'
- ml_gobject.c: In function 'Val_GObject':
- ml_gobject.c:60:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 60 | Make_Val_final_pointer(GObject, g_object_ref, ml_g_object_unref_later, 0)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'Val_GObject_new':
- ml_gobject.c:61:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 61 | Make_Val_final_pointer_ext (GObject, _new, Ignore, ml_g_object_unref_later, 20)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_type_init':
- ml_gobject.c:103:1: warning: 'g_type_init' is deprecated [-Wdeprecated-declarations]
- 103 | ML_0 (g_type_init, Unit)
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from ml_gobject.c:26:
- /usr/include/glib-2.0/gobject/gtype.h:737:23: note: declared here
- 737 | void g_type_init (void);
- | ^~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_type_interface_prerequisites':
- ml_gobject.c:122:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 122 | res = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_type_register_static':
- ml_gobject.c:140:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 140 | failwith ("g_type_register_static: invalid parent g_type");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'Val_GClosure':
- ml_gobject.c:169:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 169 | Make_Val_final_pointer(GClosure, g_closure_ref, g_closure_unref, 0)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'Val_GClosure_sink':
- ml_gobject.c:173:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 173 | g_closure_unref, 20)
- | ^ ~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'notify_destroy':
- ml_gobject.c:178:13: warning: "remove_global_root" is deprecated: use "caml_remove_global_root" instead
- 178 | remove_global_root((value*)&c->data);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'marshal':
- ml_gobject.c:185:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 185 | value vargs = alloc(3,0);
- | ^~~~~~~~~~~~~~~~~
- ml_gobject.c:188:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 188 | Store_field(vargs, 0, (ret ? Val_GValue_wrap(ret) : alloc(2,0)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:192:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 192 | callback_exn ((value)closure->data, vargs);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_closure_new':
- ml_gobject.c:201:13: warning: "register_global_root" is deprecated: use "caml_register_global_root" instead
- 201 | register_global_root((value*)&closure->data);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_value_new':
- ml_gobject.c:221:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 221 | value ret = alloc_custom(&ml_custom_GValue, sizeof(value)+sizeof(GValue),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'GValue_val':
- ml_gobject.c:246:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 246 | if (v == NULL) invalid_argument("GValue_val");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'Val_gboxed':
- ml_gobject.c:275:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 275 | value ret = alloc_custom(&ml_custom_gboxed, 2*sizeof(value), 10, 1000);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'Val_gboxed_new':
- ml_gobject.c:282:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 282 | value ret = alloc_custom(&ml_custom_gboxed, 2*sizeof(value), 10, 1000);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'g_value_get_mlvariant':
- ml_gobject.c:301:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 301 | invalid_argument("Gobject.Value.get");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:331:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 331 | tmp = copy_double ((double)DATA.v_float);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:335:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 335 | tmp = copy_double (DATA.v_double);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:339:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 339 | tmp = Val_option (DATA.v_pointer, copy_string);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:367:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 367 | tmp = copy_int64 (DATA.v_int64);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:371:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 371 | ret = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'g_value_set_mlvariant':
- ml_gobject.c:457:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 457 | failwith ("Gobject.Value.set : cannot set this value");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:460:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 460 | failwith ("GObject.Value.set : argument type mismatch");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_value_get_nativeint':
- ml_gobject.c:471:13: warning: "copy_nativeint" is deprecated: use "caml_copy_nativeint" instead
- 471 | return copy_nativeint (DATA.v_int);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:476:13: warning: "copy_nativeint" is deprecated: use "caml_copy_nativeint" instead
- 476 | return copy_nativeint (DATA.v_long);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:478:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 478 | invalid_argument ("Gobject.get_nativeint");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_value_get_int32':
- ml_gobject.c:488:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 488 | return copy_int32 (DATA.v_int);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:491:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 491 | return copy_int32 (DATA.v_long);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:493:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 493 | failwith ("Gobject.get_int32");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_value_get_pointer':
- ml_gobject.c:508:20: warning: "failwith" is deprecated: use "caml_failwith" instead
- 508 | failwith ("Gobject.get_pointer");
- | ^~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_object_new':
- ml_gobject.c:521:5: warning: 'GParameter' is deprecated [-Wdeprecated-declarations]
- 521 | GParameter *params_copy = NULL, *param;
- | ^~~~~~~~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:28:
- /usr/include/glib-2.0/gobject/gparam.h:280:8: note: declared here
- 280 | struct _GParameter /* auxiliary structure for _setv() variants */
- | ^~~~~~~~~~~
- ml_gobject.c:521:5: warning: 'GParameter' is deprecated [-Wdeprecated-declarations]
- 521 | GParameter *params_copy = NULL, *param;
- | ^~~~~~~~~~
- /usr/include/glib-2.0/gobject/gparam.h:280:8: note: declared here
- 280 | struct _GParameter /* auxiliary structure for _setv() variants */
- | ^~~~~~~~~~~
- ml_gobject.c:528:7: warning: 'GParameter' is deprecated [-Wdeprecated-declarations]
- 528 | params_copy = (GParameter*)calloc(n, sizeof(GParameter));
- | ^~~~~~~~~~~
- /usr/include/glib-2.0/gobject/gparam.h:280:8: note: declared here
- 280 | struct _GParameter /* auxiliary structure for _setv() variants */
- | ^~~~~~~~~~~
- ml_gobject.c:528:7: warning: 'GParameter' is deprecated [-Wdeprecated-declarations]
- 528 | params_copy = (GParameter*)calloc(n, sizeof(GParameter));
- | ^~~~~~~~~~~
- /usr/include/glib-2.0/gobject/gparam.h:280:8: note: declared here
- 280 | struct _GParameter /* auxiliary structure for _setv() variants */
- | ^~~~~~~~~~~
- ml_gobject.c:533:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 533 | if (!pspec) failwith ("Gobject.create");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:540:5: warning: 'g_object_newv' is deprecated: Use 'g_object_new_with_properties' instead [-Wdeprecated-declarations]
- 540 | ret = g_object_newv (GType_val(type), n, params_copy);
- | ^~~
- /usr/include/glib-2.0/gobject/gobject.h:444:13: note: declared here
- 444 | gpointer g_object_newv (GType object_type,
- | ^~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_signal_query':
- ml_gobject.c:617:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 617 | if (query->signal_id == 0) invalid_argument("g_signal_query");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:619:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 619 | Copy_GSignalQuery(ml_query, ml_query_params, query);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_signal_list_ids':
- ml_gobject.c:632:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 632 | Copy_array(ret, n_ids, ids, Val_int);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:632:13: warning: "alloc_shr" is deprecated: use "caml_alloc_shr" instead
- 632 | Copy_array(ret, n_ids, ids, Val_int);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:632:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 632 | Copy_array(ret, n_ids, ids, Val_int);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c: In function 'ml_g_signal_emit_by_name':
- ml_gobject.c:658:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 658 | failwith("GtkSignal.emit_by_name : bad signal name");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gobject.c:663:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 663 | failwith("GtkSignal.emit_by_name : bad parameters number");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gpointer.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gpointer.c'
- ml_gpointer.c: In function 'ml_stable_copy':
- ml_gpointer.c:36:13: warning: "young_end" is deprecated: use "caml_young_end" instead
- 36 | if (Is_young_block(v))
- | ^~~~~~~~~~~~~~
- ml_gpointer.c:36:13: warning: "young_start" is deprecated: use "caml_young_start" instead
- 36 | if (Is_young_block(v))
- | ^~~~~~~~~~~~~~
- ml_gpointer.c:42:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 42 | if (tag < No_scan_tag) invalid_argument("ml_stable_copy");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gpointer.c:43:13: warning: "alloc_shr" is deprecated: use "caml_alloc_shr" instead
- 43 | ret = alloc_shr (wosize, tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gpointer.c: In function 'ml_string_at_pointer':
- ml_gpointer.c:53:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 53 | value ret = alloc_string(length);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gpointer.c: In function 'ml_long_at_pointer':
- ml_gpointer.c:71:13: warning: "copy_nativeint" is deprecated: use "caml_copy_nativeint" instead
- 71 | return copy_nativeint(*(long*)Pointer_val(ptr));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gpointer.c: In function 'ml_gpointer_get_addr':
- ml_gpointer.c:115:13: warning: "copy_nativeint" is deprecated: use "caml_copy_nativeint" instead
- 115 | return copy_nativeint ((long)ml_gpointer_base (region));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gvaluecaml.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gvaluecaml.c'
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose wrappers.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'wrappers.c'
- In file included from /usr/include/glib-2.0/glib/giochannel.h:35,
- from /usr/include/glib-2.0/glib.h:56,
- from wrappers.c:31:
- /usr/include/glib-2.0/glib/gmain.h:380:13: warning: "callback" is deprecated: use "caml_callback" instead
- 380 | GSourceFunc callback,
- | ^ ~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/glib-2.0/glib/giochannel.h:190:41: warning: "flush" is deprecated: use "caml_flush" instead
- 190 | gboolean flush,
- | ^~~~~~~~~~~~~~~~
- In file included from /usr/include/glib-2.0/glib.h:68:
- /usr/include/glib-2.0/glib/gpattern.h:45:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 45 | gsize string_length,
- | ^ ~~~~~~~~~~~~~~~~~~~~
- /usr/include/glib-2.0/glib/gpattern.h:53:48: warning: "string_length" is deprecated: use "caml_string_length" instead
- 53 | guint string_length,
- | ^~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'copy_memblock_indirected':
- wrappers.c:40:13: warning: "alloc_shr" is deprecated: use "caml_alloc_shr" instead
- 40 | ret = alloc_shr (wosize+2, Abstract_tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'alloc_memblock_indirected':
- wrappers.c:48:13: warning: "alloc_shr" is deprecated: use "caml_alloc_shr" instead
- 48 | value ret = alloc_shr (Wosize_asize(size)+2, Abstract_tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'ml_some':
- wrappers.c:86:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 86 | value ret = alloc_small(1,0);
- | ^~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'ml_cons':
- wrappers.c:94:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 94 | value cell = alloc_small(2, Tag_cons);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'ml_raise_null_pointer':
- wrappers.c:105:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 105 | raise_constant (*exn);
- | ^~~~~~~~~~~~
- wrappers.c: In function 'Val_pointer':
- wrappers.c:110:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 110 | value ret = alloc_small (2, Abstract_tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'copy_string_check':
- wrappers.c:119:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 119 | return copy_string ((char*) str);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'copy_string_or_null':
- wrappers.c:124:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 124 | return copy_string (str ? (char*) str : "");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'ml_global_root_new':
- wrappers.c:132:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 132 | value *p = stat_alloc(sizeof(value));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c:134:13: warning: "register_global_root" is deprecated: use "caml_register_global_root" instead
- 134 | register_global_root (p);
- | ^~~~~~~~~~~~~~~~~
- wrappers.c: In function 'ml_global_root_destroy':
- wrappers.c:140:13: warning: "remove_global_root" is deprecated: use "caml_remove_global_root" instead
- 140 | remove_global_root ((value *)data);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c:141:13: warning: "stat_free" is deprecated: use "caml_stat_free" instead
- 141 | stat_free (data);
- | ^~~~~~~~~
- wrappers.c: In function 'ml_lookup_from_c':
- wrappers.c:149:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 149 | invalid_argument ("ml_lookup_from_c");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'ml_lookup_to_c':
- wrappers.c:161:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 161 | invalid_argument ("ml_lookup_to_c");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'ml_lookup_flags_getter':
- wrappers.c:172:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 172 | cell = alloc_small(2, Tag_cons);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- wrappers.c: In function 'string_list_of_strv':
- wrappers.c:214:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 214 | s = copy_string (v[i]);
- | ^~~~~~~~~~~~~~~~~
- wrappers.c:215:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 215 | cell = alloc_small (2, Tag_cons);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ./varcc gtk_tags.var
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtk.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtk.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtk.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtk.c: In function 'ml_raise_gtk':
- ml_gtk.c:49:13: warning: "raise_with_string" is deprecated: use "caml_raise_with_string" instead
- 49 | raise_with_string (*exn, (char*)errmsg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'Val_GtkObject_sink':
- ml_gtk.c:88:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 88 | ml_gtk_object_unref_later, 20)
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_accelerator_parse':
- ml_gtk.c:120:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 120 | tup = alloc_small(2, 0);
- | ^~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_widget_get_pointer':
- ml_gtk.c:337:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 337 | ret = alloc_small (2,0);
- | ^~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'Val_GtkAllocation':
- ml_gtk.c:371:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 371 | value ret = alloc_small (4, 0);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_widget_style_get_property':
- ml_gtk.c:410:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 410 | invalid_argument("Gobject.Widget.style_get_property");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_drag_dest_set':
- ml_gtk.c:448:20: warning: "alloc" is deprecated: use "caml_alloc" instead
- 448 | alloc (Wosize_asize(n_targets * sizeof(GtkTargetEntry)),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_drag_source_set':
- ml_gtk.c:485:20: warning: "alloc" is deprecated: use "caml_alloc" instead
- 485 | alloc (Wosize_asize(n_targets * sizeof(GtkTargetEntry)),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'Val_GtkSelectionData':
- ml_gtk.c:502:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 502 | Make_Val_final_pointer(GtkSelectionData, Ignore, gtk_selection_data_free, 20)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_selection_data_get_data':
- ml_gtk.c:516:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 516 | ret = alloc_string (data->length);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_selection_data_set':
- ml_gtk.c:525:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 525 | Unit)
- | ^
- ml_gtk.c: In function 'ml_gtk_clipboard_set_text':
- ml_gtk.c:540:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 540 | ML_2 (gtk_clipboard_set_text, GtkClipboard_val, SizedString_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'clipboard_received_func':
- ml_gtk.c:564:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 564 | callback_exn (*(value*)data, arg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'clipboard_text_received_func':
- ml_gtk.c:578:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 578 | value arg = (text != NULL ? ml_some(copy_string(text)) : Val_unit);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c:579:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 579 | callback_exn (*(value*)data, arg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_clipboard_wait_for_targets':
- ml_gtk.c:617:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 617 | new_cell = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_simple_callback':
- ml_gtk.c:650:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 650 | callback_exn (*clos, val);
- | ^~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'Val_GtkObject_window':
- ml_gtk.c:703:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 703 | window_unref_later, 20)
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_file_selection_get_selections':
- ml_gtk.c:744:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 744 | next = alloc(2,0);
- | ^~~~~~~~~~
- ml_gtk.c: In function 'ml_activate_link_func':
- ml_gtk.c:883:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 883 | v_link = copy_string (link);
- | ^~~~~~~~~~~~~~~~~~
- ml_gtk.c:884:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 884 | callback_exn (*closure, v_link);
- | ^~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_init':
- ml_gtk.c:990:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 990 | copy = (argc ? alloc (argc, Abstract_tag) : Atom(0));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c:996:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 996 | argv = (argc ? alloc (argc, 0) : Atom(0));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c:997:13: warning: "modify" is deprecated: use "caml_modify" instead
- 997 | for (i = 0; i < argc; i++) modify(&Field(argv,i), Field(copy,i));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_get_version':
- ml_gtk.c:1010:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 1010 | value ret = alloc_small(3,0);
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_gtk.c: In function 'ml_gtk_get_current_event_time':
- ml_gtk.c:1017:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 1017 | ML_0 (gtk_get_current_event_time, copy_int32)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_pango.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_pango.c'
- ml_pango.c: In function 'Val_PangoFontDescription_new':
- ml_pango.c:59:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 59 | pango_font_description_free, 20)
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'Val_PangoFontMetrics':
- ml_pango.c:96:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 96 | pango_font_metrics_unref, 20)
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'Val_PangoFontMetrics_new':
- ml_pango.c:98:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 98 | pango_font_metrics_unref, 20)
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'ml_Pango_scale_val':
- ml_pango.c:146:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 146 | return copy_double(r);
- | ^~~~~~~~~~~~
- ml_pango.c: In function 'ml_pango_layout_set_text':
- ml_pango.c:176:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 176 | ML_2 (pango_layout_set_text, PangoLayout_val, SizedString_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'ml_pango_layout_set_markup':
- ml_pango.c:178:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 178 | ML_2 (pango_layout_set_markup, PangoLayout_val, SizedString_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'ml_pango_layout_set_markup_with_accel':
- ml_pango.c:180:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 180 | Int_val, NULL Ignore, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'ml_pango_layout_get_size':
- ml_pango.c:205:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 205 | value res = alloc_tuple(2);
- | ^~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'ml_pango_layout_get_pixel_size':
- ml_pango.c:214:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 214 | value res = alloc_tuple(2);
- | ^~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'Val_PangoRectangle':
- ml_pango.c:222:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 222 | value res = alloc_tuple(4);
- | ^~~~~~~~~~~~~~~~~
- ml_pango.c: In function 'ml_pango_layout_xy_to_index':
- ml_pango.c:240:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 240 | res = alloc_tuple(3);
- | ^~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkaction.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkaction.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkaction.c:25:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkaction.c: In function 'ml_gtk_ui_manager_get_widget':
- ml_gtkaction.c:114:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 114 | if (w == NULL) raise_not_found();
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkaction.c: In function 'ml_gtk_ui_manager_get_action':
- ml_gtkaction.c:120:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 120 | if (a == NULL) raise_not_found();
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkaction.c: In function 'ml_gtk_ui_manager_add_ui_from_string':
- ml_gtkaction.c:128:48: warning: "string_length" is deprecated: use "caml_string_length" instead
- 128 | String_val(s), string_length(s),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkbin.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkbin.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkbin.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkbroken.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkbroken.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkbroken.c:30:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkbroken.c: In function 'ml_gtk_text_insert':
- ml_gtkbroken.c:121:27: warning: "string_length" is deprecated: use "caml_string_length" instead
- 121 | String_val(str), string_length(str));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkbutton.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkbutton.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkbutton.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkbutton.c: In function 'ml_gtk_toolbar_insert_element':
- ml_gtkbutton.c:137:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 137 | Insert(NULL) Insert(NULL) Int_val, Val_GtkWidget)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkbutton.c:137:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- ml_gtkbutton.c:137:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- ml_gtkbutton.c: In function 'ml_gtk_toolbar_insert_widget':
- ml_gtkbutton.c:140:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 140 | Optstring_val, Optstring_val, Int_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkbutton.c:140:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- ml_gtkbutton.c: In function 'ml_g_link_button_func':
- ml_gtkbutton.c:216:13: warning: "callback2_exn" is deprecated: use "caml_callback2_exn" instead
- 216 | ret = callback2_exn(*clos, Val_GtkWidget(button),ml_link);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkassistant.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkassistant.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkassistant.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkassistant.c: In function 'ml_g_assistant_page_func':
- ml_gtkassistant.c:83:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 83 | ret = callback_exn(*clos, Val_int(current_page));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkedit.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkedit.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkedit.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkedit.c: In function 'ml_gtk_editable_get_selection_bounds':
- ml_gtkedit.c:71:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 71 | tmp = alloc_small(2,0);
- | ^~~~~~~~~~~~~~~~~~~
- ml_gtkedit.c:74:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 74 | res = alloc_small(1,0);
- | ^~~~~~~~~~~~~~~~~~~
- ml_gtkedit.c: In function 'ml_gtk_editable_insert_text':
- ml_gtkedit.c:83:34: warning: "string_length" is deprecated: use "caml_string_length" instead
- 83 | string_length(s), &position);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkedit.c: In function 'ml_gtk_entry_completion_match_func':
- ml_gtkedit.c:219:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 219 | vkey = copy_string(key);
- | ^~~~~~~~~~~~~~
- ml_gtkedit.c:221:13: warning: "callback2_exn" is deprecated: use "caml_callback2_exn" instead
- 221 | vret = callback2_exn(*closure, vkey, viter);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkfile.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkfile.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkfile.c:25:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkfile.c: In function 'some_string_and_free':
- ml_gtkfile.c:62:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 62 | value v = s ? ml_some(copy_string(s)) : Val_unit;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkfile.c: In function 'ml_gtk_file_filter_func':
- ml_gtkfile.c:112:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 112 | CONS_MEMBER (mime_type, MIME_TYPE)
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkfile.c:112:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkfile.c:113:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 113 | CONS_MEMBER (display_name, DISPLAY_NAME)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkfile.c:113:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkfile.c:114:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 114 | CONS_MEMBER (uri, URI)
- | ^~~~~~~~~~~~
- ml_gtkfile.c:114:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkfile.c:115:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 115 | CONS_MEMBER (filename, FILENAME)
- | ^~~~~~~~~~~~~~~~~~~~~~
- ml_gtkfile.c:115:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkfile.c:117:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 117 | r = callback_exn (*cb, l);
- | ^~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtklist.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtklist.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtklist.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtklist.c: In function 'ml_gtk_clist_set_text':
- ml_gtklist.c:125:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 125 | ML_4 (gtk_clist_set_text, GtkCList_val, Int_val, Int_val, Optstring_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtklist.c: In function 'ml_gtk_clist_get_text':
- ml_gtklist.c:131:20: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 131 | invalid_argument ("Gtk.Clist.get_text");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtklist.c: In function 'ml_gtk_clist_get_pixmap':
- ml_gtklist.c:146:20: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 146 | invalid_argument ("Gtk.Clist.get_pixmap");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtklist.c:150:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 150 | ret = alloc_small (2,0);
- | ^~~~~~~~~~~~~~~~
- ml_gtklist.c: In function 'ml_gtk_clist_get_selection_info':
- ml_gtklist.c:189:20: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 189 | invalid_argument ("Gtk.Clist.get_row_column");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtklist.c:190:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 190 | ret = alloc_small (2,0);
- | ^~~~~~~~~~~~~~~~
- ml_gtklist.c: In function 'ml_gtk_clist_get_row_state':
- ml_gtklist.c:215:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 215 | if (list == NULL) invalid_argument ("Gtk.Clist.get_row_state");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkmenu.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkmenu.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkmenu.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkmenu.c: In function 'menu_popup_cb':
- ml_gtkmenu.c:165:13: warning: "stat_free" is deprecated: use "caml_stat_free" instead
- 165 | stat_free(clos);
- | ^~~~~~~~
- ml_gtkmenu.c: In function 'ml_gtk_menu_popup_at':
- ml_gtkmenu.c:170:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 170 | value *clos = stat_alloc(sizeof(value));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkmisc.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkmisc.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkmisc.c:25:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkmisc.c: In function 'ml_gtk_gamma_curve_get_gamma':
- ml_gtkmisc.c:72:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 72 | Make_Extractor (gtk_gamma_curve_get, GtkGammaCurve_val, gamma, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkmisc.c: In function 'ml_gtk_calendar_get_date':
- ml_gtkmisc.c:158:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 158 | ret = alloc_small (3, 0);
- | ^~~~~~~~~~~~~~~~~
- ml_gtkmisc.c: In function 'ml_gtk_calendar_is_day_marked':
- ml_gtkmisc.c:170:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 170 | if (day >= 31) invalid_argument("gtk_calendar_is_day_marked: date ouf of range");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkmisc.c: In function 'ml_gtk_label_get_selection_bounds':
- ml_gtkmisc.c:233:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 233 | r = alloc_small(2, 0);
- | ^~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkpack.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkpack.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkpack.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkpack.c: In function 'ml_gtk_box_query_child_packing':
- ml_gtkpack.c:78:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 78 | ret = alloc_small(4,0);
- | ^~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkrange.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkrange.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkrange.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkrange.c: In function 'ml_gtk_progress_bar_get_pulse_step':
- ml_gtkrange.c:86:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 86 | ML_1 (gtk_progress_bar_get_pulse_step, GtkProgressBar_val,copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkrange.c: In function 'ml_gtk_progress_bar_get_fraction':
- ml_gtkrange.c:88:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 88 | ML_1 (gtk_progress_bar_get_fraction, GtkProgressBar_val,copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkrange.c: In function 'ml_gtk_ruler_get_lower':
- ml_gtkrange.c:134:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 134 | Make_Extractor (gtk_ruler_get, GtkRuler_val, lower, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkrange.c: In function 'ml_gtk_ruler_get_upper':
- ml_gtkrange.c:135:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 135 | Make_Extractor (gtk_ruler_get, GtkRuler_val, upper, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkrange.c: In function 'ml_gtk_ruler_get_position':
- ml_gtkrange.c:136:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 136 | Make_Extractor (gtk_ruler_get, GtkRuler_val, position, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkrange.c: In function 'ml_gtk_ruler_get_max_size':
- ml_gtkrange.c:137:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 137 | Make_Extractor (gtk_ruler_get, GtkRuler_val, max_size, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtkstock.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtkstock.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtkstock.c:23:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtkstock.c: In function 'Val_GtkIconSource_new':
- ml_gtkstock.c:52:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 52 | Make_Val_final_pointer_ext(GtkIconSource, _new, Ignore, gtk_icon_source_free, 5)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c: In function 'ml_gtk_icon_source_get_filename':
- ml_gtkstock.c:57:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 57 | ML_1 (gtk_icon_source_get_filename, GtkIconSource_val, copy_string)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c: In function 'Val_GtkIconSet':
- ml_gtkstock.c:69:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 69 | Make_Val_final_pointer(GtkIconSet, gtk_icon_set_ref, gtk_icon_set_unref, 0)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c: In function 'Val_GtkIconSet_new':
- ml_gtkstock.c:70:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 70 | Make_Val_final_pointer_ext(GtkIconSet, _new, Ignore, gtk_icon_set_unref, 5)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c: In function 'ml_gtk_icon_set_get_sizes':
- ml_gtkstock.c:84:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 84 | c = alloc_small(2, Tag_cons);
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c: In function 'ml_gtk_stock_lookup':
- ml_gtkstock.c:129:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 129 | if (!b) raise_not_found();
- | ^~~~~~~~~~~~~~~~
- ml_gtkstock.c:135:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 135 | TESTANDCONS(SHIFT);
- | ^~~~~~~~~
- ml_gtkstock.c:136:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 136 | TESTANDCONS(LOCK);
- | ^~~~~~~~
- ml_gtkstock.c:137:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 137 | TESTANDCONS(CONTROL);
- | ^~~~~~~~~~~
- ml_gtkstock.c:138:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 138 | TESTANDCONS(MOD1); TESTANDCONS(MOD2); TESTANDCONS(MOD3);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c:138:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkstock.c:138:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkstock.c:139:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 139 | TESTANDCONS(MOD4); TESTANDCONS(MOD5);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c:139:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkstock.c:140:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 140 | TESTANDCONS(BUTTON1); TESTANDCONS(BUTTON2); TESTANDCONS(BUTTON3);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c:140:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkstock.c:140:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkstock.c:141:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 141 | TESTANDCONS(BUTTON4); TESTANDCONS(BUTTON5);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c:141:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkstock.c:142:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 142 | TESTANDCONS(SUPER); TESTANDCONS(HYPER);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c:142:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkstock.c:143:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 143 | TESTANDCONS(META); TESTANDCONS(RELEASE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtkstock.c:143:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- ml_gtkstock.c:144:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 144 | stock_result = alloc_tuple(4);
- | ^~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtktext.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtktext.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtktext.c:29:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from ml_gtktext.c:28:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtktext.c: In function 'tag_foreach_func':
- ml_gtktext.c:152:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 152 | callback_exn (*(value*)user_data, arg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_buffer_insert':
- ml_gtktext.c:225:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 225 | GtkTextIter_val, SizedString_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_buffer_insert_at_cursor':
- ml_gtktext.c:228:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 228 | SizedString_val, Unit)
- | ^~~~~~~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_buffer_insert_interactive':
- ml_gtktext.c:231:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 231 | GtkTextIter_val, SizedString_val, Bool_val, Val_bool)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_buffer_insert_interactive_at_cursor':
- ml_gtktext.c:234:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 234 | SizedString_val, Bool_val, Val_bool)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_buffer_set_text':
- ml_gtktext.c:248:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 248 | ML_2 (gtk_text_buffer_set_text, GtkTextBuffer_val, SizedString_val, Unit)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_buffer_get_bounds':
- ml_gtktext.c:410:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 410 | res = alloc_tuple(2);
- | ^~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_buffer_get_selection_bounds':
- ml_gtktext.c:430:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 430 | res = alloc_tuple(2);
- | ^~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_view_get_line_at_y':
- ml_gtktext.c:531:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 531 | res = alloc_tuple(2);
- | ^~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_view_get_line_yrange':
- ml_gtktext.c:548:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 548 | res = alloc_tuple(2);
- | ^~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_view_buffer_to_window_coords':
- ml_gtktext.c:579:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 579 | res = alloc_tuple(2);
- | ^~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_view_window_to_buffer_coords':
- ml_gtktext.c:598:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 598 | res = alloc_tuple(2);
- | ^~~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_iter_forward_search':
- ml_gtktext.c:850:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 850 | Make_search(forward);
- | ^~~~~~~~~
- ml_gtktext.c:850:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 850 | Make_search(forward);
- | ^~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_iter_backward_search':
- ml_gtktext.c:851:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 851 | Make_search(backward);
- | ^~~~~~~~~~
- ml_gtktext.c:851:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 851 | Make_search(backward);
- | ^~~~~~~~~~
- ml_gtktext.c: In function 'ml_gtk_text_char_predicate':
- ml_gtktext.c:856:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 856 | res = callback_exn (*clos, Val_int(ch));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -ccopt '-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O' -verbose ml_gtktree.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS -fno-unwind-tables -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 -pthread -imacros ml_domain.h -O -I'/home/opam/.opam/4.14/lib/ocaml' 'ml_gtktree.c'
- In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
- from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
- from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
- from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
- from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
- from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
- from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:33,
- from ml_gtktree.c:26:
- /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: 'GTypeDebugFlags' is deprecated [-Wdeprecated-declarations]
- 236 | void gtk_type_init (GTypeDebugFlags debug_flags);
- | ^~~~
- In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
- from /usr/include/glib-2.0/gobject/gbinding.h:31,
- from /usr/include/glib-2.0/glib-object.h:24,
- from /usr/include/glib-2.0/gio/gioenums.h:30,
- from /usr/include/glib-2.0/gio/giotypes.h:30,
- from /usr/include/glib-2.0/gio/gio.h:28,
- from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
- from /usr/include/gtk-2.0/gdk/gdk.h:32,
- from /usr/include/gtk-2.0/gtk/gtk.h:32:
- /usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
- 725 | {
- | ^
- In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
- from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
- from /usr/include/gtk-2.0/gtk/gtk.h:126:
- /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
- 73 | GTimeVal last_popdown;
- | ^~~~~~~~
- In file included from /usr/include/glib-2.0/glib/galloca.h:34,
- from /usr/include/glib-2.0/glib.h:32,
- from /usr/include/glib-2.0/gobject/gbinding.h:30:
- /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
- 580 | struct _GTimeVal
- | ^~~~~~~~~
- ml_gtktree.c: In function 'Val_GtkTreePath':
- ml_gtktree.c:90:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 90 | Make_Val_final_pointer_compare (GtkTreePath, Ignore, gtk_tree_path_compare, gtk_tree_path_free, 1)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'Val_GtkTreeRowReference':
- ml_gtktree.c:95:13: warning: "initialize" is deprecated: use "caml_initialize" instead
- 95 | gtk_tree_row_reference_free, 5)
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_path_get_indices':
- ml_gtktree.c:109:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 109 | value ret = alloc_tuple(depth);
- | ^~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'gtk_tree_model_foreach_func':
- ml_gtktree.c:157:13: warning: "callback2_exn" is deprecated: use "caml_callback2_exn" instead
- 157 | vret = callback2_exn(*closure, vpath, viter);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_store_newv':
- ml_gtktree.c:183:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 183 | (n_columns ? alloc (Wosize_asize(n_columns * sizeof(GType)), Abstract_tag)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_list_store_newv':
- ml_gtktree.c:238:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 238 | (n_columns ? alloc (Wosize_asize(n_columns * sizeof(GType)), Abstract_tag)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'gtk_tree_selection_func':
- ml_gtktree.c:290:13: warning: "callback2_exn" is deprecated: use "caml_callback2_exn" instead
- 290 | value ret = callback2_exn(*(value*)clos_p, vp, Val_bool(cs));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'gtk_tree_selection_foreach_func':
- ml_gtktree.c:312:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 312 | value ret = callback_exn(*(value*)data, p);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'gtk_tree_cell_data_func':
- ml_gtktree.c:391:13: warning: "callback2_exn" is deprecated: use "caml_callback2_exn" instead
- 391 | ret = callback2_exn(*closure, vmod, vit);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c:393:13: warning: "format_caml_exception" is deprecated: use "caml_format_exception" instead
- 393 | CAML_EXN_LOG_VERBOSE("gtk_tree_cell_data_func",ret);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_view_get_cursor':
- ml_gtktree.c:467:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 467 | ret = alloc_tuple(2);
- | ^~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_view_get_path_at_pos':
- ml_gtktree.c:491:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 491 | tup = alloc_tuple(4);
- | ^~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_view_enable_model_drag_dest':
- ml_gtktree.c:523:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 523 | targets = (GtkTargetEntry *) alloc
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_view_enable_model_drag_source':
- ml_gtktree.c:549:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 549 | targets = (GtkTargetEntry *) alloc
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_view_get_dest_row_at_pos':
- ml_gtktree.c:582:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 582 | tup = alloc_tuple(2);
- | ^~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_row_separator_func':
- ml_gtktree.c:602:13: warning: "callback2_exn" is deprecated: use "caml_callback2_exn" instead
- 602 | mlret = callback2_exn (*closure, arg1, arg2);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_view_get_tooltip_context':
- ml_gtktree.c:668:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 668 | tup = alloc_tuple(3);
- | ^~~~~~~~~~~
- ml_gtktree.c:673:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 673 | sub = alloc_tuple(3);
- | ^~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_sortable_get_sort_column_id':
- ml_gtktree.c:767:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 767 | ret = alloc_small(2, 0);
- | ^~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'gtk_tree_iter_compare_func':
- ml_gtktree.c:786:13: warning: "callback3_exn" is deprecated: use "caml_callback3_exn" instead
- 786 | ret = callback3_exn(*clos, obj, iter_a, iter_b);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'gtk_tree_model_filter_visible_func':
- ml_gtktree.c:829:13: warning: "callback2_exn" is deprecated: use "caml_callback2_exn" instead
- 829 | ret = callback2_exn(*clos, obj, it);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_iconview_foreach':
- ml_gtktree.c:896:13: warning: "callback_exn" is deprecated: use "caml_callback_exn" instead
- 896 | callback_exn(*cb, p);
- | ^~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_icon_view_get_selected_items':
- ml_gtktree.c:918:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 918 | cell = alloc_small(2, Tag_cons);
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'callback4':
- ml_gtktree.c:971:13: warning: "callbackN" is deprecated: use "caml_callbackN" instead
- 971 | return callbackN(closure, 4, arg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'encode_iter':
- ml_gtktree.c:1169:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1169 | })
- | ^
- ml_gtktree.c:1169:13: warning: "young_end" is deprecated: use "caml_young_end" instead
- ml_gtktree.c:1169:13: warning: "young_start" is deprecated: use "caml_young_start" instead
- 1169 | })
- | ^
- ml_gtktree.c:1169:13: warning: "young_end" is deprecated: use "caml_young_end" instead
- 1169 | })
- | ^
- ml_gtktree.c:1169:13: warning: "young_start" is deprecated: use "caml_young_start" instead
- 1169 | })
- | ^
- ml_gtktree.c:1169:13: warning: "young_end" is deprecated: use "caml_young_end" instead
- 1169 | })
- | ^
- ml_gtktree.c:1169:13: warning: "young_start" is deprecated: use "caml_young_start" instead
- 1169 | })
- | ^
- ml_gtktree.c: In function 'custom_model_get_flags':
- ml_gtktree.c:1215:13: warning: "callback" is deprecated: use "caml_callback" instead
- 1215 | })
- | ^
- ml_gtktree.c: In function 'custom_model_get_n_columns':
- ml_gtktree.c:1228:13: warning: "callback" is deprecated: use "caml_callback" instead
- 1228 | return Int_val(n_columns);})}
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'custom_model_get_column_type':
- ml_gtktree.c:1241:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1241 | return GType_val(t);})}
- | ^~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'custom_model_get_iter':
- ml_gtktree.c:1271:27: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1271 | }})}
- | ^
- ml_gtktree.c: In function 'custom_model_get_path':
- ml_gtktree.c:1291:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1291 | return gtk_tree_path_copy(GtkTreePath_val(path));})}}
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'custom_model_iter_next':
- ml_gtktree.c:1332:27: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1332 | })})}}
- | ^
- ml_gtktree.c: In function 'custom_model_iter_children':
- ml_gtktree.c:1355:27: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1355 | })})}}
- | ^
- ml_gtktree.c: In function 'custom_model_iter_has_child':
- ml_gtktree.c:1371:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1371 | return Bool_val(callback2(method,callback_object, row));})}}
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'custom_model_iter_n_children':
- ml_gtktree.c:1385:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1385 | return Int_val(callback2(method,callback_object, arg));})}}
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'custom_model_iter_nth_child':
- ml_gtktree.c:1410:27: warning: "callback3" is deprecated: use "caml_callback3" instead
- 1410 | })})}}
- | ^
- ml_gtktree.c: In function 'custom_model_iter_parent':
- ml_gtktree.c:1434:27: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1434 | })})}}
- | ^~
- ml_gtktree.c: In function 'custom_model_ref_node':
- ml_gtktree.c:1448:20: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1448 | callback2(method, callback_object, row);})}}
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'custom_model_unref_node':
- ml_gtktree.c:1462:20: warning: "callback2" is deprecated: use "caml_callback2" instead
- 1462 | callback2(method, callback_object, row);})}}
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_register_custom_model_callback_object':
- ml_gtktree.c:1490:13: warning: "young_end" is deprecated: use "caml_young_end" instead
- 1490 | (char*)callback_object < (char*)young_end &&
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c:1491:13: warning: "young_start" is deprecated: use "caml_young_start" instead
- 1491 | (char*)callback_object > (char*)young_start)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gtktree.c: In function 'ml_gtk_tree_view_get_visible_range':
- ml_gtktree.c:1591:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 1591 | result = alloc_tuple(2);
- | ^~~~~~~~~~~~~~~~~
- ocamlc.opt -w s-3+52 -c gaux.ml
- ocamlc.opt -w s-3+52 -c gpointer.mli
- ocamlc.opt -w s-3+52 -c gpointer.ml
- File "gpointer.ml", line 146, characters 2-13:
- 146 | unsafe_blit reg reg';
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels src, dst were omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gutf8.mli
- ocamlc.opt -w s-3+52 -c gutf8.ml
- File "gutf8.ml", line 68, characters 29-45:
- 68 | let sub_string s ~pos ~len = Bytes.sub_string s pos len
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels pos, len were omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c glib.mli
- ocamlc.opt -w s-3+52 -c glib.ml
- ocamlc.opt -w s-3+52 -c gobject.mli
- ocamlc.opt -w s-3+52 -c gobject.ml
- File "gobject.ml", line 140, characters 17-60:
- 140 | with Failure ("Gobject.get_int32"|"Gobject.get_pointer") -> `NONE
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of
- this constructor's arguments. They are only for information
- and may change in future versions. (See manual section 11.5)
- ocamlc.opt -w s-3+52 -c gdkEnums.ml
- ocamlc.opt -w s-3+52 -c pangoEnums.ml
- ocamlc.opt -w s-3+52 -c gtkEnums.ml
- ocamlc.opt -w s-3+52 -c pango.ml
- ocamlc.opt -w s-3+52 -c gdk.mli
- ocamlc.opt -w s-3+52 -c gdk.ml
- ocamlc.opt -w s-3+52 -c gdkEvent.ml
- ocamlc.opt -w s-3+52 -c gdkKeysyms.ml
- ocamlc.opt -w s-3+52 -c gdkPixbuf.mli
- ocamlc.opt -w s-3+52 -c gdkPixbuf.ml
- ocamlc.opt -w s-3+52 -c gtk.ml
- ocamlc.opt -w s-3+52 -c gtkSignal.mli
- ocamlc.opt -w s-3+52 -c gtkSignal.ml
- File "gtkSignal.ml", line 101, characters 29-40:
- 101 | try Data.of_value conv1 (Closure.nth argv 1)
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gtkStock.ml
- File "gtkStock.ml", line 295, characters 2-10:
- 295 | Gaux.may (Icon_source.set_filename s) filename ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gtkStock.ml", line 296, characters 2-10:
- 296 | Gaux.may (Icon_source.set_pixbuf s) pixbuf ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gtkStock.ml", line 297, characters 2-10:
- 297 | Gaux.may (fun p -> Icon_source.set_direction_wildcarded s false ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gtkStock.ml", line 299, characters 2-10:
- 299 | Gaux.may (fun p -> Icon_source.set_state_wildcarded s false ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gtkStock.ml", line 301, characters 2-10:
- 301 | Gaux.may (fun p -> Icon_source.set_size_wildcarded s false ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gtkObject.ml
- ocamlc.opt -w s-3+52 -c propcc.ml
- File "propcc.ml", line 39, characters 24-34:
- 39 | in (len1 > len2) && ((String.sub s (len1 - len2) len2) = suff)
- ^^^^^^^^^^
- Warning 6 [labels-omitted]: labels pos, len were omitted in the application of this function.
- File "propcc.ml", line 109, characters 3-14:
- 109 | (Hashtbl.add conversions gtk
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels key, data were omitted in the application of this function.
- File "propcc.ml", line 111, characters 3-14:
- 111 | Hashtbl.add conversions (gtk ^ "_opt")
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels key, data were omitted in the application of this function.
- File "propcc.ml", line 120, characters 27-38:
- 120 | (List.iter ~f: (fun t -> Hashtbl.add conversions ("g" ^ t) t)
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels key, data were omitted in the application of this function.
- File "propcc.ml", line 123, characters 39-50:
- 123 | List.iter ~f: (fun (gtype, conv) -> Hashtbl.add conversions gtype conv)
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels key, data were omitted in the application of this function.
- File "propcc.ml", line 133, characters 17-28:
- 133 | Hashtbl.add conversions (pre ^ name)
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels key, data were omitted in the application of this function.
- File "propcc.ml", line 442, characters 43-51:
- 442 | not (List.mem x class_qualifiers))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 506, characters 30-41:
- 506 | Hashtbl.add conversions (pre1 ^ k)
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels key, data were omitted in the application of this function.
- File "propcc.ml", line 581, characters 17-31:
- 581 | if List.mem_assoc "gobject" attrs
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 592, characters 22-36:
- 592 | not (List.mem_assoc "notype" attrs))
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 621, characters 40-51:
- 621 | (Hashtbl.add all_props (name, gtype)
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels key, data were omitted in the application of this function.
- File "propcc.ml", line 669, characters 34-45:
- 669 | else (Hashtbl.add all_pnames pname (); pname)
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels key, data were omitted in the application of this function.
- File "propcc.ml", line 678, characters 31-40:
- 678 | List.iter (List.sort compare shared_props)
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label cmp was omitted in the application of this function.
- File "propcc.ml", line 793, characters 51-59:
- 793 | (List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "propcc.ml", line 801, characters 39-53:
- 801 | if not (List.mem_assoc "abstract" attrs)
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 807, characters 44-52:
- 807 | (List.mem "ConstructOnly" a) &&
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 808, characters 51-59:
- 808 | (not (List.mem "NoSet" a)))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 815, characters 40-54:
- 815 | if List.mem_assoc "hv" attrs
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 830, characters 43-57:
- 830 | if List.mem_assoc "gobject" attrs
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 851, characters 43-57:
- 851 | let set = List.mem_assoc "set" attrs
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 856, characters 51-59:
- 856 | (set || (List.mem "Set" a)) &&
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 857, characters 46-54:
- 857 | ((List.mem "Write" a) &&
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 859, characters 52-60:
- 859 | ((List.mem "ConstructOnly"
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 861, characters 57-65:
- 861 | || (List.mem "NoSet" a)))))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 881, characters 40-54:
- 881 | (if List.mem_assoc "abstract" attrs
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 886, characters 46-60:
- 886 | (if List.mem_assoc "hv" attrs
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 907, characters 47-55:
- 907 | if List.mem "Read" attrs
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 963, characters 44-58:
- 963 | let wrap = List.mem_assoc "wrap" attrs in
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 965, characters 44-58:
- 965 | wrap || (List.mem_assoc "wrapset" attrs) in
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 992, characters 42-50:
- 992 | List.mem "Wrap" attrs)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 1046, characters 47-61:
- 1046 | let vset = List.mem_assoc "vset" attrs in
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 1075, characters 41-55:
- 1075 | List.mem_assoc "wrapsig" attrs in
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label map was omitted in the application of this function.
- File "propcc.ml", line 1080, characters 49-57:
- 1080 | (List.mem "Wrap" attrs) ||
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- File "propcc.ml", line 1083, characters 57-65:
- 1083 | (List.mem "NoWrap"
- ^^^^^^^^
- Warning 6 [labels-omitted]: label set was omitted in the application of this function.
- ocamlc.opt -o propcc propcc.cmo
- ./propcc gtkBase.props
- ocamlc.opt -w s-3+52 -c gtkBaseProps.ml
- File "gtkBaseProps.ml", line 238, characters 39-50:
- 238 | let create pl : Gtk.adjustment obj = Object.make "GtkAdjustment" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 330, characters 4-15:
- 330 | Object.make "GtkWindow" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 391, characters 35-46:
- 391 | let create pl : Gtk.dialog obj = Object.make "GtkDialog" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 416, characters 4-15:
- 416 | Object.make "GtkColorSelectionDialog" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 423, characters 4-15:
- 423 | Object.make "GtkFontSelectionDialog" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 508, characters 35-46:
- 508 | let create pl : Gtk.socket obj = Object.make "GtkSocket" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkBin.props
- ocamlc.opt -w s-3+52 -c gtkBinProps.ml
- File "gtkBinProps.ml", line 39, characters 38-49:
- 39 | let create pl : Gtk.alignment obj = Object.make "GtkAlignment" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 62, characters 34-45:
- 62 | let create pl : Gtk.frame obj = Object.make "GtkFrame" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 81, characters 41-52:
- 81 | let create pl : Gtk.aspect_frame obj = Object.make "GtkAspectFrame" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 93, characters 38-49:
- 93 | let create pl : Gtk.event_box obj = Object.make "GtkEventBox" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 102, characters 38-49:
- 102 | let create pl : Gtk.invisible obj = Object.make "GtkInvisible" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 128, characters 39-50:
- 128 | let create pl : Gtk.handle_box obj = Object.make "GtkHandleBox" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 162, characters 4-15:
- 162 | Object.make "GtkScrolledWindow" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 193, characters 37-48:
- 193 | let create pl : Gtk.viewport obj = Object.make "GtkViewport" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 219, characters 37-48:
- 219 | let create pl : Gtk.expander obj = Object.make "GtkExpander" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkButton.props
- ocamlc.opt -w s-3+52 -c gtkButtonProps.ml
- File "gtkButtonProps.ml", line 43, characters 35-46:
- 43 | let create pl : Gtk.button obj = Object.make "GtkButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 68, characters 42-53:
- 68 | let create pl : Gtk.toggle_button obj = Object.make "GtkToggleButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 83, characters 41-52:
- 83 | let create pl : Gtk.radio_button obj = Object.make "GtkRadioButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 101, characters 41-52:
- 101 | let create pl : Gtk.color_button obj = Object.make "GtkColorButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 127, characters 40-51:
- 127 | let create pl : Gtk.font_button obj = Object.make "GtkFontButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 143, characters 38-49:
- 143 | let create pl : Gtk.tool_item obj = Object.make "GtkToolItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 169, characters 4-15:
- 169 | Object.make "GtkSeparatorToolItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 189, characters 40-51:
- 189 | let create pl : Gtk.tool_button obj = Object.make "GtkToolButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 200, characters 4-15:
- 200 | Object.make "GtkToggleToolButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 215, characters 4-15:
- 215 | Object.make "GtkRadioToolButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 225, characters 4-15:
- 225 | Object.make "GtkMenuToolButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 261, characters 36-47:
- 261 | let create pl : Gtk.toolbar obj = Object.make "GtkToolbar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 275, characters 40-51:
- 275 | let create pl : Gtk.link_button obj = Object.make "GtkLinkButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkEdit.props
- ocamlc.opt -w s-3+52 -c gtkEditProps.ml
- File "gtkEditProps.ml", line 152, characters 34-45:
- 152 | let create pl : Gtk.entry obj = Object.make "GtkEntry" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 209, characters 40-51:
- 209 | let create pl : Gtk.spin_button obj = Object.make "GtkSpinButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 241, characters 34-45:
- 241 | let create pl : Gtk.combo obj = Object.make "GtkCombo" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 273, characters 38-49:
- 273 | let create pl : Gtk.combo_box obj = Object.make "GtkComboBox" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 300, characters 44-55:
- 300 | let create pl : Gtk.combo_box_entry obj = Object.make "GtkComboBoxEntry" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 322, characters 4-25:
- 322 | Gobject.unsafe_create "GtkEntryCompletion" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkList.props
- ocamlc.opt -w s-3+52 -c gtkListProps.ml
- File "gtkListProps.ml", line 17, characters 38-49:
- 17 | let create pl : Gtk.list_item obj = Object.make "GtkListItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkListProps.ml", line 38, characters 34-45:
- 38 | let create pl : Gtk.liste obj = Object.make "GtkList" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkMenu.props
- ocamlc.opt -w s-3+52 -c gtkMenuProps.ml
- File "gtkMenuProps.ml", line 21, characters 40-51:
- 21 | let create pl : Gtk.option_menu obj = Object.make "GtkOptionMenu" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 37, characters 38-49:
- 37 | let create pl : Gtk.menu_item obj = Object.make "GtkMenuItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 72, characters 44-55:
- 72 | let create pl : Gtk.check_menu_item obj = Object.make "GtkCheckMenuItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 91, characters 44-55:
- 91 | let create pl : Gtk.image_menu_item obj = Object.make "GtkImageMenuItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 136, characters 37-48:
- 136 | let create pl : Gtk.menu_bar obj = Object.make "GtkMenuBar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 151, characters 33-44:
- 151 | let create pl : Gtk.menu obj = Object.make "GtkMenu" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkMisc.props
- Warning: no conversion for type PangoAttrList in class GtkLabel
- Warning: no conversion for type GdkPixbufAnimation in class GtkImage
- ocamlc.opt -w s-3+52 -c gtkMiscProps.ml
- File "gtkMiscProps.ml", line 31, characters 36-57:
- 31 | let create pl : gtk_status_icon = Gobject.unsafe_create "GtkStatusIcon" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 135, characters 34-45:
- 135 | let create pl : Gtk.label obj = Object.make "GtkLabel" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 190, characters 39-50:
- 190 | let create pl : Gtk.tips_query obj = Object.make "GtkTipsQuery" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 213, characters 34-45:
- 213 | let create pl : Gtk.arrow obj = Object.make "GtkArrow" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 242, characters 34-45:
- 242 | let create pl : Gtk.image obj = Object.make "GtkImage" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 277, characters 4-15:
- 277 | Object.make "GtkColorSelection" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 295, characters 43-54:
- 295 | let create pl : Gtk.font_selection obj = Object.make "GtkFontSelection" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 305, characters 40-51:
- 305 | let create pl : Gtk.gamma_curve obj = Object.make "GtkGammaCurve" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 325, characters 38-49:
- 325 | let create pl : Gtk.statusbar obj = Object.make "GtkStatusbar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 371, characters 37-48:
- 371 | let create pl : Gtk.calendar obj = Object.make "GtkCalendar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 397, characters 41-52:
- 397 | let create pl : Gtk.drawing_area obj = Object.make "GtkDrawingArea" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 412, characters 34-45:
- 412 | let create pl : Gtk.curve obj = Object.make "GtkCurve" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 433, characters 4-15:
- 433 | Object.make
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkPack.props
- ocamlc.opt -w s-3+52 -c gtkPackProps.ml
- File "gtkPackProps.ml", line 21, characters 4-15:
- 21 | Object.make (if dir = `HORIZONTAL then "GtkHBox" else "GtkVBox") pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 53, characters 4-15:
- 53 | Object.make
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 64, characters 34-45:
- 64 | let create pl : Gtk.fixed obj = Object.make "GtkFixed" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 87, characters 4-15:
- 87 | Object.make (if dir = `HORIZONTAL then "GtkHPaned" else "GtkVPaned") pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 112, characters 35-46:
- 112 | let create pl : Gtk.layout obj = Object.make "GtkLayout" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 188, characters 37-48:
- 188 | let create pl : Gtk.notebook obj = Object.make "GtkNotebook" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 245, characters 34-45:
- 245 | let create pl : Gtk.table obj = Object.make "GtkTable" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 273, characters 31-52:
- 273 | let create pl : size_group = Gobject.unsafe_create "GtkSizeGroup" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkRange.props
- ocamlc.opt -w s-3+52 -c gtkRangeProps.ml
- File "gtkRangeProps.ml", line 24, characters 4-15:
- 24 | Object.make (if dir = `HORIZONTAL then "GtkHRuler" else "GtkVRuler") pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkRangeProps.ml", line 82, characters 4-15:
- 82 | Object.make (if dir = `HORIZONTAL then "GtkHScale" else "GtkVScale") pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkRangeProps.ml", line 94, characters 4-15:
- 94 | Object.make
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkRangeProps.ml", line 120, characters 41-52:
- 120 | let create pl : Gtk.progress_bar obj = Object.make "GtkProgressBar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkText.props
- Warning: no conversion for type PangoTabArray in class GtkTextView
- Warning: no conversion for type PangoTabArray in class GtkTextTag
- ocamlc.opt -w s-3+52 -c gtkTextProps.ml
- File "gtkTextProps.ml", line 80, characters 38-49:
- 80 | let create pl : Gtk.text_view obj = Object.make "GtkTextView" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 154, characters 4-25:
- 154 | Gobject.unsafe_create "GtkTextBuffer" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 160, characters 4-25:
- 160 | Gobject.unsafe_create "GtkTextChildAnchor" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 169, characters 30-51:
- 169 | let create pl : text_mark = Gobject.unsafe_create "GtkTextMark" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 309, characters 4-25:
- 309 | Gobject.unsafe_create "GtkTextTag" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 335, characters 35-56:
- 335 | let create pl : text_tag_table = Gobject.unsafe_create "GtkTextTagTable" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkTree.props
- Warning: no conversion for type PangoAttrList in class GtkCellRendererText
- ocamlc.opt -w s-3+52 -c gtkTreeProps.ml
- File "gtkTreeProps.ml", line 119, characters 38-49:
- 119 | let create pl : Gtk.tree_view obj = Object.make "GtkTreeView" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 165, characters 42-53:
- 165 | let create pl : Gtk.cell_renderer obj = Object.make "GtkCellRenderer" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 188, characters 4-15:
- 188 | Object.make "GtkCellRendererPixbuf" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 268, characters 4-15:
- 268 | Object.make "GtkCellRendererText" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 294, characters 4-15:
- 294 | Object.make "GtkCellRendererToggle" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 307, characters 4-15:
- 307 | Object.make "GtkCellRendererProgress" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 329, characters 4-15:
- 329 | Object.make "GtkCellRendererCombo" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 359, characters 4-15:
- 359 | Object.make "GtkCellRendererAccel" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 423, characters 4-15:
- 423 | Object.make "GtkTreeViewColumn" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 473, characters 4-25:
- 473 | Gobject.unsafe_create "GtkTreeModelSort" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 532, characters 4-25:
- 532 | Gobject.unsafe_create "GtkTreeModelFilter" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 588, characters 38-49:
- 588 | let create pl : Gtk.icon_view obj = Object.make "GtkIconView" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkFile.props
- ocamlc.opt -w s-3+52 -c gtkFileProps.ml
- File "gtkFileProps.ml", line 61, characters 4-15:
- 61 | Object.make "GtkFileChooserButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkAction.props
- ocamlc.opt -w s-3+52 -c gtkActionProps.ml
- File "gtkActionProps.ml", line 41, characters 4-25:
- 41 | Gobject.unsafe_create "GtkAction" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkActionProps.ml", line 79, characters 4-25:
- 79 | Gobject.unsafe_create "GtkToggleAction" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkActionProps.ml", line 104, characters 4-25:
- 104 | Gobject.unsafe_create "GtkRadioAction" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkActionProps.ml", line 146, characters 4-25:
- 146 | Gobject.unsafe_create "GtkUIManager" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkActionProps.ml", line 211, characters 4-25:
- 211 | Gobject.unsafe_create "GtkActionGroup" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkBroken.props
- ocamlc.opt -w s-3+52 -c gtkBrokenProps.ml
- File "gtkBrokenProps.ml", line 18, characters 38-49:
- 18 | let create pl : Gtk.tree_item obj = Object.make "GtkTreeItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBrokenProps.ml", line 42, characters 33-44:
- 42 | let create pl : Gtk.tree obj = Object.make "GtkTree" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBrokenProps.ml", line 95, characters 33-44:
- 95 | let create pl : Gtk.text obj = Object.make "GtkText" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ./propcc gtkAssistant.props
- ocamlc.opt -w s-3+52 -c gtkAssistantProps.ml
- File "gtkAssistantProps.ml", line 21, characters 38-49:
- 21 | let create pl : Gtk.assistant obj = Object.make "GtkAssistant" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gtkData.ml
- ocamlc.opt -w s-3+52 -c gtkBase.ml
- ocamlc.opt -w s-3+52 -c gtkPack.ml
- ocamlc.opt -w s-3+52 -c gtkButton.ml
- File "gtkButton.ml", line 51, characters 44-55:
- 51 | let create_check pl : toggle_button obj = Object.make "GtkCheckButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gtkAssistant.ml
- ocamlc.opt -w s-3+52 -c gtkMenu.ml
- ocamlc.opt -w s-3+52 -c gtkMisc.ml
- ocamlc.opt -w s-3+52 -c gtkWindow.ml
- ocamlc.opt -w s-3+52 -c gtkList.ml
- ocamlc.opt -w s-3+52 -c gtkBin.ml
- ocamlc.opt -w s-3+52 -c gtkEdit.ml
- ocamlc.opt -w s-3+52 -c gtkRange.ml
- ocamlc.opt -w s-3+52 -c gtkText.ml
- ocamlc.opt -w s-3+52 -c gtkTree.ml
- File "gtkTree.ml", line 111, characters 7-21:
- 111 | if iter_nth_child m i p nth then i
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label parent was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gtkFile.ml
- File "gtkFile.ml", line 117, characters 65-79:
- 117 | let dialog_create pl : [Gtk.dialog|Gtk.file_chooser] Gtk.obj = GtkObject.make "GtkFileChooserDialog" pl
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkFile.ml", line 118, characters 65-79:
- 118 | let widget_create pl : [Gtk.widget|Gtk.file_chooser] Gtk.obj = GtkObject.make "GtkFileChooserWidget" pl
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gtkMain.ml
- ocamlc.opt -w s-3+52 -c gtkBroken.ml
- ocamlc.opt -w s-3+52 -c gPango.ml
- ocamlc.opt -w s-3+52 -c gDraw.mli
- ocamlc.opt -w s-3+52 -c gDraw.ml
- File "gDraw.ml", line 103, characters 13-20:
- 103 | ?fore:(may_map self#color fore) ?back:(may_map self#color back)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gDraw.ml", line 103, characters 45-52:
- 103 | ?fore:(may_map self#color fore) ?back:(may_map self#color back)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gObj.mli
- ocamlc.opt -w s-3+52 -c gObj.ml
- File "gObj.ml", line 179, characters 8-20:
- 179 | self#connect sgn (fun context -> callback (new drag_context context))
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gObj.ml", line 328, characters 4-11:
- 328 | may_map (fun w -> new widget (unsafe_cast w)) (get P.parent obj)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c ogtkBaseProps.ml
- ocamlc.opt -w s-3+52 -c gData.mli
- ocamlc.opt -w s-3+52 -c gData.ml
- File "gData.ml", line 45, characters 4-7:
- 45 | may self#set_lower lower;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gData.ml", line 46, characters 4-7:
- 46 | may self#set_upper upper;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gData.ml", line 47, characters 4-7:
- 47 | may self#set_step_increment step_incr;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gData.ml", line 48, characters 4-7:
- 48 | may self#set_page_increment page_incr;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gData.ml", line 49, characters 4-7:
- 49 | may self#set_page_size page_size
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c ogtkBinProps.ml
- ocamlc.opt -w s-3+52 -c ogtkButtonProps.ml
- ocamlc.opt -w s-3+52 -c ogtkEditProps.ml
- ocamlc.opt -w s-3+52 -c ogtkListProps.ml
- ocamlc.opt -w s-3+52 -c ogtkMenuProps.ml
- ocamlc.opt -w s-3+52 -c ogtkMiscProps.ml
- ocamlc.opt -w s-3+52 -c ogtkPackProps.ml
- ocamlc.opt -w s-3+52 -c ogtkRangeProps.ml
- ocamlc.opt -w s-3+52 -c ogtkTextProps.ml
- ocamlc.opt -w s-3+52 -c ogtkTreeProps.ml
- ocamlc.opt -w s-3+52 -c ogtkFileProps.ml
- ocamlc.opt -w s-3+52 -c ogtkActionProps.ml
- ocamlc.opt -w s-3+52 -c ogtkBrokenProps.ml
- ocamlc.opt -w s-3+52 -c ogtkAssistantProps.ml
- ocamlc.opt -w s-3+52 -c gMain.mli
- ocamlc.opt -w s-3+52 -c gMain.ml
- ocamlc.opt -w s-3+52 -c gContainer.mli
- ocamlc.opt -w s-3+52 -c gContainer.ml
- ocamlc.opt -w s-3+52 -c gPack.mli
- ocamlc.opt -w s-3+52 -c gPack.ml
- File "gPack.ml", line 136, characters 18-25:
- 136 | ?hadjustment:(may_map GData.as_adjustment hadjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gPack.ml", line 137, characters 18-25:
- 137 | ?vadjustment:(may_map GData.as_adjustment hadjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gPack.ml", line 202, characters 4-16:
- 202 | self#connect Notebook.S.switch_page (fun _ arg1 -> callback arg1)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gButton.mli
- ocamlc.opt -w s-3+52 -c gButton.ml
- File "gButton.ml", line 229, characters 2-10:
- 229 | Gaux.may item#set_homogeneous homogeneous ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 230, characters 2-10:
- 230 | Gaux.may item#set_expand expand ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 231, characters 2-10:
- 231 | Gaux.may (fun f -> (f (item :> tool_item_o) : unit)) packing ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 294, characters 6-14:
- 294 | Gaux.may o#set_active active ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 313, characters 8-20:
- 313 | (Gaux.may_map (fun g -> g#group) group)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 328, characters 8-20:
- 328 | (Gaux.may_map (fun m -> m#as_menu) menu)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gText.mli
- ocamlc.opt -w s-3+52 -c gText.ml
- File "gText.ml", line 44, characters 19-27:
- 44 | method widgets = List.map (new widget) (ChildAnchor.get_widgets obj)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gText.ml", line 144, characters 28-36:
- 144 | Gobject.set_params obj (List.map text_tag_param l)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gText.ml", line 233, characters 30-38:
- 233 | method get_toggled_tags b = List.map (fun x -> new tag x)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gText.ml", line 242, characters 16-24:
- 242 | method tags = List.map (fun t -> new tag t) (Iter.get_tags it)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gText.ml", line 580, characters 7-14:
- 580 | (may_map as_iter iter) default_editable
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gMenu.mli
- ocamlc.opt -w s-3+52 -c gMenu.ml
- ocamlc.opt -w s-3+52 -c gMisc.mli
- ocamlc.opt -w s-3+52 -c gMisc.ml
- File "gMisc.ml", line 46, characters 4-20:
- 46 | Glib.Timeout.add delay (fun () -> self#remove msg; false);
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels ms, callback were omitted in the application of this function.
- File "gMisc.ml", line 235, characters 24-31:
- 235 | let mnemonic_widget = may_map (fun w -> w#as_widget) mnemonic_widget in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gMisc.ml", line 257, characters 15-22:
- 257 | let caller = may_map (fun w -> w#as_widget) caller in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gTree.mli
- ocamlc.opt -w s-3+52 -c gTree.ml
- File "gTree.ml", line 84, characters 4-21:
- 84 | new row_reference (RowReference.create obj path) obj
- ^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label model was omitted in the application of this function.
- File "gTree.ml", line 189, characters 2-11:
- 189 | List.iter
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 382, characters 27-34:
- 382 | method expander_column = may_map (new view_column) (get expander_column obj)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 384, characters 29-36:
- 384 | set expander_column obj (may_map as_column c)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 386, characters 38-45:
- 386 | method set_model m = set model obj (may_map (fun (m:model) -> m#as_model) m)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 420, characters 43-55:
- 420 | TreeView.get_cell_area obj ?path ?col:(Gaux.may_map as_column col) ()
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 425, characters 7-19:
- 425 | (Gaux.may_map (fun f m -> f (new model m)) fo)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 428, characters 14-21:
- 428 | let model = may_map (fun m -> m#as_model) model in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 429, characters 20-27:
- 429 | let hadjustment = may_map GData.as_adjustment hadjustment in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 430, characters 20-27:
- 430 | let vadjustment = may_map GData.as_adjustment vadjustment in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 624, characters 32-40:
- 624 | (CellRendererPixbuf.create (List.map cell_renderer_pixbuf_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 627, characters 30-38:
- 627 | (CellRendererText.create (List.map cell_renderer_text_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 630, characters 32-40:
- 630 | (CellRendererToggle.create (List.map cell_renderer_toggle_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 633, characters 34-42:
- 633 | (CellRendererProgress.create (List.map cell_renderer_progress_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 636, characters 31-39:
- 636 | (CellRendererCombo.create (List.map cell_renderer_combo_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 639, characters 31-39:
- 639 | (CellRendererAccel.create (List.map cell_renderer_accel_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 657, characters 38-50:
- 657 | Gobject.set IconView.P.model obj (Gaux.may_map (fun m -> m#as_model) m)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 677, characters 14-26:
- 677 | let model = Gaux.may_map (fun m -> m#as_model) model in
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gList.mli
- ocamlc.opt -w s-3+52 -c gList.ml
- File "gList.ml", line 172, characters 29-36:
- 172 | CList.setter ?hadjustment:(may_map GData.as_adjustment hadjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gList.ml", line 173, characters 18-25:
- 173 | ?vadjustment:(may_map GData.as_adjustment vadjustment) ~cont:(
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gFile.mli
- ocamlc.opt -w s-3+52 -c gFile.ml
- File "gFile.ml", line 37, characters 3-11:
- 37 | Gaux.may (FileFilter.set_name w) name ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gWindow.mli
- ocamlc.opt -w s-3+52 -c gWindow.ml
- File "gWindow.ml", line 84, characters 6-9:
- 84 | may w#set_wm_name wm_name;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 85, characters 6-9:
- 85 | may w#set_wm_class wm_class;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 175, characters 39-57:
- 175 | method connect : 'a dialog_signals = new dialog_signals obj (self#decode)
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 181, characters 4-7:
- 181 | may (fun p -> d#set_transient_for p#as_window) parent ;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 182, characters 4-7:
- 182 | may d#set_destroy_with_parent destroy_with_parent ;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 204, characters 4-22:
- 204 | new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 228, characters 39-57:
- 228 | method connect : 'a dialog_signals = new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 258, characters 6-24:
- 258 | new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 275, characters 6-9:
- 275 | may (AboutDialog.set_authors d) authors ;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 282, characters 39-57:
- 282 | method connect : 'a dialog_signals = new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 304, characters 39-57:
- 304 | method connect : 'a dialog_signals = new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 331, characters 39-57:
- 331 | method connect : 'a dialog_signals = new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 396, characters 4-35:
- 396 | new file_chooser_dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gAssistant.mli
- ocamlc.opt -w s-3+52 -c gAssistant.ml
- File "gAssistant.ml", line 51, characters 4-7:
- 51 | may (self#set_page_type w) page_type;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 52, characters 4-7:
- 52 | may (self#set_page_title w) title;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 53, characters 4-7:
- 53 | may (self#set_page_header_image w) header_image;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 54, characters 4-7:
- 54 | may (self#set_page_side_image w) side_image;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 55, characters 4-7:
- 55 | may (self#set_page_complete w) complete;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 84, characters 6-9:
- 84 | may w#set_wm_name wm_name;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 85, characters 6-9:
- 85 | may w#set_wm_class wm_class;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gBin.mli
- ocamlc.opt -w s-3+52 -c gBin.ml
- ocamlc.opt -w s-3+52 -c gEdit.mli
- ocamlc.opt -w s-3+52 -c gEdit.ml
- File "gEdit.ml", line 84, characters 21-28:
- 84 | method get_entry = may_map (new GObj.widget) (EntryCompletion.get_entry obj)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 116, characters 4-11:
- 116 | may_map (new entry_completion) (Entry.get_completion obj)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 138, characters 6-9:
- 138 | may (fun e -> e#set_completion c) entry ;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 135, characters 12-19:
- 135 | ?model:(may_map (fun m -> m#as_model) model)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 176, characters 4-7:
- 176 | may (Combo.set_popdown_strings w) popdown_strings;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 204, characters 7-19:
- 204 | (Gaux.may_map (fun f m -> f (new GTree.model m)) fo)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 208, characters 14-26:
- 208 | let model = Gaux.may_map (fun m -> m#as_model) model in
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 237, characters 14-26:
- 237 | let model = Gaux.may_map (fun m -> m#as_model) model in
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 240, characters 8-20:
- 240 | (Gaux.may_map (fun c -> c.GTree.index) text_column) []) ~cont:(
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gRange.mli
- ocamlc.opt -w s-3+52 -c gRange.ml
- File "gRange.ml", line 64, characters 33-40:
- 64 | Range.make_params ?adjustment:(may_map GData.as_adjustment adjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gRange.ml", line 69, characters 36-43:
- 69 | Range.make_params [] ?adjustment:(may_map GData.as_adjustment adjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gRange.ml", line 84, characters 4-7:
- 84 | may w#set_metric metric;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gAction.mli
- ocamlc.opt -w s-3+52 -c gAction.ml
- File "gAction.ml", line 103, characters 5-17:
- 103 | (Gaux.may_map (fun g -> Some (g#as_radio_action)) group)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 111, characters 35-47:
- 111 | method connect_proxy ~callback = self#connect
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 118, characters 38-50:
- 118 | method disconnect_proxy ~callback = self#connect
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 125, characters 35-47:
- 125 | method post_activate ~callback = self#connect ActionGroup.S.post_activate
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 127, characters 34-46:
- 127 | method pre_activate ~callback = self#connect ActionGroup.S.pre_activate
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 154, characters 2-10:
- 154 | Gaux.may a#set_label label ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 155, characters 2-10:
- 155 | Gaux.may a#set_tooltip tooltip ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 156, characters 2-10:
- 156 | Gaux.may a#set_stock_id stock ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 168, characters 2-10:
- 168 | Gaux.may a#set_active active ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 185, characters 1-9:
- 185 | Gaux.may
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 190, characters 2-10:
- 190 | Gaux.may
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 192, characters 6-14:
- 192 | Gaux.may
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 205, characters 35-47:
- 205 | method connect_proxy ~callback = self#connect
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 212, characters 38-50:
- 212 | method disconnect_proxy ~callback = self#connect
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 219, characters 35-47:
- 219 | method post_activate ~callback = self#connect UIManager.S.post_activate
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 221, characters 34-46:
- 221 | method pre_activate ~callback = self#connect UIManager.S.pre_activate
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gBroken.mli
- ocamlc.opt -w s-3+52 -c gBroken.ml
- File "gBroken.ml", line 135, characters 20-27:
- 135 | let hadjustment = may_map GData.as_adjustment hadjustment in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gBroken.ml", line 136, characters 20-27:
- 136 | let vadjustment = may_map GData.as_adjustment vadjustment in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlc.opt -w s-3+52 -c gUtil.mli
- ocamlc.opt -w s-3+52 -c gUtil.ml
- ocamlc.opt -w s-3+52 -c gToolbox.mli
- ocamlc.opt -w s-3+52 -c gToolbox.ml
- File "gToolbox.ml", line 139, characters 2-23:
- 139 | wb_ok#connect#clicked f_ok;
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gToolbox.ml", line 140, characters 2-27:
- 140 | wb_cancel#connect#clicked f_cancel;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gToolbox.ml", line 160, characters 4-27:
- 160 | we_chaine#select_region 0 (we_chaine#text_length);
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels start, stop were omitted in the application of this function.
- File "gToolbox.ml", line 264, characters 12-21:
- 264 | List.iter (insert_node newtree) (List.rev children)
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gToolbox.ml", line 332, characters 13-21:
- 332 | let mods = List.map (function `A -> "<Alt>" | `C -> "<Control>" | `S ->
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gToolbox.ml", line 334, characters 3-16:
- 334 | (String.concat "" mods) ^ (String.make 1 (Char.uppercase_ascii c))
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sep was omitted in the application of this function.
- ocamlmklib -verbose -ocamlc "ocamlc.opt" -ocamlopt "ocamlopt.opt" -o lablgtk -oc lablgtk2 ml_gdkpixbuf.o ml_gdk.o ml_glib.o ml_gobject.o ml_gpointer.o ml_gvaluecaml.o wrappers.o ml_gtk.o ml_pango.o ml_gtkaction.o ml_gtkbin.o ml_gtkbroken.o ml_gtkbutton.o ml_gtkassistant.o ml_gtkedit.o ml_gtkfile.o ml_gtklist.o ml_gtkmenu.o ml_gtkmisc.o ml_gtkpack.o ml_gtkrange.o ml_gtkstock.o ml_gtktext.o ml_gtktree.o gaux.cmo gpointer.cmo gutf8.cmo glib.cmo gobject.cmo gdkEnums.cmo pangoEnums.cmo gtkEnums.cmo pango.cmo gdk.cmo gdkEvent.cmo gdkKeysyms.cmo gdkPixbuf.cmo gtk.cmo gtkSignal.cmo gtkStock.cmo gtkObject.cmo gtkBaseProps.cmo gtkBinProps.cmo gtkButtonProps.cmo gtkEditProps.cmo gtkListProps.cmo gtkMenuProps.cmo gtkMiscProps.cmo gtkPackProps.cmo gtkRangeProps.cmo gtkTextProps.cmo gtkTreeProps.cmo gtkFileProps.cmo gtkActionProps.cmo gtkBrokenProps.cmo gtkAssistantProps.cmo gtkData.cmo gtkBase.cmo gtkPack.cmo gtkButton.cmo gtkAssistant.cmo gtkMenu.cmo gtkMisc.cmo gtkWindow.cmo gtkList.cmo gtkBin.cmo gtkEdit.cmo gtkRange.cmo gtkText.cmo gtkTree.cmo gtkFile.cmo gtkMain.cmo gtkBroken.cmo gPango.cmo gDraw.cmo gObj.cmo ogtkBaseProps.cmo gData.cmo ogtkBinProps.cmo ogtkButtonProps.cmo ogtkEditProps.cmo ogtkListProps.cmo ogtkMenuProps.cmo ogtkMiscProps.cmo ogtkPackProps.cmo ogtkRangeProps.cmo ogtkTextProps.cmo ogtkTreeProps.cmo ogtkFileProps.cmo ogtkActionProps.cmo ogtkBrokenProps.cmo ogtkAssistantProps.cmo gMain.cmo gContainer.cmo gPack.cmo gButton.cmo gText.cmo gMenu.cmo gMisc.cmo gTree.cmo gList.cmo gFile.cmo gWindow.cmo gAssistant.cmo gBin.cmo gEdit.cmo gRange.cmo gAction.cmo gBroken.cmo gUtil.cmo gToolbox.cmo -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lharfbuzz -lfontconfig -lfreetype
- + gcc -shared -o ./dlllablgtk2.so ml_gdkpixbuf.o ml_gdk.o ml_glib.o ml_gobject.o ml_gpointer.o ml_gvaluecaml.o wrappers.o ml_gtk.o ml_pango.o ml_gtkaction.o ml_gtkbin.o ml_gtkbroken.o ml_gtkbutton.o ml_gtkassistant.o ml_gtkedit.o ml_gtkfile.o ml_gtklist.o ml_gtkmenu.o ml_gtkmisc.o ml_gtkpack.o ml_gtkrange.o ml_gtkstock.o ml_gtktext.o ml_gtktree.o -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lharfbuzz -lfontconfig -lfreetype
- + ar rcs ./liblablgtk2.a ml_gdkpixbuf.o ml_gdk.o ml_glib.o ml_gobject.o ml_gpointer.o ml_gvaluecaml.o wrappers.o ml_gtk.o ml_pango.o ml_gtkaction.o ml_gtkbin.o ml_gtkbroken.o ml_gtkbutton.o ml_gtkassistant.o ml_gtkedit.o ml_gtkfile.o ml_gtklist.o ml_gtkmenu.o ml_gtkmisc.o ml_gtkpack.o ml_gtkrange.o ml_gtkstock.o ml_gtktext.o ml_gtktree.o
- + ocamlc.opt -a -o lablgtk.cma gaux.cmo gpointer.cmo gutf8.cmo glib.cmo gobject.cmo gdkEnums.cmo pangoEnums.cmo gtkEnums.cmo pango.cmo gdk.cmo gdkEvent.cmo gdkKeysyms.cmo gdkPixbuf.cmo gtk.cmo gtkSignal.cmo gtkStock.cmo gtkObject.cmo gtkBaseProps.cmo gtkBinProps.cmo gtkButtonProps.cmo gtkEditProps.cmo gtkListProps.cmo gtkMenuProps.cmo gtkMiscProps.cmo gtkPackProps.cmo gtkRangeProps.cmo gtkTextProps.cmo gtkTreeProps.cmo gtkFileProps.cmo gtkActionProps.cmo gtkBrokenProps.cmo gtkAssistantProps.cmo gtkData.cmo gtkBase.cmo gtkPack.cmo gtkButton.cmo gtkAssistant.cmo gtkMenu.cmo gtkMisc.cmo gtkWindow.cmo gtkList.cmo gtkBin.cmo gtkEdit.cmo gtkRange.cmo gtkText.cmo gtkTree.cmo gtkFile.cmo gtkMain.cmo gtkBroken.cmo gPango.cmo gDraw.cmo gObj.cmo ogtkBaseProps.cmo gData.cmo ogtkBinProps.cmo ogtkButtonProps.cmo ogtkEditProps.cmo ogtkListProps.cmo ogtkMenuProps.cmo ogtkMiscProps.cmo ogtkPackProps.cmo ogtkRangeProps.cmo ogtkTextProps.cmo ogtkTreeProps.cmo ogtkFileProps.cmo ogtkActionProps.cmo ogtkBrokenProps.cmo ogtkAssistantProps.cmo gMain.cmo gContainer.cmo gPack.cmo gButton.cmo gText.cmo gMenu.cmo gMisc.cmo gTree.cmo gList.cmo gFile.cmo gWindow.cmo gAssistant.cmo gBin.cmo gEdit.cmo gRange.cmo gAction.cmo gBroken.cmo gUtil.cmo gToolbox.cmo -dllib -llablgtk2 -cclib -llablgtk2 -cclib -lgtk-x11-2.0 -cclib -lgdk-x11-2.0 -cclib -lpangocairo-1.0 -cclib -latk-1.0 -cclib -lcairo -cclib -lgdk_pixbuf-2.0 -cclib -lgio-2.0 -cclib -lpangoft2-1.0 -cclib -lpango-1.0 -cclib -lgobject-2.0 -cclib -lglib-2.0 -cclib -lharfbuzz -cclib -lfontconfig -cclib -lfreetype
- ocamlc.opt -w s-3+52 -c -thread gtkThread.mli
- ocamlc.opt -w s-3+52 -c -thread gtkThread.ml
- File "gtkThread.ml", line 53, characters 16-32:
- 53 | ignore (Glib.Timeout.add 1 (fun () -> has_timeout := false; false))
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels ms, callback were omitted in the application of this function.
- ocamlmktop -thread -o lablgtktop unix.cma threads.cma \
- -I . lablgtk.cma gtkThread.cmo
- sed -e "s|@INSTALLDIR@|/home/opam/.opam/4.14/lib/ocaml/lablgtk2|g" \
- -e "s|@LABLGLDIR@|/home/opam/.opam/4.14/lib/lablgl|g" \
- -e "s|@MLLIBS@| lablgtk.cma|g" \
- -e "s|@INITOBJS@|gtkInit.cmo|g" \
- -e "s|@THOBJS@|gtkThread.cmo|g" \
- -e "s|@THINITOBJS@|gtkThInit.cmo|g" \
- -e "s|@USEDLL@|yes|g" \
- -e "s|@THREADS_LIB@|system|g" \
- < lablgtk2.in > lablgtk2
- chmod 755 lablgtk2
- ocamlc.opt -o gdk_pixbuf_mlsource -I . lablgtk.cma gdk_pixbuf_mlsource.ml
- ocamlc.opt -w s-3+52 -c gtkThInit.ml
- sed -e "s|@LABLGTK_MLS@|gaux gpointer gutf8 glib gobject gdkEnums pangoEnums gtkEnums pango gdk gdkEvent gdkKeysyms gdkPixbuf gtk gtkSignal gtkStock gtkObject gtkBaseProps gtkBinProps gtkButtonProps gtkEditProps gtkListProps gtkMenuProps gtkMiscProps gtkPackProps gtkRangeProps gtkTextProps gtkTreeProps gtkFileProps gtkActionProps gtkBrokenProps gtkAssistantProps gtkData gtkBase gtkPack gtkButton gtkAssistant gtkMenu gtkMisc gtkWindow gtkList gtkBin gtkEdit gtkRange gtkText gtkTree gtkFile gtkMain gtkBroken gPango gDraw gObj ogtkBaseProps gData ogtkBaseProps ogtkBinProps ogtkButtonProps ogtkEditProps ogtkListProps ogtkMenuProps ogtkMiscProps ogtkPackProps ogtkRangeProps ogtkTextProps ogtkTreeProps ogtkFileProps ogtkActionProps ogtkBrokenProps ogtkAssistantProps gMain gContainer gPack gButton gText gMenu gMisc gTree gList gFile gWindow gAssistant gBin gEdit gRange gAction gBroken gUtil gToolbox|" \
- -e "s|@EXTRA_MLS@|gtkInit gtkThread gtkThInit|" \
- -e "s|@PROP_MLS@|gtkBaseProps gtkBinProps gtkButtonProps gtkEditProps gtkListProps gtkMenuProps gtkMiscProps gtkPackProps gtkRangeProps gtkTextProps gtkTreeProps gtkFileProps gtkActionProps gtkBrokenProps gtkAssistantProps ogtkBaseProps ogtkBinProps ogtkButtonProps ogtkEditProps ogtkListProps ogtkMenuProps ogtkMiscProps ogtkPackProps ogtkRangeProps ogtkTextProps ogtkTreeProps ogtkFileProps ogtkActionProps ogtkBrokenProps ogtkAssistantProps|" \
- -e "s|@GTKLIBS@|-lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lharfbuzz -lfontconfig -lfreetype|" \
- -e "s|@GLADE_MLS@||" \
- -e "s|@GLADE_LIBS@||" \
- -e "s|@RSVG_MLS@||" \
- -e "s|@RSVG_LIBS@||" \
- -e "s|@CANVAS_MLS@||" \
- -e "s|@CANVAS_LIBS@||" \
- -e "s|@SOURCEVIEW2_MLS@||" \
- -e "s|@SOURCEVIEW2_LIBS@||" \
- -e "s|@TOOLCHAIN@|unix|" \
- < build.ml.in > build.ml
- ocamlc.opt -w s-3+52 -c gtkInit.ml
- ocamlopt.opt -w s -c gaux.ml
- ocamlopt.opt -w s -c gpointer.ml
- File "gpointer.ml", line 146, characters 2-13:
- 146 | unsafe_blit reg reg';
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels src, dst were omitted in the application of this function.
- ocamlopt.opt -w s -c gutf8.ml
- File "gutf8.ml", line 68, characters 29-45:
- 68 | let sub_string s ~pos ~len = Bytes.sub_string s pos len
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels pos, len were omitted in the application of this function.
- ocamlopt.opt -w s -c glib.ml
- ocamlopt.opt -w s -c gobject.ml
- File "gobject.ml", line 140, characters 17-60:
- 140 | with Failure ("Gobject.get_int32"|"Gobject.get_pointer") -> `NONE
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of
- this constructor's arguments. They are only for information
- and may change in future versions. (See manual section 11.5)
- ocamlopt.opt -w s -c gdkEnums.ml
- ocamlopt.opt -w s -c pangoEnums.ml
- ocamlopt.opt -w s -c gtkEnums.ml
- ocamlopt.opt -w s -c pango.ml
- ocamlopt.opt -w s -c gdk.ml
- ocamlopt.opt -w s -c gdkEvent.ml
- ocamlopt.opt -w s -c gdkKeysyms.ml
- ocamlopt.opt -w s -c gdkPixbuf.ml
- ocamlopt.opt -w s -c gtk.ml
- ocamlopt.opt -w s -c gtkSignal.ml
- File "gtkSignal.ml", line 101, characters 29-40:
- 101 | try Data.of_value conv1 (Closure.nth argv 1)
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkStock.ml
- File "gtkStock.ml", line 295, characters 2-10:
- 295 | Gaux.may (Icon_source.set_filename s) filename ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gtkStock.ml", line 296, characters 2-10:
- 296 | Gaux.may (Icon_source.set_pixbuf s) pixbuf ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gtkStock.ml", line 297, characters 2-10:
- 297 | Gaux.may (fun p -> Icon_source.set_direction_wildcarded s false ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gtkStock.ml", line 299, characters 2-10:
- 299 | Gaux.may (fun p -> Icon_source.set_state_wildcarded s false ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gtkStock.ml", line 301, characters 2-10:
- 301 | Gaux.may (fun p -> Icon_source.set_size_wildcarded s false ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkObject.ml
- ocamlopt.opt -w s -c gtkBaseProps.ml
- File "gtkBaseProps.ml", line 238, characters 39-50:
- 238 | let create pl : Gtk.adjustment obj = Object.make "GtkAdjustment" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 330, characters 4-15:
- 330 | Object.make "GtkWindow" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 391, characters 35-46:
- 391 | let create pl : Gtk.dialog obj = Object.make "GtkDialog" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 416, characters 4-15:
- 416 | Object.make "GtkColorSelectionDialog" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 423, characters 4-15:
- 423 | Object.make "GtkFontSelectionDialog" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBaseProps.ml", line 508, characters 35-46:
- 508 | let create pl : Gtk.socket obj = Object.make "GtkSocket" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkBinProps.ml
- File "gtkBinProps.ml", line 39, characters 38-49:
- 39 | let create pl : Gtk.alignment obj = Object.make "GtkAlignment" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 62, characters 34-45:
- 62 | let create pl : Gtk.frame obj = Object.make "GtkFrame" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 81, characters 41-52:
- 81 | let create pl : Gtk.aspect_frame obj = Object.make "GtkAspectFrame" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 93, characters 38-49:
- 93 | let create pl : Gtk.event_box obj = Object.make "GtkEventBox" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 102, characters 38-49:
- 102 | let create pl : Gtk.invisible obj = Object.make "GtkInvisible" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 128, characters 39-50:
- 128 | let create pl : Gtk.handle_box obj = Object.make "GtkHandleBox" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 162, characters 4-15:
- 162 | Object.make "GtkScrolledWindow" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 193, characters 37-48:
- 193 | let create pl : Gtk.viewport obj = Object.make "GtkViewport" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBinProps.ml", line 219, characters 37-48:
- 219 | let create pl : Gtk.expander obj = Object.make "GtkExpander" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkButtonProps.ml
- File "gtkButtonProps.ml", line 43, characters 35-46:
- 43 | let create pl : Gtk.button obj = Object.make "GtkButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 68, characters 42-53:
- 68 | let create pl : Gtk.toggle_button obj = Object.make "GtkToggleButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 83, characters 41-52:
- 83 | let create pl : Gtk.radio_button obj = Object.make "GtkRadioButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 101, characters 41-52:
- 101 | let create pl : Gtk.color_button obj = Object.make "GtkColorButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 127, characters 40-51:
- 127 | let create pl : Gtk.font_button obj = Object.make "GtkFontButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 143, characters 38-49:
- 143 | let create pl : Gtk.tool_item obj = Object.make "GtkToolItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 169, characters 4-15:
- 169 | Object.make "GtkSeparatorToolItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 189, characters 40-51:
- 189 | let create pl : Gtk.tool_button obj = Object.make "GtkToolButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 200, characters 4-15:
- 200 | Object.make "GtkToggleToolButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 215, characters 4-15:
- 215 | Object.make "GtkRadioToolButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 225, characters 4-15:
- 225 | Object.make "GtkMenuToolButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 261, characters 36-47:
- 261 | let create pl : Gtk.toolbar obj = Object.make "GtkToolbar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkButtonProps.ml", line 275, characters 40-51:
- 275 | let create pl : Gtk.link_button obj = Object.make "GtkLinkButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkEditProps.ml
- File "gtkEditProps.ml", line 152, characters 34-45:
- 152 | let create pl : Gtk.entry obj = Object.make "GtkEntry" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 209, characters 40-51:
- 209 | let create pl : Gtk.spin_button obj = Object.make "GtkSpinButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 241, characters 34-45:
- 241 | let create pl : Gtk.combo obj = Object.make "GtkCombo" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 273, characters 38-49:
- 273 | let create pl : Gtk.combo_box obj = Object.make "GtkComboBox" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 300, characters 44-55:
- 300 | let create pl : Gtk.combo_box_entry obj = Object.make "GtkComboBoxEntry" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkEditProps.ml", line 322, characters 4-25:
- 322 | Gobject.unsafe_create "GtkEntryCompletion" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkListProps.ml
- File "gtkListProps.ml", line 17, characters 38-49:
- 17 | let create pl : Gtk.list_item obj = Object.make "GtkListItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkListProps.ml", line 38, characters 34-45:
- 38 | let create pl : Gtk.liste obj = Object.make "GtkList" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkMenuProps.ml
- File "gtkMenuProps.ml", line 21, characters 40-51:
- 21 | let create pl : Gtk.option_menu obj = Object.make "GtkOptionMenu" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 37, characters 38-49:
- 37 | let create pl : Gtk.menu_item obj = Object.make "GtkMenuItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 72, characters 44-55:
- 72 | let create pl : Gtk.check_menu_item obj = Object.make "GtkCheckMenuItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 91, characters 44-55:
- 91 | let create pl : Gtk.image_menu_item obj = Object.make "GtkImageMenuItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 136, characters 37-48:
- 136 | let create pl : Gtk.menu_bar obj = Object.make "GtkMenuBar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMenuProps.ml", line 151, characters 33-44:
- 151 | let create pl : Gtk.menu obj = Object.make "GtkMenu" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkMiscProps.ml
- File "gtkMiscProps.ml", line 31, characters 36-57:
- 31 | let create pl : gtk_status_icon = Gobject.unsafe_create "GtkStatusIcon" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 135, characters 34-45:
- 135 | let create pl : Gtk.label obj = Object.make "GtkLabel" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 190, characters 39-50:
- 190 | let create pl : Gtk.tips_query obj = Object.make "GtkTipsQuery" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 213, characters 34-45:
- 213 | let create pl : Gtk.arrow obj = Object.make "GtkArrow" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 242, characters 34-45:
- 242 | let create pl : Gtk.image obj = Object.make "GtkImage" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 277, characters 4-15:
- 277 | Object.make "GtkColorSelection" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 295, characters 43-54:
- 295 | let create pl : Gtk.font_selection obj = Object.make "GtkFontSelection" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 305, characters 40-51:
- 305 | let create pl : Gtk.gamma_curve obj = Object.make "GtkGammaCurve" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 325, characters 38-49:
- 325 | let create pl : Gtk.statusbar obj = Object.make "GtkStatusbar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 371, characters 37-48:
- 371 | let create pl : Gtk.calendar obj = Object.make "GtkCalendar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 397, characters 41-52:
- 397 | let create pl : Gtk.drawing_area obj = Object.make "GtkDrawingArea" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 412, characters 34-45:
- 412 | let create pl : Gtk.curve obj = Object.make "GtkCurve" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkMiscProps.ml", line 433, characters 4-15:
- 433 | Object.make
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkPackProps.ml
- File "gtkPackProps.ml", line 21, characters 4-15:
- 21 | Object.make (if dir = `HORIZONTAL then "GtkHBox" else "GtkVBox") pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 53, characters 4-15:
- 53 | Object.make
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 64, characters 34-45:
- 64 | let create pl : Gtk.fixed obj = Object.make "GtkFixed" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 87, characters 4-15:
- 87 | Object.make (if dir = `HORIZONTAL then "GtkHPaned" else "GtkVPaned") pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 112, characters 35-46:
- 112 | let create pl : Gtk.layout obj = Object.make "GtkLayout" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 188, characters 37-48:
- 188 | let create pl : Gtk.notebook obj = Object.make "GtkNotebook" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 245, characters 34-45:
- 245 | let create pl : Gtk.table obj = Object.make "GtkTable" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkPackProps.ml", line 273, characters 31-52:
- 273 | let create pl : size_group = Gobject.unsafe_create "GtkSizeGroup" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkRangeProps.ml
- File "gtkRangeProps.ml", line 24, characters 4-15:
- 24 | Object.make (if dir = `HORIZONTAL then "GtkHRuler" else "GtkVRuler") pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkRangeProps.ml", line 82, characters 4-15:
- 82 | Object.make (if dir = `HORIZONTAL then "GtkHScale" else "GtkVScale") pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkRangeProps.ml", line 94, characters 4-15:
- 94 | Object.make
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkRangeProps.ml", line 120, characters 41-52:
- 120 | let create pl : Gtk.progress_bar obj = Object.make "GtkProgressBar" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkTextProps.ml
- File "gtkTextProps.ml", line 80, characters 38-49:
- 80 | let create pl : Gtk.text_view obj = Object.make "GtkTextView" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 154, characters 4-25:
- 154 | Gobject.unsafe_create "GtkTextBuffer" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 160, characters 4-25:
- 160 | Gobject.unsafe_create "GtkTextChildAnchor" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 169, characters 30-51:
- 169 | let create pl : text_mark = Gobject.unsafe_create "GtkTextMark" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 309, characters 4-25:
- 309 | Gobject.unsafe_create "GtkTextTag" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTextProps.ml", line 335, characters 35-56:
- 335 | let create pl : text_tag_table = Gobject.unsafe_create "GtkTextTagTable" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkTreeProps.ml
- File "gtkTreeProps.ml", line 119, characters 38-49:
- 119 | let create pl : Gtk.tree_view obj = Object.make "GtkTreeView" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 165, characters 42-53:
- 165 | let create pl : Gtk.cell_renderer obj = Object.make "GtkCellRenderer" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 188, characters 4-15:
- 188 | Object.make "GtkCellRendererPixbuf" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 268, characters 4-15:
- 268 | Object.make "GtkCellRendererText" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 294, characters 4-15:
- 294 | Object.make "GtkCellRendererToggle" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 307, characters 4-15:
- 307 | Object.make "GtkCellRendererProgress" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 329, characters 4-15:
- 329 | Object.make "GtkCellRendererCombo" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 359, characters 4-15:
- 359 | Object.make "GtkCellRendererAccel" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 423, characters 4-15:
- 423 | Object.make "GtkTreeViewColumn" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 473, characters 4-25:
- 473 | Gobject.unsafe_create "GtkTreeModelSort" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 532, characters 4-25:
- 532 | Gobject.unsafe_create "GtkTreeModelFilter" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkTreeProps.ml", line 588, characters 38-49:
- 588 | let create pl : Gtk.icon_view obj = Object.make "GtkIconView" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkFileProps.ml
- File "gtkFileProps.ml", line 61, characters 4-15:
- 61 | Object.make "GtkFileChooserButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkActionProps.ml
- File "gtkActionProps.ml", line 41, characters 4-25:
- 41 | Gobject.unsafe_create "GtkAction" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkActionProps.ml", line 79, characters 4-25:
- 79 | Gobject.unsafe_create "GtkToggleAction" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkActionProps.ml", line 104, characters 4-25:
- 104 | Gobject.unsafe_create "GtkRadioAction" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkActionProps.ml", line 146, characters 4-25:
- 146 | Gobject.unsafe_create "GtkUIManager" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkActionProps.ml", line 211, characters 4-25:
- 211 | Gobject.unsafe_create "GtkActionGroup" pl
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkBrokenProps.ml
- File "gtkBrokenProps.ml", line 18, characters 38-49:
- 18 | let create pl : Gtk.tree_item obj = Object.make "GtkTreeItem" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBrokenProps.ml", line 42, characters 33-44:
- 42 | let create pl : Gtk.tree obj = Object.make "GtkTree" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkBrokenProps.ml", line 95, characters 33-44:
- 95 | let create pl : Gtk.text obj = Object.make "GtkText" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkAssistantProps.ml
- File "gtkAssistantProps.ml", line 21, characters 38-49:
- 21 | let create pl : Gtk.assistant obj = Object.make "GtkAssistant" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkData.ml
- ocamlopt.opt -w s -c gtkBase.ml
- ocamlopt.opt -w s -c gtkPack.ml
- ocamlopt.opt -w s -c gtkButton.ml
- File "gtkButton.ml", line 51, characters 44-55:
- 51 | let create_check pl : toggle_button obj = Object.make "GtkCheckButton" pl
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkAssistant.ml
- ocamlopt.opt -w s -c gtkMenu.ml
- ocamlopt.opt -w s -c gtkMisc.ml
- ocamlopt.opt -w s -c gtkWindow.ml
- ocamlopt.opt -w s -c gtkList.ml
- ocamlopt.opt -w s -c gtkBin.ml
- ocamlopt.opt -w s -c gtkEdit.ml
- ocamlopt.opt -w s -c gtkRange.ml
- ocamlopt.opt -w s -c gtkText.ml
- ocamlopt.opt -w s -c gtkTree.ml
- File "gtkTree.ml", line 111, characters 7-21:
- 111 | if iter_nth_child m i p nth then i
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label parent was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkFile.ml
- File "gtkFile.ml", line 117, characters 65-79:
- 117 | let dialog_create pl : [Gtk.dialog|Gtk.file_chooser] Gtk.obj = GtkObject.make "GtkFileChooserDialog" pl
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- File "gtkFile.ml", line 118, characters 65-79:
- 118 | let widget_create pl : [Gtk.widget|Gtk.file_chooser] Gtk.obj = GtkObject.make "GtkFileChooserWidget" pl
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label classe was omitted in the application of this function.
- ocamlopt.opt -w s -c gtkMain.ml
- File "gtkMain.ml", line 49, characters 4-16:
- 49 | Obj.truncate (Obj.repr Sys.argv) (Array.length argv);
- ^^^^^^^^^^^^
- Alert deprecated: Stdlib.Obj.truncate
- ocamlopt.opt -w s -c gtkBroken.ml
- ocamlopt.opt -w s -c gPango.ml
- ocamlopt.opt -w s -c gDraw.ml
- File "gDraw.ml", line 103, characters 13-20:
- 103 | ?fore:(may_map self#color fore) ?back:(may_map self#color back)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gDraw.ml", line 103, characters 45-52:
- 103 | ?fore:(may_map self#color fore) ?back:(may_map self#color back)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gObj.ml
- File "gObj.ml", line 179, characters 8-20:
- 179 | self#connect sgn (fun context -> callback (new drag_context context))
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gObj.ml", line 328, characters 4-11:
- 328 | may_map (fun w -> new widget (unsafe_cast w)) (get P.parent obj)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c ogtkBaseProps.ml
- ocamlopt.opt -w s -c gData.ml
- File "gData.ml", line 45, characters 4-7:
- 45 | may self#set_lower lower;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gData.ml", line 46, characters 4-7:
- 46 | may self#set_upper upper;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gData.ml", line 47, characters 4-7:
- 47 | may self#set_step_increment step_incr;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gData.ml", line 48, characters 4-7:
- 48 | may self#set_page_increment page_incr;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gData.ml", line 49, characters 4-7:
- 49 | may self#set_page_size page_size
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c ogtkBinProps.ml
- ocamlopt.opt -w s -c ogtkButtonProps.ml
- ocamlopt.opt -w s -c ogtkEditProps.ml
- ocamlopt.opt -w s -c ogtkListProps.ml
- ocamlopt.opt -w s -c ogtkMenuProps.ml
- ocamlopt.opt -w s -c ogtkMiscProps.ml
- ocamlopt.opt -w s -c ogtkPackProps.ml
- ocamlopt.opt -w s -c ogtkRangeProps.ml
- ocamlopt.opt -w s -c ogtkTextProps.ml
- ocamlopt.opt -w s -c ogtkTreeProps.ml
- ocamlopt.opt -w s -c ogtkFileProps.ml
- ocamlopt.opt -w s -c ogtkActionProps.ml
- ocamlopt.opt -w s -c ogtkBrokenProps.ml
- ocamlopt.opt -w s -c ogtkAssistantProps.ml
- ocamlopt.opt -w s -c gMain.ml
- ocamlopt.opt -w s -c gContainer.ml
- ocamlopt.opt -w s -c gPack.ml
- File "gPack.ml", line 136, characters 18-25:
- 136 | ?hadjustment:(may_map GData.as_adjustment hadjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gPack.ml", line 137, characters 18-25:
- 137 | ?vadjustment:(may_map GData.as_adjustment hadjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gPack.ml", line 202, characters 4-16:
- 202 | self#connect Notebook.S.switch_page (fun _ arg1 -> callback arg1)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- ocamlopt.opt -w s -c gButton.ml
- File "gButton.ml", line 229, characters 2-10:
- 229 | Gaux.may item#set_homogeneous homogeneous ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 230, characters 2-10:
- 230 | Gaux.may item#set_expand expand ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 231, characters 2-10:
- 231 | Gaux.may (fun f -> (f (item :> tool_item_o) : unit)) packing ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 294, characters 6-14:
- 294 | Gaux.may o#set_active active ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 313, characters 8-20:
- 313 | (Gaux.may_map (fun g -> g#group) group)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gButton.ml", line 328, characters 8-20:
- 328 | (Gaux.may_map (fun m -> m#as_menu) menu)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gText.ml
- File "gText.ml", line 44, characters 19-27:
- 44 | method widgets = List.map (new widget) (ChildAnchor.get_widgets obj)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gText.ml", line 144, characters 28-36:
- 144 | Gobject.set_params obj (List.map text_tag_param l)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gText.ml", line 233, characters 30-38:
- 233 | method get_toggled_tags b = List.map (fun x -> new tag x)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gText.ml", line 242, characters 16-24:
- 242 | method tags = List.map (fun t -> new tag t) (Iter.get_tags it)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gText.ml", line 580, characters 7-14:
- 580 | (may_map as_iter iter) default_editable
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gMenu.ml
- ocamlopt.opt -w s -c gMisc.ml
- File "gMisc.ml", line 46, characters 4-20:
- 46 | Glib.Timeout.add delay (fun () -> self#remove msg; false);
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels ms, callback were omitted in the application of this function.
- File "gMisc.ml", line 235, characters 24-31:
- 235 | let mnemonic_widget = may_map (fun w -> w#as_widget) mnemonic_widget in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gMisc.ml", line 257, characters 15-22:
- 257 | let caller = may_map (fun w -> w#as_widget) caller in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gTree.ml
- File "gTree.ml", line 84, characters 4-21:
- 84 | new row_reference (RowReference.create obj path) obj
- ^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label model was omitted in the application of this function.
- File "gTree.ml", line 189, characters 2-11:
- 189 | List.iter
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 382, characters 27-34:
- 382 | method expander_column = may_map (new view_column) (get expander_column obj)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 384, characters 29-36:
- 384 | set expander_column obj (may_map as_column c)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 386, characters 38-45:
- 386 | method set_model m = set model obj (may_map (fun (m:model) -> m#as_model) m)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 420, characters 43-55:
- 420 | TreeView.get_cell_area obj ?path ?col:(Gaux.may_map as_column col) ()
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 425, characters 7-19:
- 425 | (Gaux.may_map (fun f m -> f (new model m)) fo)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 428, characters 14-21:
- 428 | let model = may_map (fun m -> m#as_model) model in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 429, characters 20-27:
- 429 | let hadjustment = may_map GData.as_adjustment hadjustment in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 430, characters 20-27:
- 430 | let vadjustment = may_map GData.as_adjustment vadjustment in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 624, characters 32-40:
- 624 | (CellRendererPixbuf.create (List.map cell_renderer_pixbuf_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 627, characters 30-38:
- 627 | (CellRendererText.create (List.map cell_renderer_text_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 630, characters 32-40:
- 630 | (CellRendererToggle.create (List.map cell_renderer_toggle_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 633, characters 34-42:
- 633 | (CellRendererProgress.create (List.map cell_renderer_progress_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 636, characters 31-39:
- 636 | (CellRendererCombo.create (List.map cell_renderer_combo_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 639, characters 31-39:
- 639 | (CellRendererAccel.create (List.map cell_renderer_accel_param' l))
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 657, characters 38-50:
- 657 | Gobject.set IconView.P.model obj (Gaux.may_map (fun m -> m#as_model) m)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gTree.ml", line 677, characters 14-26:
- 677 | let model = Gaux.may_map (fun m -> m#as_model) model in
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gList.ml
- File "gList.ml", line 172, characters 29-36:
- 172 | CList.setter ?hadjustment:(may_map GData.as_adjustment hadjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gList.ml", line 173, characters 18-25:
- 173 | ?vadjustment:(may_map GData.as_adjustment vadjustment) ~cont:(
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gFile.ml
- File "gFile.ml", line 37, characters 3-11:
- 37 | Gaux.may (FileFilter.set_name w) name ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gWindow.ml
- File "gWindow.ml", line 84, characters 6-9:
- 84 | may w#set_wm_name wm_name;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 85, characters 6-9:
- 85 | may w#set_wm_class wm_class;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 175, characters 39-57:
- 175 | method connect : 'a dialog_signals = new dialog_signals obj (self#decode)
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 181, characters 4-7:
- 181 | may (fun p -> d#set_transient_for p#as_window) parent ;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 182, characters 4-7:
- 182 | may d#set_destroy_with_parent destroy_with_parent ;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 204, characters 4-22:
- 204 | new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 228, characters 39-57:
- 228 | method connect : 'a dialog_signals = new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 258, characters 6-24:
- 258 | new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 275, characters 6-9:
- 275 | may (AboutDialog.set_authors d) authors ;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gWindow.ml", line 282, characters 39-57:
- 282 | method connect : 'a dialog_signals = new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 304, characters 39-57:
- 304 | method connect : 'a dialog_signals = new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 331, characters 39-57:
- 331 | method connect : 'a dialog_signals = new dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- File "gWindow.ml", line 396, characters 4-35:
- 396 | new file_chooser_dialog_signals obj self#decode
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label decode was omitted in the application of this function.
- ocamlopt.opt -w s -c gAssistant.ml
- File "gAssistant.ml", line 51, characters 4-7:
- 51 | may (self#set_page_type w) page_type;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 52, characters 4-7:
- 52 | may (self#set_page_title w) title;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 53, characters 4-7:
- 53 | may (self#set_page_header_image w) header_image;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 54, characters 4-7:
- 54 | may (self#set_page_side_image w) side_image;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 55, characters 4-7:
- 55 | may (self#set_page_complete w) complete;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 84, characters 6-9:
- 84 | may w#set_wm_name wm_name;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAssistant.ml", line 85, characters 6-9:
- 85 | may w#set_wm_class wm_class;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gBin.ml
- ocamlopt.opt -w s -c gEdit.ml
- File "gEdit.ml", line 84, characters 21-28:
- 84 | method get_entry = may_map (new GObj.widget) (EntryCompletion.get_entry obj)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 116, characters 4-11:
- 116 | may_map (new entry_completion) (Entry.get_completion obj)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 138, characters 6-9:
- 138 | may (fun e -> e#set_completion c) entry ;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 135, characters 12-19:
- 135 | ?model:(may_map (fun m -> m#as_model) model)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 176, characters 4-7:
- 176 | may (Combo.set_popdown_strings w) popdown_strings;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 204, characters 7-19:
- 204 | (Gaux.may_map (fun f m -> f (new GTree.model m)) fo)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 208, characters 14-26:
- 208 | let model = Gaux.may_map (fun m -> m#as_model) model in
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 237, characters 14-26:
- 237 | let model = Gaux.may_map (fun m -> m#as_model) model in
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gEdit.ml", line 240, characters 8-20:
- 240 | (Gaux.may_map (fun c -> c.GTree.index) text_column) []) ~cont:(
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gRange.ml
- File "gRange.ml", line 64, characters 33-40:
- 64 | Range.make_params ?adjustment:(may_map GData.as_adjustment adjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gRange.ml", line 69, characters 36-43:
- 69 | Range.make_params [] ?adjustment:(may_map GData.as_adjustment adjustment)
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gRange.ml", line 84, characters 4-7:
- 84 | may w#set_metric metric;
- ^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gAction.ml
- File "gAction.ml", line 103, characters 5-17:
- 103 | (Gaux.may_map (fun g -> Some (g#as_radio_action)) group)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 111, characters 35-47:
- 111 | method connect_proxy ~callback = self#connect
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 118, characters 38-50:
- 118 | method disconnect_proxy ~callback = self#connect
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 125, characters 35-47:
- 125 | method post_activate ~callback = self#connect ActionGroup.S.post_activate
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 127, characters 34-46:
- 127 | method pre_activate ~callback = self#connect ActionGroup.S.pre_activate
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 154, characters 2-10:
- 154 | Gaux.may a#set_label label ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 155, characters 2-10:
- 155 | Gaux.may a#set_tooltip tooltip ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 156, characters 2-10:
- 156 | Gaux.may a#set_stock_id stock ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 168, characters 2-10:
- 168 | Gaux.may a#set_active active ;
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 185, characters 1-9:
- 185 | Gaux.may
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 190, characters 2-10:
- 190 | Gaux.may
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 192, characters 6-14:
- 192 | Gaux.may
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gAction.ml", line 205, characters 35-47:
- 205 | method connect_proxy ~callback = self#connect
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 212, characters 38-50:
- 212 | method disconnect_proxy ~callback = self#connect
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 219, characters 35-47:
- 219 | method post_activate ~callback = self#connect UIManager.S.post_activate
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gAction.ml", line 221, characters 34-46:
- 221 | method pre_activate ~callback = self#connect UIManager.S.pre_activate
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- ocamlopt.opt -w s -c gBroken.ml
- File "gBroken.ml", line 135, characters 20-27:
- 135 | let hadjustment = may_map GData.as_adjustment hadjustment in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gBroken.ml", line 136, characters 20-27:
- 136 | let vadjustment = may_map GData.as_adjustment vadjustment in
- ^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- ocamlopt.opt -w s -c gUtil.ml
- ocamlopt.opt -w s -c gToolbox.ml
- File "gToolbox.ml", line 139, characters 2-23:
- 139 | wb_ok#connect#clicked f_ok;
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gToolbox.ml", line 140, characters 2-27:
- 140 | wb_cancel#connect#clicked f_cancel;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label callback was omitted in the application of this function.
- File "gToolbox.ml", line 160, characters 4-27:
- 160 | we_chaine#select_region 0 (we_chaine#text_length);
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels start, stop were omitted in the application of this function.
- File "gToolbox.ml", line 264, characters 12-21:
- 264 | List.iter (insert_node newtree) (List.rev children)
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gToolbox.ml", line 332, characters 13-21:
- 332 | let mods = List.map (function `A -> "<Alt>" | `C -> "<Control>" | `S ->
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "gToolbox.ml", line 334, characters 3-16:
- 334 | (String.concat "" mods) ^ (String.make 1 (Char.uppercase_ascii c))
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sep was omitted in the application of this function.
- ocamlmklib -verbose -ocamlc "ocamlc.opt" -ocamlopt "ocamlopt.opt" -o lablgtk -oc lablgtk2 ml_gdkpixbuf.o ml_gdk.o ml_glib.o ml_gobject.o ml_gpointer.o ml_gvaluecaml.o wrappers.o ml_gtk.o ml_pango.o ml_gtkaction.o ml_gtkbin.o ml_gtkbroken.o ml_gtkbutton.o ml_gtkassistant.o ml_gtkedit.o ml_gtkfile.o ml_gtklist.o ml_gtkmenu.o ml_gtkmisc.o ml_gtkpack.o ml_gtkrange.o ml_gtkstock.o ml_gtktext.o ml_gtktree.o gaux.cmx gpointer.cmx gutf8.cmx glib.cmx gobject.cmx gdkEnums.cmx pangoEnums.cmx gtkEnums.cmx pango.cmx gdk.cmx gdkEvent.cmx gdkKeysyms.cmx gdkPixbuf.cmx gtk.cmx gtkSignal.cmx gtkStock.cmx gtkObject.cmx gtkBaseProps.cmx gtkBinProps.cmx gtkButtonProps.cmx gtkEditProps.cmx gtkListProps.cmx gtkMenuProps.cmx gtkMiscProps.cmx gtkPackProps.cmx gtkRangeProps.cmx gtkTextProps.cmx gtkTreeProps.cmx gtkFileProps.cmx gtkActionProps.cmx gtkBrokenProps.cmx gtkAssistantProps.cmx gtkData.cmx gtkBase.cmx gtkPack.cmx gtkButton.cmx gtkAssistant.cmx gtkMenu.cmx gtkMisc.cmx gtkWindow.cmx gtkList.cmx gtkBin.cmx gtkEdit.cmx gtkRange.cmx gtkText.cmx gtkTree.cmx gtkFile.cmx gtkMain.cmx gtkBroken.cmx gPango.cmx gDraw.cmx gObj.cmx ogtkBaseProps.cmx gData.cmx ogtkBinProps.cmx ogtkButtonProps.cmx ogtkEditProps.cmx ogtkListProps.cmx ogtkMenuProps.cmx ogtkMiscProps.cmx ogtkPackProps.cmx ogtkRangeProps.cmx ogtkTextProps.cmx ogtkTreeProps.cmx ogtkFileProps.cmx ogtkActionProps.cmx ogtkBrokenProps.cmx ogtkAssistantProps.cmx gMain.cmx gContainer.cmx gPack.cmx gButton.cmx gText.cmx gMenu.cmx gMisc.cmx gTree.cmx gList.cmx gFile.cmx gWindow.cmx gAssistant.cmx gBin.cmx gEdit.cmx gRange.cmx gAction.cmx gBroken.cmx gUtil.cmx gToolbox.cmx -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lharfbuzz -lfontconfig -lfreetype
- + gcc -shared -o ./dlllablgtk2.so ml_gdkpixbuf.o ml_gdk.o ml_glib.o ml_gobject.o ml_gpointer.o ml_gvaluecaml.o wrappers.o ml_gtk.o ml_pango.o ml_gtkaction.o ml_gtkbin.o ml_gtkbroken.o ml_gtkbutton.o ml_gtkassistant.o ml_gtkedit.o ml_gtkfile.o ml_gtklist.o ml_gtkmenu.o ml_gtkmisc.o ml_gtkpack.o ml_gtkrange.o ml_gtkstock.o ml_gtktext.o ml_gtktree.o -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lharfbuzz -lfontconfig -lfreetype
- + ar rcs ./liblablgtk2.a ml_gdkpixbuf.o ml_gdk.o ml_glib.o ml_gobject.o ml_gpointer.o ml_gvaluecaml.o wrappers.o ml_gtk.o ml_pango.o ml_gtkaction.o ml_gtkbin.o ml_gtkbroken.o ml_gtkbutton.o ml_gtkassistant.o ml_gtkedit.o ml_gtkfile.o ml_gtklist.o ml_gtkmenu.o ml_gtkmisc.o ml_gtkpack.o ml_gtkrange.o ml_gtkstock.o ml_gtktext.o ml_gtktree.o
- + ocamlopt.opt -a -o lablgtk.cmxa gaux.cmx gpointer.cmx gutf8.cmx glib.cmx gobject.cmx gdkEnums.cmx pangoEnums.cmx gtkEnums.cmx pango.cmx gdk.cmx gdkEvent.cmx gdkKeysyms.cmx gdkPixbuf.cmx gtk.cmx gtkSignal.cmx gtkStock.cmx gtkObject.cmx gtkBaseProps.cmx gtkBinProps.cmx gtkButtonProps.cmx gtkEditProps.cmx gtkListProps.cmx gtkMenuProps.cmx gtkMiscProps.cmx gtkPackProps.cmx gtkRangeProps.cmx gtkTextProps.cmx gtkTreeProps.cmx gtkFileProps.cmx gtkActionProps.cmx gtkBrokenProps.cmx gtkAssistantProps.cmx gtkData.cmx gtkBase.cmx gtkPack.cmx gtkButton.cmx gtkAssistant.cmx gtkMenu.cmx gtkMisc.cmx gtkWindow.cmx gtkList.cmx gtkBin.cmx gtkEdit.cmx gtkRange.cmx gtkText.cmx gtkTree.cmx gtkFile.cmx gtkMain.cmx gtkBroken.cmx gPango.cmx gDraw.cmx gObj.cmx ogtkBaseProps.cmx gData.cmx ogtkBinProps.cmx ogtkButtonProps.cmx ogtkEditProps.cmx ogtkListProps.cmx ogtkMenuProps.cmx ogtkMiscProps.cmx ogtkPackProps.cmx ogtkRangeProps.cmx ogtkTextProps.cmx ogtkTreeProps.cmx ogtkFileProps.cmx ogtkActionProps.cmx ogtkBrokenProps.cmx ogtkAssistantProps.cmx gMain.cmx gContainer.cmx gPack.cmx gButton.cmx gText.cmx gMenu.cmx gMisc.cmx gTree.cmx gList.cmx gFile.cmx gWindow.cmx gAssistant.cmx gBin.cmx gEdit.cmx gRange.cmx gAction.cmx gBroken.cmx gUtil.cmx gToolbox.cmx -cclib -llablgtk2 -cclib -lgtk-x11-2.0 -cclib -lgdk-x11-2.0 -cclib -lpangocairo-1.0 -cclib -latk-1.0 -cclib -lcairo -cclib -lgdk_pixbuf-2.0 -cclib -lgio-2.0 -cclib -lpangoft2-1.0 -cclib -lpango-1.0 -cclib -lgobject-2.0 -cclib -lglib-2.0 -cclib -lharfbuzz -cclib -lfontconfig -cclib -lfreetype
- ocamlopt.opt -w s -c gtkInit.ml
- ocamlopt.opt -w s -c -thread gtkThread.ml
- File "gtkThread.ml", line 53, characters 16-32:
- 53 | ignore (Glib.Timeout.add 1 (fun () -> has_timeout := false; false))
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels ms, callback were omitted in the application of this function.
- ocamlopt.opt -verbose -o lablgtk.cmxs -shared -linkall -I . \
- -ccopt '' lablgtk.cmxa
- + as -o 'lablgtk.cmxs.startup.o' '/opam-tmp/camlstartupafa25e.s'
- + gcc -shared -o 'lablgtk.cmxs' '-L.' '-L/home/opam/.opam/4.14/lib/ocaml' 'lablgtk.cmxs.startup.o' 'lablgtk.a' '-llablgtk2' '-lgtk-x11-2.0' '-lgdk-x11-2.0' '-lpangocairo-1.0' '-latk-1.0' '-lcairo' '-lgdk_pixbuf-2.0' '-lgio-2.0' '-lpangoft2-1.0' '-lpango-1.0' '-lgobject-2.0' '-lglib-2.0' '-lharfbuzz' '-lfontconfig' '-lfreetype'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11/src'
-> compiled lablgtk.2.18.11
-> removed lablgtk.2.18.11
Processing 4/4: [lablgtk: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11)
- make -C src install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11/src'
- mkdir -p "/home/opam/.opam/4.14/bin"
- mkdir -p "/home/opam/.opam/4.14/lib"
- ocamlfind install -destdir "/home/opam/.opam/4.14/lib" \
- -ldconf "/home/opam/.opam/4.14/lib/ocaml/ld.conf" \
- lablgtk2 ../META \
- build.ml \
- liblablgtk2.a \
- gaux.cmi gpointer.cmi gutf8.cmi glib.cmi gobject.cmi gdkEnums.cmi pangoEnums.cmi gtkEnums.cmi pango.cmi gdk.cmi gdkEvent.cmi gdkKeysyms.cmi gdkPixbuf.cmi gtk.cmi gtkSignal.cmi gtkStock.cmi gtkObject.cmi gtkBaseProps.cmi gtkBinProps.cmi gtkButtonProps.cmi gtkEditProps.cmi gtkListProps.cmi gtkMenuProps.cmi gtkMiscProps.cmi gtkPackProps.cmi gtkRangeProps.cmi gtkTextProps.cmi gtkTreeProps.cmi gtkFileProps.cmi gtkActionProps.cmi gtkBrokenProps.cmi gtkAssistantProps.cmi gtkData.cmi gtkBase.cmi gtkPack.cmi gtkButton.cmi gtkAssistant.cmi gtkMenu.cmi gtkMisc.cmi gtkWindow.cmi gtkList.cmi gtkBin.cmi gtkEdit.cmi gtkRange.cmi gtkText.cmi gtkTree.cmi gtkFile.cmi gtkMain.cmi gtkBroken.cmi gPango.cmi gDraw.cmi gObj.cmi ogtkBaseProps.cmi gData.cmi ogtkBaseProps.cmi ogtkBinProps.cmi ogtkButtonProps.cmi ogtkEditProps.cmi ogtkListProps.cmi ogtkMenuProps.cmi ogtkMiscProps.cmi ogtkPackProps.cmi ogtkRangeProps.cmi ogtkTextProps.cmi ogtkTreeProps.cmi ogtkFileProps.cmi ogtkActionProps.cmi ogtkBrokenProps.cmi ogtkAssistantProps.cmi gMain.cmi gContainer.cmi gPack.cmi gButton.cmi gText.cmi gMenu.cmi gMisc.cmi gTree.cmi gList.cmi gFile.cmi gWindow.cmi gAssistant.cmi gBin.cmi gEdit.cmi gRange.cmi gAction.cmi gBroken.cmi gUtil.cmi gToolbox.cmi gtkInit.cmi \
- *.mli \
- gaux.ml gpointer.ml gutf8.ml glib.ml gobject.ml gdkEnums.ml pangoEnums.ml gtkEnums.ml pango.ml gdk.ml gdkEvent.ml gdkKeysyms.ml gdkPixbuf.ml gtk.ml gtkSignal.ml gtkStock.ml gtkObject.ml gtkBaseProps.ml gtkBinProps.ml gtkButtonProps.ml gtkEditProps.ml gtkListProps.ml gtkMenuProps.ml gtkMiscProps.ml gtkPackProps.ml gtkRangeProps.ml gtkTextProps.ml gtkTreeProps.ml gtkFileProps.ml gtkActionProps.ml gtkBrokenProps.ml gtkAssistantProps.ml gtkData.ml gtkBase.ml gtkPack.ml gtkButton.ml gtkAssistant.ml gtkMenu.ml gtkMisc.ml gtkWindow.ml gtkList.ml gtkBin.ml gtkEdit.ml gtkRange.ml gtkText.ml gtkTree.ml gtkFile.ml gtkMain.ml gtkBroken.ml gPango.ml gDraw.ml gObj.ml ogtkBaseProps.ml gData.ml ogtkBaseProps.ml ogtkBinProps.ml ogtkButtonProps.ml ogtkEditProps.ml ogtkListProps.ml ogtkMenuProps.ml ogtkMiscProps.ml ogtkPackProps.ml ogtkRangeProps.ml ogtkTextProps.ml ogtkTreeProps.ml ogtkFileProps.ml ogtkActionProps.ml ogtkBrokenProps.ml ogtkAssistantProps.ml gMain.ml gContainer.ml gPack.ml gButton.ml gText.ml gMenu.ml gMisc.ml gTree.ml gList.ml gFile.ml gWindow.ml gAssistant.ml gBin.ml gEdit.ml gRange.ml gAction.ml gBroken.ml gUtil.ml gToolbox.ml gtkInit.ml gtkThread.ml gtkThInit.ml \
- lablgtk.cma gtkInit.cmo \
- varcc propcc \
- `if test system != no; \
- then echo gtkThread.cmo gtkThInit.cmo gtkThread.cmi gtkThInit.cmi ; \
- fi` \
- `if test system = vm || test yes != yes; \
- then echo lablgtktop ; \
- fi` \
- *.h \
- `if test -f lablgtk.cmxa; \
- then \
- echo lablgtk.cmxa lablgtk.a \
- ; \
- if test "yes" = "yes" ; \
- then echo lablgtk.cmxs ; \
- fi; \
- echo gaux.cmx gpointer.cmx gutf8.cmx glib.cmx gobject.cmx gdkEnums.cmx pangoEnums.cmx gtkEnums.cmx pango.cmx gdk.cmx gdkEvent.cmx gdkKeysyms.cmx gdkPixbuf.cmx gtk.cmx gtkSignal.cmx gtkStock.cmx gtkObject.cmx gtkBaseProps.cmx gtkBinProps.cmx gtkButtonProps.cmx gtkEditProps.cmx gtkListProps.cmx gtkMenuProps.cmx gtkMiscProps.cmx gtkPackProps.cmx gtkRangeProps.cmx gtkTextProps.cmx gtkTreeProps.cmx gtkFileProps.cmx gtkActionProps.cmx gtkBrokenProps.cmx gtkAssistantProps.cmx gtkData.cmx gtkBase.cmx gtkPack.cmx gtkButton.cmx gtkAssistant.cmx gtkMenu.cmx gtkMisc.cmx gtkWindow.cmx gtkList.cmx gtkBin.cmx gtkEdit.cmx gtkRange.cmx gtkText.cmx gtkTree.cmx gtkFile.cmx gtkMain.cmx gtkBroken.cmx gPango.cmx gDraw.cmx gObj.cmx ogtkBaseProps.cmx gData.cmx ogtkBaseProps.cmx ogtkBinProps.cmx ogtkButtonProps.cmx ogtkEditProps.cmx ogtkListProps.cmx ogtkMenuProps.cmx ogtkMiscProps.cmx ogtkPackProps.cmx ogtkRangeProps.cmx ogtkTextProps.cmx ogtkTreeProps.cmx ogtkFileProps.cmx ogtkActionProps.cmx ogtkBrokenProps.cmx ogtkAssistantProps.cmx gMain.cmx gContainer.cmx gPack.cmx gButton.cmx gText.cmx gMenu.cmx gMisc.cmx gTree.cmx gList.cmx gFile.cmx gWindow.cmx gAssistant.cmx gBin.cmx gEdit.cmx gRange.cmx gAction.cmx gBroken.cmx gUtil.cmx gToolbox.cmx gtkInit.cmx ; \
- echo gtkInit.o ; \
- if test -f gtkThread.cmx; then \
- echo gtkThread.cmx gtkThread.o ; \
- fi ; \
- fi` \
- `if test -f dlllablgtk2.so; \
- then \
- echo "-dll dlllablgtk2.so -nodll" ; \
- fi` \
- `if test -f dlllablgtk2.a; \
- then \
- echo dlllablgtk2.a ; \
- fi`
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThread.o
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThread.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkInit.o
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkInit.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gToolbox.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gUtil.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gBroken.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gAction.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gRange.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gEdit.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gBin.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gAssistant.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gWindow.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gFile.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gList.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gTree.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMisc.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMenu.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gText.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gButton.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gPack.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gContainer.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMain.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkAssistantProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBrokenProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkActionProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkFileProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkTreeProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkTextProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkRangeProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkPackProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkMiscProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkMenuProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkListProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkEditProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkButtonProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBinProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gData.cmx
- ocamlfind: [WARNING] Overwriting file /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gObj.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gDraw.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gPango.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBroken.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMain.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkFile.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTree.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkText.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkRange.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEdit.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBin.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkList.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkWindow.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMisc.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMenu.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkAssistant.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkButton.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkPack.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBase.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkData.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkAssistantProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBrokenProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkActionProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkFileProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTreeProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTextProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkRangeProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkPackProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMiscProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMenuProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkListProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEditProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkButtonProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBinProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBaseProps.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkObject.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkStock.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkSignal.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtk.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkPixbuf.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkKeysyms.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkEvent.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdk.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/pango.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEnums.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/pangoEnums.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkEnums.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gobject.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/glib.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gutf8.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gpointer.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gaux.cmx
- Installed /home/opam/.opam/4.14/lib/lablgtk2/lablgtk.cmxs
- Installed /home/opam/.opam/4.14/lib/lablgtk2/lablgtk.a
- Installed /home/opam/.opam/4.14/lib/lablgtk2/lablgtk.cmxa
- Installed /home/opam/.opam/4.14/lib/lablgtk2/wrappers.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/win32.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/pango_tags.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_pango.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_gvaluecaml.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_gtktree.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_gtktext.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_gtk.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_gpointer.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_gobject.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_glib.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_gdkpixbuf.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_gdk.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ml_domain.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtk_tags.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gobject_tags.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/glib_tags.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkprivate-win32.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkpixbuf_tags.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdk_tags.h
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThInit.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThread.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThInit.cmo
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThread.cmo
- Installed /home/opam/.opam/4.14/lib/lablgtk2/propcc
- Installed /home/opam/.opam/4.14/lib/lablgtk2/varcc
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkInit.cmo
- Installed /home/opam/.opam/4.14/lib/lablgtk2/lablgtk.cma
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThInit.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThread.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkInit.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gToolbox.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gUtil.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gBroken.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gAction.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gRange.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gEdit.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gBin.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gAssistant.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gWindow.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gFile.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gList.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gTree.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMisc.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMenu.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gText.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gButton.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gPack.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gContainer.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMain.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkAssistantProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBrokenProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkActionProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkFileProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkTreeProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkTextProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkRangeProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkPackProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkMiscProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkMenuProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkListProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkEditProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkButtonProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBinProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gData.ml
- ocamlfind: [WARNING] Overwriting file /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gObj.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gDraw.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gPango.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBroken.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMain.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkFile.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTree.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkText.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkRange.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEdit.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBin.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkList.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkWindow.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMisc.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMenu.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkAssistant.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkButton.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkPack.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBase.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkData.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkAssistantProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBrokenProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkActionProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkFileProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTreeProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTextProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkRangeProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkPackProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMiscProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMenuProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkListProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEditProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkButtonProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBinProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBaseProps.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkObject.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkStock.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkSignal.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtk.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkPixbuf.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkKeysyms.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkEvent.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdk.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/pango.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEnums.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/pangoEnums.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkEnums.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gobject.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/glib.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gutf8.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gpointer.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gaux.ml
- Installed /home/opam/.opam/4.14/lib/lablgtk2/xml_lexer.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/rsvg.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/panel.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gutf8.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkThread.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkSpell.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkSourceView_types.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkSourceView2_types.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkSignal.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gpointer.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gobject.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gnoDruid.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gnoCanvas.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/glib.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/glade.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/glGtk.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkPixbuf.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdk.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gWindow.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gUtil.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gTree.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gToolbox.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gText.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gSourceView2.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gSourceView.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gRange.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gPack.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gObj.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMisc.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMenu.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMain.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gList.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gFile.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gEdit.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gDraw.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gData.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gContainer.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gButton.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gBroken.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gBin.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gAssistant.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gAction.mli
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkInit.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gToolbox.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gUtil.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gBroken.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gAction.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gRange.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gEdit.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gBin.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gAssistant.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gWindow.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gFile.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gList.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gTree.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMisc.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMenu.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gText.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gButton.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gPack.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gContainer.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gMain.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkAssistantProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBrokenProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkActionProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkFileProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkTreeProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkTextProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkRangeProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkPackProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkMiscProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkMenuProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkListProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkEditProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkButtonProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBinProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gData.cmi
- ocamlfind: [WARNING] Overwriting file /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/ogtkBaseProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gObj.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gDraw.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gPango.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBroken.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMain.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkFile.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTree.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkText.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkRange.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEdit.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBin.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkList.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkWindow.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMisc.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMenu.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkAssistant.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkButton.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkPack.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBase.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkData.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkAssistantProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBrokenProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkActionProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkFileProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTreeProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkTextProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkRangeProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkPackProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMiscProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkMenuProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkListProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEditProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkButtonProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBinProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkBaseProps.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkObject.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkStock.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkSignal.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtk.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkPixbuf.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkKeysyms.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkEvent.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdk.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/pango.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gtkEnums.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/pangoEnums.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gdkEnums.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gobject.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/glib.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gutf8.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gpointer.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/gaux.cmi
- Installed /home/opam/.opam/4.14/lib/lablgtk2/liblablgtk2.a
- Installed /home/opam/.opam/4.14/lib/lablgtk2/build.ml
- Installed /home/opam/.opam/4.14/lib/stublibs/dlllablgtk2.so
- Installed /home/opam/.opam/4.14/lib/stublibs/dlllablgtk2.so.owner
- ocamlfind: [WARNING] You have installed DLLs but the directory /home/opam/.opam/4.14/lib/stublibs is not mentioned in ld.conf
- Installed /home/opam/.opam/4.14/lib/lablgtk2/META
- rm -f lablgtk2
- make lablgtk2 LABLGTKDIR="/home/opam/.opam/4.14/lib/lablgtk2"
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11/src'
- sed -e "s|@INSTALLDIR@|/home/opam/.opam/4.14/lib/lablgtk2|g" \
- -e "s|@LABLGLDIR@|/home/opam/.opam/4.14/lib/lablgl|g" \
- -e "s|@MLLIBS@| lablgtk.cma|g" \
- -e "s|@INITOBJS@|gtkInit.cmo|g" \
- -e "s|@THOBJS@|gtkThread.cmo|g" \
- -e "s|@THINITOBJS@|gtkThInit.cmo|g" \
- -e "s|@USEDLL@|yes|g" \
- -e "s|@THREADS_LIB@|system|g" \
- < lablgtk2.in > lablgtk2
- chmod 755 lablgtk2
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11/src'
- cp lablgtk2 "/home/opam/.opam/4.14/bin"
- if test -f lablgladecc; then \
- cp lablgladecc "/home/opam/.opam/4.14/bin/lablgladecc2"; \
- fi
- cp gdk_pixbuf_mlsource "/home/opam/.opam/4.14/bin"
- ranlib "/home/opam/.opam/4.14/lib/lablgtk2"/liblablgtk2.a
- Execute ranlib in /home/opam/.opam/4.14/lib/lablgtk2
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgtk.2.18.11/src'
-> installed lablgtk.2.18.11
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 21:36.56 ---> saved as "4db3502d5cafaf2c8af52b15d25f1230ab5a173c272fb7d579e3a6a587b74813"
Job succeeded
2026-03-21 21:37.02: Job succeeded