fix: add deprecated shared objects to linux64 libraries#4
Open
Nyefan wants to merge 1 commit intoktully:mainfrom
Open
fix: add deprecated shared objects to linux64 libraries#4Nyefan wants to merge 1 commit intoktully:mainfrom
Nyefan wants to merge 1 commit intoktully:mainfrom
Conversation
NOTE: these are downloaded from ubuntu jammy distributions of `libgconf-2-4` and `libdbus-glib-1-2` and then extracted from the .deb files. This process can (and should) be replicated as follows: ```shell curl -o libdbus.deb http://launchpadlibrarian.net/562456394/libdbus-glib-1-2_0.112-1build1_amd64.deb ar x libdbus.deb data.tar.zst tar -xOf data.tar.zst ./usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.5 > libdbus-glib-1.so.2 curl -o libgconf.deb http://launchpadlibrarian.net/544875279/libgconf-2-4_3.2.6-7ubuntu2_amd64.deb ar x libgconf.deb data.tar.xz tar -xOf data.tar.xz ./usr/lib/x86_64-linux-gnu/libgconf-2.so.4.1.5 > libgconf-2.so.4 rm data.tar.* *.deb mv libdbus-glib-1.so.2 lib/native/linux64/ mv libgconf-2.so.4 lib/native/linux64/ ```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
NOTE: these are downloaded from ubuntu jammy distributions of
libgconf-2-4andlibdbus-glib-1-2and then extracted from the .deb files. This process can be replicated as follows: