You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had to install a load of additional libraries I didn't have before I could get run configure, which I had to do with extra options: ./configure --with-freetype2-includes=/usr/include/freetype2 before it ran with no warnings, then I ran make, but when I run pdftojson it says command not found.
Am I missing something? Those are the only instructions I can see.
andrew@andrew-Latitude-E7450 ~/repos/pdftojson $ sudo make
cd goo; make
make[1]: Entering directory '/home/andrew/repos/pdftojson/goo'
make[1]: Nothing to be donefor'all'.
make[1]: Leaving directory '/home/andrew/repos/pdftojson/goo'cd fofi; make
make[1]: Entering directory '/home/andrew/repos/pdftojson/fofi'
make[1]: Nothing to be donefor'all'.
make[1]: Leaving directory '/home/andrew/repos/pdftojson/fofi'cd splash; make
make[1]: Entering directory '/home/andrew/repos/pdftojson/splash'
make[1]: Nothing to be donefor'all'.
make[1]: Leaving directory '/home/andrew/repos/pdftojson/splash'cd xpdf; make all
make[1]: Entering directory '/home/andrew/repos/pdftojson/xpdf'
make[1]: Nothing to be donefor'all'.
make[1]: Leaving directory '/home/andrew/repos/pdftojson/xpdf'
andrew@andrew-Latitude-E7450 ~/repos/pdftojson $ pdftojson
pdftojson: command not found
andrew@andrew-Latitude-E7450 ~/repos/pdftojson $
The text was updated successfully, but these errors were encountered:
Also, the README.md file shows how you might need to run configure when your external libraries are not installed on the right path:
./configure --with-libpng-library=/usr/local/Cellar/libpng/1.6.16/lib/ --with-libpng-includes=/usr/local/Cellar/libpng/1.6.16/include/ --with-freetype2-library=/usr/local/lib/ --with-freetype2-includes=/usr/local/include/freetype2/
I had to install a load of additional libraries I didn't have before I could get run configure, which I had to do with extra options:
./configure --with-freetype2-includes=/usr/include/freetype2
before it ran with no warnings, then I ranmake
, but when I runpdftojson
it says command not found.Am I missing something? Those are the only instructions I can see.
The text was updated successfully, but these errors were encountered: