Commit Graph

8 Commits

Author SHA1 Message Date
John Cupitt 366e7e3a5e add gobject to Requires: line
vips C and C++ programs can link directly against things in gobject
without appearing to, for example:

	a = VIPS_OBJECT( b );

the macro will expand to include a g_type_check_instance_is_a(). So we
have to have gobject-2.0 in the link line of things like:

	g++ -g -Wall hello8.cc `pkg-config vips-cpp --cflags --libs`

see also

	https://github.com/jcupitt/libvips/issues/196
2014-12-24 10:10:14 +00:00
John Cupitt 90b78fe9c6 remove -pthread from libs
we should get it from cflags, I think
2014-12-01 13:10:02 +00:00
John Cupitt 44122ea880 more .pc changes
see https://github.com/jcupitt/libvips/issues/196
2014-12-01 12:38:49 +00:00
John Cupitt dbc404ed66 fix nip2 build on win
we have to statically link on win if we are using cfitsio ... make sure
-ljpeg gets into the link line, it doesn't have a .pc

https://github.com/jcupitt/libvips/issues/196
2014-11-29 14:32:08 +00:00
John Cupitt a651f4b1b4 add Libs.private to help static link with mingw
see https://github.com/jcupitt/libvips/issues/196
2014-11-29 11:27:36 +00:00
John Cupitt b9aef076d4 don't make the .pc libs list ourselves
see https://github.com/jcupitt/libvips/issues/196

thanks bgilbert
2014-11-29 09:56:59 +00:00
John Cupitt 56f5955a24 vipsCC required the wrong version of vips
vipsCC.pc.in was asking for vips-7.30.pc, but of course we now call it
vips.pc

thanks Alessandro
2012-10-18 11:16:42 +01:00
John Cupitt 5778dfac1a remove the version numbers from the .pc files
we used to have minor version numbers in the pkg-confiog files, eg:

pkg-config vips-7.28 --cflags

The idea was to make working with multiple installed versions (something
I do a lot at least) easier. But it was also annoying and made upgrading
harder for downstream packages. And the benefits were very marginal.
2012-07-20 10:22:43 +01:00