Kyle Guinn
Kyle Guinn
I've added a mention of CFLAGS and a couple other variables to the installation steps (latest commit), rebased on your latest commit, and fixed a couple issues with gitversion.c/.o.
@nrnrnr Ping Also while I have your attention (and completely unrelated), do you have the NJ Machine Code Toolkit sources in a repo that could be hosted on Github? I'd...
@kwk Cherry-picking 18f5b6a3804f59aa5f0f50ab0196e262d6b8c168 would cover most of those. If you review commit-by-commit instead of looking at the total difference (as Github likes to present everything) I don't think there is...
@kwk Thanks for taking on the $@ changes, I've been busy over the past few weeks. Planning on breaking up the rest into manageable chunks as I get a chance....
What version of pkgconfig do you have? The PKG_CHECK_MODULES macro generates a default error message if you don't provide one and it can't find the package. Mine looks like this:...
@cpviolator What platform are you on? Are you building arpack-ng as a shared lib or a static lib? In general, static libs don't record their own dependency info. If your...
I just noticed "libparpack.a" in your screenshot. Looks like you've got static libs.
I think autoconf isn't expanding the PKG_CHECK_MODULES macro for some reason, and just places it directly into `configure`. Are there any errors/warnings during `./bootstrap`?
> A script by Kyle Guinn builds 2.12 for Slackware 15.0. That script applies a patch to 2.12 makefiles before running `make install`. The patch lets installed files be dropped...
> In the following line, > > ``` > (cd $(LIBSRC) && $(MAKE) "ICONT=$(ICONT)" "ICONC=$(ICONC)" LIB=$(LIB) BIN=$(BIN) install) > ``` > > why are the Icon assignments quoted but the...