Skip to content

Commit caee6fa

Browse files
committed
Added pkg-config script. Default install path for headers is now
$(pkgincludedir).
1 parent 393761e commit caee6fa

File tree

12 files changed

+69
-38
lines changed

12 files changed

+69
-38
lines changed

INSTALL.unix

Lines changed: 34 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software
2-
Foundation, Inc.
1+
Installation Instructions
2+
*************************
33

4-
This file is free documentation; the Free Software Foundation gives
4+
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
5+
Software Foundation, Inc.
6+
7+
This file is free documentation; the Free Software Foundation gives
58
unlimited permission to copy, distribute and modify it.
69

710
Basic Installation
811
==================
912

10-
These are generic installation instructions.
13+
These are generic installation instructions.
1114

1215
The `configure' shell script attempts to guess correct values for
1316
various system-dependent variables used during compilation. It uses
@@ -67,9 +70,9 @@ The simplest way to compile this package is:
6770
Compilers and Options
6871
=====================
6972

70-
Some systems require unusual options for compilation or linking that
71-
the `configure' script does not know about. Run `./configure --help'
72-
for details on some of the pertinent environment variables.
73+
Some systems require unusual options for compilation or linking that the
74+
`configure' script does not know about. Run `./configure --help' for
75+
details on some of the pertinent environment variables.
7376

7477
You can give `configure' initial values for configuration parameters
7578
by setting variables in the command line or in the environment. Here
@@ -82,7 +85,7 @@ is an example:
8285
Compiling For Multiple Architectures
8386
====================================
8487

85-
You can compile the package for more than one kind of computer at the
88+
You can compile the package for more than one kind of computer at the
8689
same time, by placing the object files for each architecture in their
8790
own directory. To do this, you must use a version of `make' that
8891
supports the `VPATH' variable, such as GNU `make'. `cd' to the
@@ -99,19 +102,19 @@ for another architecture.
99102
Installation Names
100103
==================
101104

102-
By default, `make install' will install the package's files in
105+
By default, `make install' will install the package's files in
103106
`/usr/local/bin', `/usr/local/man', etc. You can specify an
104107
installation prefix other than `/usr/local' by giving `configure' the
105-
option `--prefix=PATH'.
108+
option `--prefix=PREFIX'.
106109

107110
You can specify separate installation prefixes for
108111
architecture-specific files and architecture-independent files. If you
109-
give `configure' the option `--exec-prefix=PATH', the package will use
110-
PATH as the prefix for installing programs and libraries.
112+
give `configure' the option `--exec-prefix=PREFIX', the package will
113+
use PREFIX as the prefix for installing programs and libraries.
111114
Documentation and other data files will still use the regular prefix.
112115

113116
In addition, if you use an unusual directory layout you can give
114-
options like `--bindir=PATH' to specify different values for particular
117+
options like `--bindir=DIR' to specify different values for particular
115118
kinds of files. Run `configure --help' for a list of the directories
116119
you can set and what kinds of files go in them.
117120

@@ -122,7 +125,7 @@ option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
122125
Optional Features
123126
=================
124127

125-
Some packages pay attention to `--enable-FEATURE' options to
128+
Some packages pay attention to `--enable-FEATURE' options to
126129
`configure', where FEATURE indicates an optional part of the package.
127130
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
128131
is something like `gnu-as' or `x' (for the X Window System). The
@@ -137,11 +140,11 @@ you can use the `configure' options `--x-includes=DIR' and
137140
Specifying the System Type
138141
==========================
139142

140-
There may be some features `configure' cannot figure out
141-
automatically, but needs to determine by the type of machine the package
142-
will run on. Usually, assuming the package is built to be run on the
143-
_same_ architectures, `configure' can figure that out, but if it prints
144-
a message saying it cannot guess the machine type, give it the
143+
There may be some features `configure' cannot figure out automatically,
144+
but needs to determine by the type of machine the package will run on.
145+
Usually, assuming the package is built to be run on the _same_
146+
architectures, `configure' can figure that out, but if it prints a
147+
message saying it cannot guess the machine type, give it the
145148
`--build=TYPE' option. TYPE can either be a short name for the system
146149
type, such as `sun4', or a canonical name which has the form:
147150

@@ -167,9 +170,9 @@ eventually be run) with `--host=TYPE'.
167170
Sharing Defaults
168171
================
169172

170-
If you want to set default values for `configure' scripts to share,
171-
you can create a site shell script called `config.site' that gives
172-
default values for variables like `CC', `cache_file', and `prefix'.
173+
If you want to set default values for `configure' scripts to share, you
174+
can create a site shell script called `config.site' that gives default
175+
values for variables like `CC', `cache_file', and `prefix'.
173176
`configure' looks for `PREFIX/share/config.site' if it exists, then
174177
`PREFIX/etc/config.site' if it exists. Or, you can set the
175178
`CONFIG_SITE' environment variable to the location of the site script.
@@ -178,22 +181,26 @@ A warning: not all `configure' scripts look for a site script.
178181
Defining Variables
179182
==================
180183

181-
Variables not defined in a site shell script can be set in the
184+
Variables not defined in a site shell script can be set in the
182185
environment passed to `configure'. However, some packages may run
183186
configure again during the build, and the customized values of these
184187
variables may be lost. In order to avoid this problem, you should set
185188
them in the `configure' command line, using `VAR=value'. For example:
186189

187190
./configure CC=/usr/local2/bin/gcc
188191

189-
will cause the specified gcc to be used as the C compiler (unless it is
190-
overridden in the site shell script).
192+
causes the specified `gcc' to be used as the C compiler (unless it is
193+
overridden in the site shell script). Here is a another example:
194+
195+
/bin/bash ./configure CONFIG_SHELL=/bin/bash
196+
197+
Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent
198+
configuration-related scripts to be executed by `/bin/bash'.
191199

192200
`configure' Invocation
193201
======================
194202

195-
`configure' recognizes the following options to control how it
196-
operates.
203+
`configure' recognizes the following options to control how it operates.
197204

198205
`--help'
199206
`-h'

Makefile.am

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
SUBDIRS = src doc
22

33
EXTRA_DIST = INSTALL.unix INSTALL.win32 INSTALL.dos Makefile.wat Makefile.bt \
4-
libbinio.qpg binio.spec binio_mdk.spec depcomp
4+
libbinio.qpg binio.spec binio_mdk.spec depcomp libbinio.pc.in
55

66
AUTOMAKE_OPTIONS = dist-bzip2
7+
8+
pkgconfigdir = $(libdir)/pkgconfig
9+
pkgconfig_DATA = libbinio.pc

NEWS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
This is a brief overview of user-visible changes in libbinio.
22

3+
Changes for version 1.4:
4+
------------------------
5+
- Support for pkg-config on UNIX systems.
6+
- Moved default header installation directory to $pkgincludedir
7+
(aka $includedir/libbinio) to prevent filename clashes with other
8+
libraries.
9+
310
Changes for version 1.3:
411
------------------------
512
- Fixed a small interface bug.

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
libbinio - Binary I/O stream class library
2-
Copyright (C) 2002 - 2004 Simon Peter <[email protected]>
2+
Copyright (C) 2002 - 2005 Simon Peter <[email protected]>
33

44
Website: http://libbinio.sourceforge.net
55

binio.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%define name binio
2-
%define version 1.3
2+
%define version 1.4
33
%define release 1
44

55
Summary: Binary I/O stream class library

binio_mdk.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%define name binio
2-
%define version 1.3
2+
%define version 1.4
33
%define release 1mdk
44
%define libname %mklibname %name 1
55

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
AC_INIT(binio,1.3,[[email protected]],libbinio)
1+
AC_INIT(binio,1.4,[[email protected]],libbinio)
22
AC_CONFIG_SRCDIR(src/binio.cpp)
3-
AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile src/binio.h])
3+
AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile src/binio.h libbinio.pc])
44
AM_INIT_AUTOMAKE
55
AM_MAINTAINER_MODE
66
AM_PROG_LIBTOOL

libbinio.pc.in

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
prefix=@prefix@
2+
exec_prefix=@exec_prefix@
3+
libdir=@libdir@
4+
includedir=@includedir@
5+
6+
Name: @PACKAGE@
7+
Description: Binary I/O stream class library
8+
URL: http://libbinio.sourceforge.net
9+
Version: @VERSION@
10+
Libs: -L${libdir} -lbinio
11+
Libs.private: -lm
12+
CFlags: -I${includedir}/@PACKAGE@

libbinio.qpg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<QPM:ProductDescriptionEmbedURL/>
7676
</QPM:ProductDescription>
7777
<QPM:ReleaseDescription>
78-
<QPM:ReleaseVersion>1.3</QPM:ReleaseVersion>
78+
<QPM:ReleaseVersion>1.4</QPM:ReleaseVersion>
7979
<QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency>
8080
<QPM:ReleaseStability>Stable</QPM:ReleaseStability>
8181
<QPM:ReleaseNoteMinor/>

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ libbinio_la_SOURCES = binio.cpp binfile.cpp binwrap.cpp binstr.cpp
44

55
libbinio_la_LDFLAGS = -version-info 1:0:0
66

7-
include_HEADERS = binio.h binfile.h binwrap.h binstr.h
7+
pkginclude_HEADERS = binio.h binfile.h binwrap.h binstr.h
88

99
EXTRA_DIST = Makefile.bt libbinio.dsp vc6inst.bat

0 commit comments

Comments
 (0)