sample gobject.pc.in file - What do the "@"s mean?

2003-02-13 Thread TomF
I don't understand the sample gobject.pc.in file in http://developer.gnome.org/dotplan/porting/ar01s05.html#configure.in-changes. What do the "@"s mean in following lines: prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ __

Re: sample gobject.pc.in file - What do the "@"s mean?

2003-02-13 Thread Valdis . Kletnieks
On Thu, 13 Feb 2003 11:19:10 PST, TomF <[EMAIL PROTECTED]> said: > What do the "@"s mean in following lines: > > prefix=@prefix@ That's so a 'sed' script can do something like: s%@prefix@%/usr/local% and leave 'prefix=/usr/local'. Without the '@', you'd end up with a line that said "/usr/loc

Re: sample gobject.pc.in file - What do the "@"s mean?

2003-02-13 Thread Havoc Pennington
On Thu, Feb 13, 2003 at 02:26:47PM -0500, [EMAIL PROTECTED] wrote: > On Thu, 13 Feb 2003 11:19:10 PST, TomF <[EMAIL PROTECTED]> said: > > > What do the "@"s mean in following lines: > > > > prefix=@prefix@ > > That's so a 'sed' script can do something like: > > s%@prefix@%/usr/local% > > and

Re: sample gobject.pc.in file - What do the "@"s mean?

2003-02-13 Thread TomF
On Thu, 13 Feb 2003 17:13:48 -0500 Havoc Pennington <[EMAIL PROTECTED]> wrote: > On Thu, Feb 13, 2003 at 02:26:47PM -0500, [EMAIL PROTECTED] > wrote: > > On Thu, 13 Feb 2003 11:19:10 PST, TomF <[EMAIL PROTECTED]> said: > > > > > What do the "@"s mean in following lines: > > > > > > prefix=@pref

Re: sample gobject.pc.in file - What do the "@"s mean?

2003-02-14 Thread Sven Neumann
Hi, TomF <[EMAIL PROTECTED]> writes: > I am going to download the source for some of the gnome2 packages that > have *.pc files to see if I can figure out what it is in configure.in > that builds *.pc from *.pc.in. all files that appear in AC_OUTPUT() in configure.in will be generated from the

Re: sample gobject.pc.in file - What do the "@"s mean?

2003-02-14 Thread Roger Leigh
Sven Neumann <[EMAIL PROTECTED]> writes: > TomF <[EMAIL PROTECTED]> writes: > > > I am going to download the source for some of the gnome2 packages that > > have *.pc files to see if I can figure out what it is in configure.in > > that builds *.pc from *.pc.in. > > all files that appear in AC_