Skip to content

Commit

Permalink
gnuplot/6.0.1-GCCcore-13.2.0: fix underfined reference to symbol libi…
Browse files Browse the repository at this point in the history
…conv_open
  • Loading branch information
SimonPinches committed Dec 6, 2024
1 parent 4b2a6ca commit 643a24b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = """Portable interactive, function plotting utility"""

toolchain = {'name': 'GCCcore', 'version': '13.2.0'}

source_urls = [('https://sourceforge.net/projects/gnuplot/files/gnuplot/%(version)s', 'download')]
source_urls = [('https://sourceforge.net/projects/%(name)s/files/%(name)s/%(version)s', 'download')]
sources = [SOURCE_TAR_GZ]
checksums = ['e85a660c1a2a1808ff24f7e69981ffcbac66a45c9dcf711b65610b26ea71379a']

Expand Down Expand Up @@ -36,6 +36,9 @@ preconfigopts = 'autoreconf && '
# make sure that right Lua library is used (bypassing pkg-config)
preconfigopts += 'export LUA_CFLAGS="-I$EBROOTLUA/include" && export LUA_LIBS="$EBROOTLUA/lib/liblua.a" && '

# fix undefined reference to symbol 'libiconv_open'
preconfigopts += ' export LDFLAGS="-Wl,--copy-dt-needed-entries" && '

configopts = '--with-qt=qt6 --without-latex --disable-wxwidgets'

buildopts = 'LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries" '
Expand Down

0 comments on commit 643a24b

Please sign in to comment.