diff options
| author | Tim Niemueller <timn@fedoraproject.org> | 2009-06-11 22:31:56 +0000 |
|---|---|---|
| committer | Tim Niemueller <timn@fedoraproject.org> | 2009-06-11 22:31:56 +0000 |
| commit | 258382c44f39d1e0fbcae1d451be15968b7104aa (patch) | |
| tree | 8eef6eb3a12068ffe74e70646e4e4190307fbf79 | |
| parent | e12aeb2571fd8bf825cbbeb8e6eaca1b5f98b7ea (diff) | |
Link liblua.so with -lm (math lib), fixes rhbz #499238lua-5_1_4-2_fc9
| -rw-r--r-- | lua.spec | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,6 @@ Name: lua Version: 5.1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Powerful light-weight programming language Group: Development/Languages License: MIT @@ -53,7 +53,7 @@ sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool # hack so that only /usr/bin/lua gets linked with readline as it is the # only one which needs this and otherwise we get License troubles -make %{?_smp_mflags} LIBS="-ldl" luac_LDADD="liblua.la -lm -ldl" +make %{?_smp_mflags} LIBS="-lm -ldl" luac_LDADD="liblua.la -lm -ldl" # also remove readline from lua.pc sed -i 's/-lreadline -lncurses //g' etc/lua.pc @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Thu Jun 11 2009 Tim Niemueller <tim@niemueller.de> - 5.1.4-2 +- Link liblua.so with -lm (math lib), fixes rhbz #499238 + * Wed Sep 03 2008 Tim Niemueller <tim@niemueller.de> - 5.1.4-1 - New upstream release 5.1.4 |
