diff options
| author | Rex Dieter <rdieter@gmail.com> | 2011-01-13 19:36:21 +0000 |
|---|---|---|
| committer | Rex Dieter <rdieter@gmail.com> | 2011-01-13 19:36:21 +0000 |
| commit | 5f1e13e77032e2bad20a5f06aa0e93c8b4a8fdf4 (patch) | |
| tree | e6435a6a4ed287f4e2bc9001c81201bc19163194 | |
| parent | d2d6e1fd6ff9a09631cb7c7353cbdfb74f1ccc4e (diff) | |
adjust autotools pkg-config support to match
| -rw-r--r-- | CHANGES | 1 | ||||
| -rw-r--r-- | Makefile.am | 4 | ||||
| -rw-r--r-- | libopenjpeg1.pc.in (renamed from libopenjpeg.pc.in) | 2 |
3 files changed, 4 insertions, 3 deletions
@@ -7,6 +7,7 @@ What's New for OpenJPEG January 13, 2001 + [rdieter] add pkg-config support to cmake +! [rdieter] adjust autotools pkg-config support to match January 9, 2011 - [antonin] removed forgotten debug info in imagetopnm(). diff --git a/Makefile.am b/Makefile.am index 5805b7fe..26e1df0d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,7 +9,7 @@ clean-local: distclean-local: clean-local -pkgconf_dir = /usr/lib/pkgconfig +pkgconf_dir = $(libdir)/pkgconfig install-data-hook: @echo "" @@ -20,7 +20,7 @@ install-data-hook: @echo "Installing: libopenjpeg1.pc $(pkgconf_dir)" @echo "" @$(INSTALL) -d $(pkgconf_dir) - @cp libopenjpeg.pc $(pkgconf_dir)/libopenjpeg1.pc + @cp libopenjpeg1.pc $(pkgconf_dir)/libopenjpeg1.pc @(cd $(pkgconf_dir) && $(RM) libopenjpeg.pc && \ $(LN_S) libopenjpeg1.pc libopenjpeg.pc) diff --git a/libopenjpeg.pc.in b/libopenjpeg1.pc.in index e75e2bd4..83959217 100644 --- a/libopenjpeg.pc.in +++ b/libopenjpeg1.pc.in @@ -5,7 +5,7 @@ includedir=@includedir@ Name: openjpeg Description: JPEG2000 files library -URL: http://code.google.com/p/openjpeg/ +URL: http://www.openjpeg.org/ Version: @VERSION@ Libs: -L${libdir} -lopenjpeg Cflags: -I${includedir} |
