fdupes icon indicating copy to clipboard operation
fdupes copied to clipboard

Configure cannot find pcre2_match_32

Open sailnfool opened this issue 4 years ago • 3 comments

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

sailnfool avatar Aug 24 '21 07:08 sailnfool

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 .

adrianlopezroche avatar Aug 24 '21 16:08 adrianlopezroche

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 .

sailnfool avatar Aug 24 '21 20:08 sailnfool

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

xavetar avatar Jan 19 '23 12:01 xavetar