Skip to content

Commit

Permalink
do not link libcrypt
Browse files Browse the repository at this point in the history
  • Loading branch information
skaji committed Oct 5, 2024
1 parent 4b499fd commit 121f35d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/relocatable-perl-build
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ sub perl_build {
# see https://github.com/agracio/electron-edge-js/issues/16
push @Configure, "-Ui_xlocale";

# RHEL8, Fedora28, CentOS8 does not have libnsl.so.1 by default;
# remove -lnsl
push @Configure, "-Dlibs=-lpthread -ldl -lm -lcrypt -lutil -lc";
# RHEL8, Fedora28, CentOS8 does not have libnsl.so.1 by default; remove -lnsl
# RHEL9, RockyLinux9 does not have libcrypt.so.1 by default; remove -lcrypt
push @Configure, "-Dlibs=-lpthread -ldl -lm -lutil -lc";

my $arch = (uname)[4];
my @libpth = (
Expand Down

0 comments on commit 121f35d

Please sign in to comment.