Ask Different (Apple)
Q&A for power users of Apple hardware and software
Latest Questions
0
votes
1
answers
49
views
How to install liberation fonts with macports on macOS for Inkscape?
I'm new to macOS and I've tried to install liberation fonts with macports: ``` sudo port install liberation-fonts ``` But it looks like this doesn't install the fonts on the system. When I open Inkcape I don't see the fonts. I used this command to find where they are located: ``` port contents liber...
I'm new to macOS and I've tried to install liberation fonts with macports:
sudo port install liberation-fonts
But it looks like this doesn't install the fonts on the system. When I open Inkcape I don't see the fonts.
I used this command to find where they are located:
port contents liberation-fonts
Port liberation-fonts @2.1.5_1 contains:
/opt/local/share/fonts/TTF/LiberationMono-Bold.ttf
/opt/local/share/fonts/TTF/LiberationMono-BoldItalic.ttf
/opt/local/share/fonts/TTF/LiberationMono-Italic.ttf
/opt/local/share/fonts/TTF/LiberationMono-Regular.ttf
/opt/local/share/fonts/TTF/LiberationSans-Bold.ttf
/opt/local/share/fonts/TTF/LiberationSans-BoldItalic.ttf
/opt/local/share/fonts/TTF/LiberationSans-Italic.ttf
/opt/local/share/fonts/TTF/LiberationSans-Regular.ttf
/opt/local/share/fonts/TTF/LiberationSerif-Bold.ttf
/opt/local/share/fonts/TTF/LiberationSerif-BoldItalic.ttf
/opt/local/share/fonts/TTF/LiberationSerif-Italic.ttf
/opt/local/share/fonts/TTF/LiberationSerif-Regular.ttf
Do I need to click on every font and install it manually or is there a way to automatically install the fonts? Or maybe do I need to reboot to install the fonts?
I can't find any information how to install the fonts, Google AI suggestion only says that installing macport is enough. Then why the fonts are not installed? Do I need to refresh the font cache like on Linux?
Or maybe there is a different reason why installed fonts don't appear in Inkscape?
jcubic
(105 rep)
Jul 14, 2025, 11:26 AM
• Last activity: Jul 16, 2025, 01:47 PM
0
votes
1
answers
97
views
gcc14 (MacPorts) cannot handle stdio.h include
I am trying to compile (from source, I am aware that there is a port but I need to compile from source) a library (GKlib) with MacPorts gcc14 on Sonoma 14.7,3. MacPorts is up to date I have set thing sup with git clone https://github.com/KarypisLab/GKlib.git cd GKlib make config cc=gcc-mp-14 prefix=...
I am trying to compile (from source, I am aware that there is a port but I need to compile from source) a library (GKlib) with MacPorts gcc14 on Sonoma 14.7,3. MacPorts is up to date
I have set thing sup with
git clone https://github.com/KarypisLab/GKlib.git
cd GKlib
make config cc=gcc-mp-14 prefix=../GKlibInstall
make
make results in:
/opt/local/bin/gcc-mp-14 -I/Users/gerben/RenskeDev/Leon/fromsource/GKlib/. -I/Users/gerben/RenskeDev/Leon/fromsource/GKlib/test -DLINUX -D_FILE_OFFSET_BITS=64 -std=c99 -fno-strict-aliasing -march=native -fPIC -Werror -Wall -pedantic -Wno-unused-function -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unknown-pragmas -Wno-unused-label -DNDEBUG -DNDEBUG2 -DHAVE_EXECINFO_H -DHAVE_GETLINE -O3 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk -mmacosx-version-min=14.7 -MD -MT CMakeFiles/GKlib.dir/b64.c.o -MF CMakeFiles/GKlib.dir/b64.c.o.d -o CMakeFiles/GKlib.dir/b64.c.o -c /Users/gerben/RenskeDev/Leon/fromsource/GKlib/b64.c
In file included from /Users/gerben/RenskeDev/Leon/fromsource/GKlib/GKlib.h:32,
from /Users/gerben/RenskeDev/Leon/fromsource/GKlib/b64.c:20:
/opt/local/lib/gcc14/gcc/x86_64-apple-darwin23/14.2.0/include-fixed/stdio.h:83:8: error: unknown type name 'FILE'
83 | extern FILE *__stdinp;
| ^~~~
A test file (Hello World) in the directory above compiles fine. I’ve seen messages with this kind of trouble but I don’t understand exactly where this is going wrong.
gcc14 has a 'translated/fixed' stdio.h from Apple (/opt/local/lib/gcc14/gcc/x86_64-apple-darwin23/14.2.0/include-fixed/stdio.h) that starts with:
#ifndef _STDIO_H_
#define _STDIO_H_
#include
#include
__BEGIN_DECLS
extern FILE *__stdinp;
When testing with the test file (a simple Hello World), the culprit seems to be
-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk
My guess is that I need to make sure make etc. add another -isysroot before the Apple SDK one. Is that correct (because then I have to find out how).
It’s been far too long I have been doing stuff like this, so I could use tips.
Thanks,
gctwnl
(762 rep)
Feb 13, 2025, 10:34 AM
• Last activity: Jul 15, 2025, 07:00 PM
3
votes
2
answers
441
views
I'm trying to install ncdu using MacPorts in macOS Catalina, however it depends on zig but zig is no longer compatible, looking for workaround
I have an old MacBook which cannot be upgraded to anything higher than Catalina (at least officially) and I had been using Homebrew but since now it's not supported it tries to compile every package and that takes a very long time, so I switched to MacPorts. I'm trying to install the ncdu port but i...
I have an old MacBook which cannot be upgraded to anything higher than Catalina (at least officially) and I had been using Homebrew but since now it's not supported it tries to compile every package and that takes a very long time, so I switched to MacPorts.
I'm trying to install the ncdu port but it depends on zig, MacPorts fetches zig-0.11.0_0.darwin_19.x86_64 but the build fails with error: command execution failed.
I checked here https://ports.macports.org/port/zig/details/ and noticed that indeed it doesn't work with Catalina because it requires darwin >= 20. I manually downloaded zig 0.10.1 and it works fine so my question is: Is there a way to make MacPorts use the zig version that I installed manually and take that one as a dependency for installing ncdu (a previous version if possible).
It's my first time using MacPorts so any help is really appreciated, thanks.
d3vCr0w
(133 rep)
Aug 28, 2023, 01:40 PM
• Last activity: May 2, 2025, 08:51 AM
-1
votes
1
answers
52
views
How do I ask Macports to install a dependency package from local source?
So I know how to do that with 'brew' on my OSX 10.11.6 but "How do I ask Macports to install a dependency package locally?" And I don't take 'No, this is NOT allowed' for an answer. There is a number of reasons as to why 'allowing local source' to be incorporated into 'macport' maintained system is...
So I know how to do that with 'brew' on my OSX 10.11.6 but "How do I ask Macports to install a dependency package locally?"
And I don't take 'No, this is NOT allowed' for an answer. There is a number of reasons as to why 'allowing local source' to be incorporated into 'macport' maintained system is important
The most promising tip I reviewed so far is from this previous post:
#1 credited to Lothar Haeger on the Macports mailing
On my system, I am running MacFUSE 4.10.0. Installed via Native Apple .pkg installation. Current MacPorts only goes so far as osxfuse @3.8.3 and somehow it FAILED at fetching it. I need to get Macports to know this latest version of MacFUSE. And my original failed port task is to install 'sudo port install android-file-transfer-linux', it calls osxfuse and broke at that point...
allthingsgo
(11 rep)
Mar 23, 2025, 12:13 PM
• Last activity: Mar 23, 2025, 05:29 PM
0
votes
1
answers
74
views
How to alias the "Apple version" of 'ls -lO'?
macOS Ventura with a 'MacPorts' installation that includes GNU replacements for numerous *"Apple-sourced"* utilities including `ls`. The original `ls` is located at `/bin/ls`, the GNU/MacPorts version of `ls` is located at `/opt/local/libexec/gnubin/ls`. The GNU version of `ls` works for most things...
macOS Ventura with a 'MacPorts' installation that includes GNU replacements for numerous *"Apple-sourced"* utilities including
ls
. The original ls
is located at /bin/ls
, the GNU/MacPorts version of ls
is located at /opt/local/libexec/gnubin/ls
.
The GNU version of ls
works for most things, but in some cases (one in particular) I need the *"Apple-sourced"* version of ls
. For example, to list the 'file flags' (ref man chflags
), I need the O
option... the GNU version does not provide this.
I'd like to set an alias
in ~/.zshrc
that handles ls -lO
, and possibly other options unique to the *"Apple-sourced"* version of ls
.
I've tried several aliases in ~/.zshrc
that didn't work; e.g.
alias ls -lO='/bin/ls -lO'
How to do this?
Seamus
(5329 rep)
Feb 14, 2025, 08:26 AM
• Last activity: Feb 14, 2025, 08:28 AM
0
votes
1
answers
191
views
MANPATH, 'whereis' and how manuals are located?
I use a 2023 M2 MBP running Ventura 13.7.2. To augment Apple's rather paltry offerings of CL utilities, I depend on MacPorts. Unfortunately, MacPorts does not have a replacement/alternative for `whereis`. If you've ever used Apple's native `whereis` you may have noticed that it has some ***shortcomi...
I use a 2023 M2 MBP running Ventura 13.7.2. To augment Apple's rather paltry offerings of CL utilities, I depend on MacPorts. Unfortunately, MacPorts does not have a replacement/alternative for
whereis
.
If you've ever used Apple's native whereis
you may have noticed that it has some ***shortcomings***; e.g.:
/usr/bin/whereis find
find: /usr/bin/find /opt/local/libexec/gnubin/man/man1/find.1.gz
First - it only reports on native apps**See EDIT 1 below**. Its **app** searches are restricted by Apple, and apparently this cannot be over-ridden by any user.
Second - as you can see above, it has no such restrictions on searching for manuals. In this case, it reports on the manual location for the find
tool which was installed from MacPorts.
Third - the native whereis
found the manpage for find
without benefit of the MANPATH
environment variable - it is not set on my system.
Fourth - AFAIK, that leaves only manpath
(another Apple-sourced CL utility) as a resource for finding the location of manuals. However, **as I read** man manpath
- it's not getting it from there either!
So that's my question: How does Apple's whereis
command find the location of system manuals? Have I mis-read man manpath
? Can someone explain the process?
Also, I'd be interested to know if Apple publishes the source files for manpath
and whereis
.
---
#### EDIT 1: "What is meant by native apps?"
From man whereis
on my system (dated "August 22, 2002, for macOS 13.7"):
>The default path searched is the string returned by the sysctl(8) utility for the “user.cs_path” string, with /usr/libexec and the current user's $PATH appended.
On my system:
% sysctl user.cs_path
user.cs_path: /usr/bin:/bin:/usr/sbin:/sbin
WRT ***"... Its app searches are restricted by Apple, and apparently this cannot be over-ridden by any user."***: You may refer to [this post](https://github.com/seamusdemora/seamusdemora.github.io/blob/master/MacStuff.md#39-whereis-vs-which-and-why-Apple-sucks) which was based on some research I did a while ago. Referring to man sysctl
on my current mac, is the following:
>COMPATIBILITY
The -w option has been deprecated and is silently ignored.
Seamus
(5329 rep)
Feb 3, 2025, 07:12 AM
• Last activity: Feb 4, 2025, 08:22 AM
0
votes
1
answers
46
views
How to set up Logwatch configuration overrides?
I've been running Logwatch on a Raspberry Pi for some time and learned a lot from it. I decided to install on a Mac (Intel iMac running Sequoia) via MacPorts. The Logwatch configuration file ```/opt/local/share/logwatch/default.conf/logwatch.conf``` says to override default variables by putting them...
I've been running Logwatch on a Raspberry Pi for some time and learned a lot from it. I decided to install on a Mac (Intel iMac running Sequoia) via MacPorts.
The Logwatch configuration file
/opt/local/share/logwatch/default.conf/logwatch.conf
says to override default variables by putting them in the following file:
/etc/logwatch/conf/logwatch.conf
However, that directory does not exist. So, I'm lost. Do I need to create that directory or does the override file go somewhere else?
Buadhai
(681 rep)
Dec 16, 2024, 01:44 AM
• Last activity: Jan 17, 2025, 08:38 AM
-1
votes
1
answers
93
views
Recovering old package from Macports - archived somewhere?
I was in the process of working through how to get the local web-server version of Joplin 3 (based on the mobile version) compiled on macOS 10.13 High Sierra (because the GUI absolutely will not, being dependent on features that didn't exist until later OS versions), and writing up a detailed tutori...
I was in the process of working through how to get the local web-server version of Joplin 3 (based on the mobile version) compiled on macOS 10.13 High Sierra (because the GUI absolutely will not, being dependent on features that didn't exist until later OS versions), and writing up a detailed tutorial on the process. The only way to do this is with Node.js 21, because 22 and later are inoperable on macOS 10.13. Can't use Homebrew for this. MacPorts handily provided Node 21 and the ICU 74 it depends on.
Then I needed to reinstall Node 21 for some reason or other (stopped running due to some library being upgraded and the old one removed). THIS VERY WEEK, MacPorts decided to delete Node 21 from its offerings, right out from under me, and forces an upgrade to 22, which won't compile on my OS. So, all this work for nothing.
Is there some repo somewhere with older MacPorts packages that they no longer want to provide support for? It seems unlikely to me that the package I need has disappeared off the entire Internet forever.
Trying to do something like
sudo port upgrade --enforce-variants nodejs21@21.7.3
fails; it just forcibly tries to install @22.whatever anyway.
S. McCandlish
(337 rep)
Dec 27, 2024, 09:06 AM
• Last activity: Dec 27, 2024, 04:40 PM
1
votes
2
answers
386
views
MacPorts 2.10.0 broken after Sonoma update 14.6.1 (M2 Max)
After migrating to `MacPorts 2.10.0` via ``` $ sudo port selfupdating Password: ---> Updating MacPorts base sources using rsync MacPorts base version 2.9.3 installed, MacPorts base version 2.10.0 downloaded. ---> Updating the ports tree ---> MacPorts base is outdated, installing new version 2.10.0 I...
After migrating to
MacPorts 2.10.0
via
$ sudo port selfupdating
Password:
---> Updating MacPorts base sources using rsync
MacPorts base version 2.9.3 installed,
MacPorts base version 2.10.0 downloaded.
---> Updating the ports tree
---> MacPorts base is outdated, installing new version 2.10.0
Installing new MacPorts release in /opt/local as root:wheel; permissions 0775
Error: Error installing new MacPorts base: command execution failed
Please run `port -v selfupdate' for details.
Error: /opt/local/bin/port: port selfupdate failed: Error installing new MacPorts base: command execution failed
I tried sudo port migrate
together with the recommended change to the new URL
in sources.conf
.
A following selfupdate produced the output
$ sudo port selfupdate
---> Checking for newer releases of MacPorts
MacPorts base version 2.10.0 installed,
MacPorts base version 2.10.0 available.
---> MacPorts base is already the latest version
---> Updating the ports tree
Error: updating PortIndex for rsync://rsync.macports.org/macports/release/tarballs/ports.tar failed
The ports tree has been updated.
29 ports are outdated. Run 'port outdated' for details.
To upgrade your installed ports, you should run
port upgrade outdated
Unfortunately, it seems that now MacPorts is broken:
$ sudo port outdated
Error: Current platform "darwin 23" does not match expected platform "darwin 23"
Error: Please run 'sudo port migrate' or follow the migration instructions: https://trac.macports.org/wiki/Migration
OS platform mismatch
while executing
"mportinit ui_options global_options global_variations"
Error: /opt/local/bin/port: Failed to initialize MacPorts, OS platform mismatch
Any help is highly appreciated.
Bernd
(219 rep)
Aug 14, 2024, 01:48 PM
• Last activity: Aug 16, 2024, 12:20 PM
0
votes
0
answers
257
views
How to install facebook watchman on Mac Catalina 10.15.5
Please I am installing watchman for so that I can setup my React Native environment on MacBook Pro early 11 with Catalina 10.15.5. All efforts to successfully install watchman has been abortive. Could anyone please help me? I have tried the command “brew install watchman” but it would complain of Fo...
Please I am installing watchman for so that I can setup my React Native environment on MacBook Pro early 11 with Catalina 10.15.5.
All efforts to successfully install watchman has been abortive. Could anyone please help me? I have tried the command “brew install watchman” but it would complain of Folly and C.make during the installation. I have tried to install watchman through MacPort using the following MacPort documentation…
1. unzip watchman-*-linux.zip
2. cd watchman-vYYYY.MM.DD.00-linux
3. sudo mkdir -p /usr/local/{bin,lib} /usr/local/var/run/watchman
4. sudo cp bin/* /usr/local/bin
5. sudo cp lib/* /usr/local/lib
6. sudo chmod 755 /usr/local/bin/watchman
7. sudo chmod 2777 /usr/local/var/run/watchman
The step 4 AND 5 are wrong in the above step as the terminal showed that bin/* and lib/* are wrong and there I am stuck.
Is there anyone who can give me a practical proven guide on installing watchman on Mac Catalina 10.15.5 through Homebrew or MacPort?
I appreciate your efforts in advance
Brenda Elliott
(1 rep)
Jul 9, 2024, 05:42 AM
1
votes
1
answers
116
views
Manage python environments with MacPorts
In *win* I was using anaconda and with `conda activate` I could easily manage isolated python environments that I can then used in any IDE etc. How can I do the same with MacPorts? I know anaconda is also for macOS bui I read is quite incompatible with MacPorts. What about [virtualenv][1] package fo...
In *win* I was using anaconda and with
conda activate
I could easily manage isolated python environments that I can then used in any IDE etc.
How can I do the same with MacPorts? I know anaconda is also for macOS bui I read is quite incompatible with MacPorts. What about virtualenv package for MacPorts? what is the standard way to do this?
myradio
(113 rep)
Jun 11, 2024, 05:25 PM
• Last activity: Jun 11, 2024, 08:28 PM
0
votes
1
answers
113
views
Various installations of python on my MacBook
I am doing more or less a `find . -iname "*python*" -type d` in my MacOS and I find numerous `python` installations. I am unable to figure out which is which and what is its purpose so I was wondering whether someone can point me to some documentation. Some examples: ``` ./Library/Developer/CommandL...
I am doing more or less a
find . -iname "*python*" -type d
in my MacOS and I find numerous python
installations.
I am unable to figure out which is which and what is its purpose so I was wondering whether someone can point me to some documentation.
Some examples:
./Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/Resources/Python.app
./System/Volumes/Data/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework
./System/Volumes/Data/Applications/Python 3.11
./System/Volumes/Data/opt/homebrew/lib/python3.11
./System/Volumes/Data/opt/homebrew/lib/python3.9
./System/Volumes/Data/opt/homebrew/lib/python3.12
(I am assuming the later are brew
installations.
./System/Volumes/Data/opt/homebrew/Cellar/python@3.12
Any help would be much appreciated.
pkaramol
(145 rep)
May 10, 2024, 06:08 PM
• Last activity: May 10, 2024, 07:22 PM
1
votes
0
answers
31
views
can't install gmdb2 using macports on Sonoma
I can't install gmdb2 using MacPorts on Sonoma 14.4.1 I try aladino@pc-23 ~ % sudo port install gmdb2 but I get ---> Computing dependencies for gmdb2 The following dependencies will be installed: yelp Continue? [Y/n]: y ---> Fetching archive for yelp ---> Attempting to fetch yelp-3.38.3_4.darwin_23....
I can't install gmdb2 using MacPorts on Sonoma 14.4.1
I try
aladino@pc-23 ~ % sudo port install gmdb2
but I get
---> Computing dependencies for gmdb2
The following dependencies will be installed: yelp
Continue? [Y/n]: y
---> Fetching archive for yelp
---> Attempting to fetch yelp-3.38.3_4.darwin_23.arm64.tbz2 from https://packages.macports.org/yelp
---> Attempting to fetch yelp-3.38.3_4.darwin_23.arm64.tbz2 from https://fra.de.packages.macports.org/yelp
---> Attempting to fetch yelp-3.38.3_4.darwin_23.arm64.tbz2 from https://mse.uk.packages.macports.org/yelp
---> Building yelp
Error: Failed to build yelp: command execution failed
Error: See /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/main.log for details.
Error: Follow https://guide.macports.org/#project.tickets if you believe there is a bug.
Error: Processing of port gmdb2 failed
Here's the content of the mentioned log file
version:1
:debug:main Starting logging for yelp @3.38.3_4
:debug:sysinfo macOS 14.4.1 (darwin/23.4.0) arch arm
:debug:sysinfo MacPorts 2.9.3
:debug:sysinfo Xcode none, CLT 15.3.0.0.1.1708646388
:debug:sysinfo SDK 14
:debug:sysinfo MACOSX_DEPLOYMENT_TARGET: 14.0
:debug:main dropping privileges: euid changed to 502, egid changed to 501.
:debug:main Executing org.macports.main (yelp)
:debug:main Privilege de-escalation not attempted as not running as root.
:debug:archivefetch archivefetch phase started at Tue May 7 17:33:29 WEST 2024
:msg:archivefetch ---> Fetching archive for yelp
:debug:archivefetch Executing org.macports.archivefetch (yelp)
:debug:archivefetch euid/egid changed to: 0/0
:debug:archivefetch chowned /opt/local/var/macports/incoming to macports
:debug:archivefetch euid/egid changed to: 502/501
:info:archivefetch ---> yelp-3.38.3_4.darwin_23.arm64.tbz2 doesn't seem to exist in /opt/local/var/macports/incoming/verified
:msg:archivefetch ---> Attempting to fetch yelp-3.38.3_4.darwin_23.arm64.tbz2 from https://packages.macports.org/yelp
:debug:archivefetch Fetching archive failed: The requested URL returned error: 404
:msg:archivefetch ---> Attempting to fetch yelp-3.38.3_4.darwin_23.arm64.tbz2 from https://fra.de.packages.macports.org/yelp
:debug:archivefetch Fetching archive failed: The requested URL returned error: 404
:msg:archivefetch ---> Attempting to fetch yelp-3.38.3_4.darwin_23.arm64.tbz2 from https://mse.uk.packages.macports.org/yelp
:debug:archivefetch Fetching archive failed: The requested URL returned error: 404
:debug:archivefetch Privilege de-escalation not attempted as not running as root.
:debug:archivefetch Skipping completed org.macports.fetch (yelp)
:debug:archivefetch Privilege de-escalation not attempted as not running as root.
:debug:archivefetch Skipping completed org.macports.checksum (yelp)
:debug:archivefetch Privilege de-escalation not attempted as not running as root.
:debug:archivefetch Skipping completed org.macports.extract (yelp)
:debug:archivefetch Privilege de-escalation not attempted as not running as root.
:debug:archivefetch Skipping completed org.macports.patch (yelp)
:debug:archivefetch Privilege de-escalation not attempted as not running as root.
:debug:archivefetch Skipping completed org.macports.configure (yelp)
:debug:archivefetch Privilege de-escalation not attempted as not running as root.
:debug:build build phase started at Tue May 7 17:33:30 WEST 2024
:notice:build ---> Building yelp
:debug:build Executing org.macports.build (yelp)
:debug:build Environment:
:debug:build CC_PRINT_OPTIONS='YES'
:debug:build CC_PRINT_OPTIONS_FILE='/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/.CC_PRINT_OPTIONS'
:debug:build CPATH='/opt/local/include'
:debug:build DEVELOPER_DIR='/Library/Developer/CommandLineTools'
:debug:build LIBRARY_PATH='/opt/local/lib'
:debug:build MACOSX_DEPLOYMENT_TARGET='14.0'
:debug:build SDKROOT='/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk'
:info:build Executing: cd "/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3" && /usr/bin/make -j10 -w all
:debug:build system: cd "/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3" && /usr/bin/make -j10 -w all
:info:build make: Entering directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3'
:info:build /Library/Developer/CommandLineTools/usr/bin/make all-recursive
:info:build make: Entering directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3'
:info:build Making all in po
:info:build make: Entering directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3/po'
:info:build make: Nothing to be done for `all'.
:info:build make: Leaving directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3/po'
:info:build make: Entering directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3'
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-bookmarks.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-bookmarks.Tpo -c -o libyelp/libyelp_la-yelp-bookmarks.lo
test -f 'libyelp/yelp-bookmarks.c' || echo './'
libyelp/yelp-bookmarks.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-debug.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-debug.Tpo -c -o libyelp/libyelp_la-yelp-debug.lo test -f 'libyelp/yelp-debug.c' || echo './'
libyelp/yelp-debug.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-error.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-error.Tpo -c -o libyelp/libyelp_la-yelp-error.lo test -f 'libyelp/yelp-error.c' || echo './'
libyelp/yelp-error.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-docbook-document.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-docbook-document.Tpo -c -o libyelp/libyelp_la-yelp-docbook-document.lo test -f 'libyelp/yelp-docbook-document.c' || echo './'
libyelp/yelp-docbook-document.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-document.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-document.Tpo -c -o libyelp/libyelp_la-yelp-document.lo test -f 'libyelp/yelp-document.c' || echo './'
libyelp/yelp-document.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-help-list.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-help-list.Tpo -c -o libyelp/libyelp_la-yelp-help-list.lo test -f 'libyelp/yelp-help-list.c' || echo './'
libyelp/yelp-help-list.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-info-document.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-info-document.Tpo -c -o libyelp/libyelp_la-yelp-info-document.lo test -f 'libyelp/yelp-info-document.c' || echo './'
libyelp/yelp-info-document.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-info-parser.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-info-parser.Tpo -c -o libyelp/libyelp_la-yelp-info-parser.lo test -f 'libyelp/yelp-info-parser.c' || echo './'
libyelp/yelp-info-parser.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-magic-decompressor.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-magic-decompressor.Tpo -c -o libyelp/libyelp_la-yelp-magic-decompressor.lo test -f 'libyelp/yelp-magic-decompressor.c' || echo './'
libyelp/yelp-magic-decompressor.c
:info:build /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/clang -DHAVE_CONFIG_H -I. -DDATADIR=\""/opt/local/share"\" -DYELP_ICON_PATH=\"/opt/local/share/yelp-xsl/icons\" -DYELP_WEB_EXTENSIONS_DIR=\""/opt/local/lib/yelp/"web-extensions\" -I./libyelp -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fno-strict-aliasing -Wall -I/opt/local/include/gtk-3.0/unix-print -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/gtk-3.0 -I/opt/local/include/at-spi2-atk/2.0 -I/opt/local/include/at-spi-2.0 -I/opt/local/include/dbus-1.0 -I/opt/local/lib/dbus-1.0/include -I/opt/local/include/gtk-3.0 -I/opt/local/include/gio-unix-2.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/harfbuzz -I/opt/local/include/pango-1.0 -I/opt/local/include/fribidi -I/opt/local/include/harfbuzz -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pixman-1 -I/opt/local/include/freetype2 -I/opt/local/include/gdk-pixbuf-2.0 -I/opt/local/include/libpng16 -I/opt/local/include/libsoup-2.4 -I/opt/local/include/libxml2 -I/opt/local/include/webkitgtk-4.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -Wno-deprecated-declarations -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -g -MT libyelp/libyelp_la-yelp-mallard-document.lo -MD -MP -MF libyelp/.deps/libyelp_la-yelp-mallard-document.Tpo -c -o libyelp/libyelp_la-yelp-mallard-document.lo test -f 'libyelp/yelp-mallard-document.c' || echo './'
libyelp/yelp-mallard-document.c
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build make: *** [libyelp/libyelp_la-yelp-debug.lo] Error 63
:info:build make: *** Waiting for unfinished jobs....
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build make: *** [libyelp/libyelp_la-yelp-info-document.lo] Error 63
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build make: *** [libyelp/libyelp_la-yelp-help-list.lo] Error 63
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build make: *** [libyelp/libyelp_la-yelp-bookmarks.lo] Error 63
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build make: *** [libyelp/libyelp_la-yelp-document.lo] Error 63
:info:build make: *** [libyelp/libyelp_la-yelp-docbook-document.lo] Error 63
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build make: *** [libyelp/libyelp_la-yelp-mallard-document.lo] Error 63
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build make: *** [libyelp/libyelp_la-yelp-error.lo] Error 63
:info:build make: *** [libyelp/libyelp_la-yelp-info-parser.lo] Error 63
:info:build libtool: Version mismatch error. This is libtool 2.4.6, but the
:info:build libtool: definition of this LT_INIT comes from libtool 2.4.7.
:info:build libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
:info:build libtool: and run autoconf again.
:info:build make: *** [libyelp/libyelp_la-yelp-magic-decompressor.lo] Error 63
:info:build make: Leaving directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3'
:info:build make: *** [all-recursive] Error 1
:info:build make: Leaving directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3'
:info:build make: *** [all] Error 2
:info:build make: Leaving directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3'
:info:build Command failed: cd "/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/work/yelp-3.38.3" && /usr/bin/make -j10 -w all
:info:build Exit code: 2
:error:build Failed to build yelp: command execution failed
:debug:build Error code: CHILDSTATUS 49967 2
:debug:build Backtrace: command execution failed
:debug:build while executing
:debug:build "system {*}$notty {*}$callback {*}$nice $fullcmdstring"
:debug:build invoked from within
:debug:build "command_exec -callback portprogress::target_progress_callback build"
:debug:build (procedure "portbuild::build_main" line 10)
:debug:build invoked from within
:debug:build "$procedure $targetname"
:error:build See /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_gnome_yelp/yelp/main.log for details.
But to me it seems I already have the right version of libtool
aladino@pc-23 ~ % glibtool --version
glibtool (GNU libtool) 2.4.7
Written by Gordon Matzigkeit, 1996
Copyright (C) 2014 Free Software Foundation, Inc.
aladino@pc-23 ~ %
aladino@pc-23 ~ %
aladino@pc-23 ~ %
aladino@pc-23 ~ % libtool -V
Apple Inc. version cctools-1010.6
anyone can help please?
thanks
Steve-no-Jobs
(11 rep)
May 7, 2024, 04:44 PM
1
votes
0
answers
73
views
sudo port install root6 failed
I am trying to install `root6` using Macports packages on macOS Sonoma 14.4.1 At the very end of the installation an error occured and the installation has failed for installing `root6`. Here is the error code in the `main.log` file: ``` :info:build make[1]: Leaving directory /opt/local/var/macports...
I am trying to install
root6
using Macports packages on macOS Sonoma 14.4.1
At the very end of the installation an error occured and the installation has failed for installing root6
.
Here is the error code in the main.log
file:
:info:build make: Leaving directory /opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_science_root6/root6/work/build'
:info:build make: *** [all] Error 2
:info:build make: Leaving directory `/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_science_root6/root6/work/build'
:info:build Command failed: cd "/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_science_root6/root6/work/build" && /usr/bin/make -j12 -w all VERBOSE=ON
:info:build Exit code: 2
:error:build Failed to build root6: command execution failed
:debug:build Error code: CHILDSTATUS 57087 2
:debug:build Backtrace: command execution failed
:debug:build while executing
:debug:build "system {*}$notty {*}$callback {*}$nice $fullcmdstring"
:debug:build invoked from within.
:debug:build "command_exec -callback portprogress::target_progress_callback build".
:debug:build (procedure "portbuild::build_main" line 10).
:debug:build invoked from within.
:debug:build "$procedure $targetname".
:error:build See /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_science_root6/root6/main.log for details.
Is this a bug?
Sandor Feher
(11 rep)
Apr 28, 2024, 03:48 PM
• Last activity: Apr 28, 2024, 07:12 PM
1
votes
0
answers
30
views
Is the config.log from macports packages available somewhere?
I installed a package via macports and was wondering what the outcome of a specific test during configure run was. Can I find this information somewhere for packages that `port` installs from binary pkg?
I installed a package via macports and was wondering what the outcome of a specific test during configure run was. Can I find this information somewhere for packages that
port
installs from binary pkg?
TJahns
(111 rep)
Apr 15, 2024, 11:53 AM
1
votes
0
answers
34
views
mdworker running as wrong user (macports instead of _spotlight)
I've just noticed a strange issue on an older (High Sierra) system I've nearly finished setting up – namely I'm seeing `mdworker` processes running as the user "macports" rather than the user I would expect "_spotlight". I'm guessing this is some kind of weird user ID mixup or something, however it'...
I've just noticed a strange issue on an older (High Sierra) system I've nearly finished setting up – namely I'm seeing
mdworker
processes running as the user "macports" rather than the user I would expect "_spotlight".
I'm guessing this is some kind of weird user ID mixup or something, however it's taken most of two days to copy a bunch of data onto the system, so I **really** do not want to have to wipe it and start again.
As far as I can tell Spotlight is running normally, I'm guessing because the mds
and mds_stores
processes are running as root as normal (so can still write to my /.Spotlight-V100
folder) but this definitely doesn't seem correct.
Does anyone know how I can get mdworker
instances running as the correct user again, ideally without interfering with my macports installation? Though if I **have** to uninstall and reinstall macports that's not the end of the world).
**Update**: In case it's relevant, I did restore one standard user from a Time Machine backup, but I specifically asked not to restore macports from that.
Haravikk
(1857 rep)
Mar 27, 2024, 10:08 PM
• Last activity: Mar 27, 2024, 11:11 PM
0
votes
0
answers
69
views
Is there any way to use osascript to run AppleScripts from an ssh session using a MacPorts installation of OpenSSH?
I'm running macOS 13.6.5, and have installed OpenSSH via MacPorts since I want to be running the latest version of OpenSSH. However, one downside to using a MacPorts installation of OpenSSH is that each ssh session is apparently not running in the right context to be able to interact with the window...
I'm running macOS 13.6.5, and have installed OpenSSH via MacPorts since I want to be running the latest version of OpenSSH. However, one downside to using a MacPorts installation of OpenSSH is that each ssh session is apparently not running in the right context to be able to interact with the window server, and therefore trying to use
osascript
to run AppleScripts that interact with running applications will all fail with an error Application isn’t running. (-600)
.
Is there any way to be able to use MacPorts OpenSSH and still use osascript
to run AppleScripts that interact with running applications?
Bri Bri
(2930 rep)
Mar 14, 2024, 05:06 PM
• Last activity: Mar 14, 2024, 05:15 PM
2
votes
2
answers
125
views
How to create additional groups using MacPorts?
I've installed both pip (pip27) and pip3 (pip37) for Python. However, MacPorts has only created one group called "pip" that can either be set to pip27, pip37 or none. I want pip27 to be available as pip and pip37 to be available as pip3. How can I create an additional group, so that I can easily use...
I've installed both pip (pip27) and pip3 (pip37) for Python.
However, MacPorts has only created one group called "pip" that can either be set to pip27, pip37 or none.
I want pip27 to be available as pip and pip37 to be available as pip3.
How can I create an additional group, so that I can easily use both pip and pip3 from the Terminal app? None of the
port select
subcommands seem to provide this option?
Currently, MacPorts has the following groups:
Nicolass-MacBook-Pro:Projects nlykkei$ port select --summary
Name Selected Options
==== ======== =======
pip pip27 pip27 pip37 none
python python27 python27 python27-apple python37 none
python2 none python27 python27-apple none
python3 python37 python37 none
virtualenv virtualenv37 virtualenv37 none
Shuzheng
(1681 rep)
Feb 10, 2019, 10:08 AM
• Last activity: Feb 16, 2024, 02:23 PM
0
votes
1
answers
265
views
Python and pip incompatible
I've installed python via Macports and have now Python 3.12. (MacOS 11 comes with Python 3.8) When I run `pip3 --version` I get this: /Users/ingmar/Library/Python/3.8/lib/python/site-packages/pip (python 3.8) And more importendly, packages installed via pip3 are not found when running the script via...
I've installed python via Macports and have now Python 3.12. (MacOS 11 comes with Python 3.8)
When I run
pip3 --version
I get this:
/Users/ingmar/Library/Python/3.8/lib/python/site-packages/pip (python 3.8)
And more importendly, packages installed via pip3 are not found when running the script via python3, which now points to Python 3.12 from Macports. (Don't know how to run Python 3.8 from MacOS)
I've also installed py-pip
from Macports and ran sudo port select --set pip3 pip312
, but the pip3 --version
output remains the same.
So, how do I make pip3
to point to the version installed via Macports so that packages installed can be found by python3
?
user1785730
(674 rep)
Jan 11, 2024, 03:45 AM
• Last activity: Feb 11, 2024, 09:04 AM
0
votes
1
answers
157
views
Warning when installing npm using MacPorts I don't understand/what to do with?
I just installed `npm10` with MacPorts. At the end of the installation I got this warning: It is not recommended to install packages globally. But if you do so please be aware that they won't get cleaned up when you deactivate or uninstall npm10. Globally installed packages will remain in /opt/local...
I just installed
npm10
with MacPorts. At the end of the installation I got this warning:
It is not recommended to install packages globally. But if you do so please
be aware that they won't get cleaned up when you deactivate or uninstall
npm10. Globally installed packages will remain in
/opt/local/lib/node_modules/ until you manually delete them.
AFAIK, Everything I install using MacPorts is by default installed globally, and it is complicated or not possible to not install globally, isn't it?
What is the recommended "solution" to this warning? Couldn't find any documentation at MacPorts.
d-b
(3494 rep)
Jan 13, 2024, 04:10 PM
• Last activity: Jan 13, 2024, 04:24 PM
Showing page 1 of 20 total questions