annotate intl/relocatable.h @ 2087:bc47a2129067 trunk

[svn] - update these files
author nenolod
date Mon, 11 Dec 2006 04:30:50 -0800
parents 705d4c089fce
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
1 /* Provide relocatable packages.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
2 Copyright (C) 2003 Free Software Foundation, Inc.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
3 Written by Bruno Haible <bruno@clisp.org>, 2003.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
4
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5 This program is free software; you can redistribute it and/or modify it
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 under the terms of the GNU Library General Public License as published
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 by the Free Software Foundation; either version 2, or (at your option)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8 any later version.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 Library General Public License for more details.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
14
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 You should have received a copy of the GNU Library General Public
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16 License along with this program; if not, write to the Free Software
1459
705d4c089fce [svn] Fix postal code.
chainsaw
parents: 1458
diff changeset
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
18 USA. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
19
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
20 #ifndef _RELOCATABLE_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
21 #define _RELOCATABLE_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
22
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
23 /* This can be enabled through the configure --enable-relocatable option. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
24 #if ENABLE_RELOCATABLE
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
25
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
26 /* When building a DLL, we must export some functions. Note that because
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
27 this is a private .h file, we don't need to use __declspec(dllimport)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
28 in any case. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
29 #if defined _MSC_VER && BUILDING_DLL
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
30 # define RELOCATABLE_DLL_EXPORTED __declspec(dllexport)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
31 #else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
32 # define RELOCATABLE_DLL_EXPORTED
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
33 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
34
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
35 /* Sets the original and the current installation prefix of the package.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
36 Relocation simply replaces a pathname starting with the original prefix
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
37 by the corresponding pathname with the current prefix instead. Both
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
38 prefixes should be directory names without trailing slash (i.e. use ""
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
39 instead of "/"). */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
40 extern RELOCATABLE_DLL_EXPORTED void
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
41 set_relocation_prefix (const char *orig_prefix,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
42 const char *curr_prefix);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
43
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
44 /* Returns the pathname, relocated according to the current installation
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
45 directory. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
46 extern const char * relocate (const char *pathname);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
47
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
48 /* Memory management: relocate() leaks memory, because it has to construct
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
49 a fresh pathname. If this is a problem because your program calls
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
50 relocate() frequently, think about caching the result. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
51
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
52 /* Convenience function:
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
53 Computes the current installation prefix, based on the original
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
54 installation prefix, the original installation directory of a particular
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
55 file, and the current pathname of this file. Returns NULL upon failure. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
56 extern const char * compute_curr_prefix (const char *orig_installprefix,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
57 const char *orig_installdir,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
58 const char *curr_pathname);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
59
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
60 #else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
61
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
62 /* By default, we use the hardwired pathnames. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
63 #define relocate(pathname) (pathname)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
64
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
65 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
66
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
67 #endif /* _RELOCATABLE_H */