adrianlopezroche / fdupes

FDUPES is a program for identifying or deleting duplicate files residing within specified directories.
2.42k stars 186 forks source link

Configure cannot find pcre2_match_32 #158

Open sailnfool opened 2 years ago

sailnfool commented 2 years ago

checking for ncursesw... yes checking for library containing pcre2_match_32... no configure: error: pcre2 library not found

adrianlopezroche commented 2 years ago

You need to install the PCRE2 development library provided by your distribution or download it from www.pcre.org.

On Tue, Aug 24, 2021, 3:25 AM Robert Novak @.***> wrote:

checking for ncursesw... yes checking for library containing pcre2_match_32... no configure: error: pcre2 library not found

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/adrianlopezroche/fdupes/issues/158, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABPQT7JENJEVFB5NPMWY23TT6NCQFANCNFSM5CWGWGJQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email .

sailnfool commented 2 years ago

I downloaded and installed from source for both ncurses (found) and pcre2 (not found)

On Tue, Aug 24, 2021, 9:35 AM Adrian Lopez @.***> wrote:

You need to install the PCRE2 development library provided by your distribution or download it from www.pcre.org.

On Tue, Aug 24, 2021, 3:25 AM Robert Novak @.***> wrote:

checking for ncursesw... yes checking for library containing pcre2_match_32... no configure: error: pcre2 library not found

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/adrianlopezroche/fdupes/issues/158, or unsubscribe < https://github.com/notifications/unsubscribe-auth/ABPQT7JENJEVFB5NPMWY23TT6NCQFANCNFSM5CWGWGJQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/adrianlopezroche/fdupes/issues/158#issuecomment-904797858, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABVDTKOGTST2MES6NHDCIS3T6PC5DANCNFSM5CWGWGJQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email .

xavetar commented 1 year ago

I downloaded and installed from source for both ncurses (found) and pcre2 (not found)

I found solution. When open terminal in folder and configure pcre2, just enter:

MacOS: ./configure --enable-pcre2-32 && make -j$(sysctl -n hw.ncpu) && sudo make install *Unix: ./configure --enable-pcre2-32 && make -j$(nproc) && sudo make install