|
From: Allin C. <cot...@wf...> - 2014-11-15 03:38:55
|
On Fri, 14 Nov 2014, sfeam wrote: > On Friday, 14 November 2014 08:00:26 PM Allin Cottrell wrote: >> Any ideas what's wrong here? After doing, in a directory containing >> the gnuplot CVS sources, > > Since term/lua/gnuplot-tikz.help is a constructed file that is > created by the build process, it should not be necessary to keep > a copy in the repository. Nevertheless there was one there and > it was out of date. So I removed it. > > It is supposed to be recreated if the configure script finds lua. > Do you not have lua on your machine? Did ./configure not find it? I do have a lua binary, /usr/bin/lua, but no lua "dev" files. (This is on Fedora 20.) Apparently the configure script did not look for a lua binary: $ grep lua config.log configure:11433: $PKG_CONFIG --exists --print-errors "lua" Package lua was not found in the pkg-config search path. Perhaps you should add the directory containing `lua.pc' No package 'lua' found configure:11451: $PKG_CONFIG --exists --print-errors "lua" Package lua was not found in the pkg-config search path. Perhaps you should add the directory containing `lua.pc' No package 'lua' found No package 'lua' found configure:11494: $PKG_CONFIG --exists --print-errors "lua5.1" Package lua5.1 was not found in the pkg-config search path. Perhaps you should add the directory containing `lua5.1.pc' No package 'lua5.1' found configure:11512: $PKG_CONFIG --exists --print-errors "lua5.1" Package lua5.1 was not found in the pkg-config search path. Perhaps you should add the directory containing `lua5.1.pc' No package 'lua5.1' found No package 'lua5.1' found configure:11641: WARNING: Could not find support for lua using pkg-config. configure:11650: checking for library containing luaL_openlibs /home/allin/cfiles/gpcvs/gnuplot/conftest.c:130: undefined reference to `luaL_openlibs' | char luaL_openlibs (); | return luaL_openlibs (); configure:11681: gcc -o conftest -g -O2 conftest.c -llua -ldl -lm >&5 /usr/bin/ld: cannot find -llua | char luaL_openlibs (); | return luaL_openlibs (); configure:11681: gcc -o conftest -g -O2 conftest.c -llua5.1 -ldl -lm >&5 /usr/bin/ld: cannot find -llua5.1 | char luaL_openlibs (); | return luaL_openlibs (); configure:16314: result: lua/TikZ terminal: no configure:16523: result: TeX *.sty for lua/tikz terminal: no ac_cv_search_luaL_openlibs=no Allin Cottrell |