diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-11 12:32:11 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-11 13:22:37 +0300 |
commit | c61891c096725cde7241ece415bf299ddb9e725f (patch) | |
tree | 20b8f8c8a594512e6219bf6a32920af98ab45ef4 /include/sal | |
parent | 521cf8fe4d953b8af72c666403f965d624dbfa99 (diff) |
[API CHANGE]: Drop SAL_PRGEXTENSION from <sal/config.h>
It is unused in LO source code.
It was not really clearly defined what it meant and what it could be used
for. Its value was ".exe" for Windows and ".bin" for other platforms. But we
do have a "soffice.bin" on Windows, too, corresponding exactly to the
"soffice.bin" on Linux. On the other hand, on OS X we don't have any
"soffice.bin", just a "soffice".
Change-Id: Iceee19cc8768c5aaaeeb9bba34b9cde50073498b
Diffstat (limited to 'include/sal')
-rw-r--r-- | include/sal/config.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/sal/config.h b/include/sal/config.h index ee230fe49d69..bd2b833fae89 100644 --- a/include/sal/config.h +++ b/include/sal/config.h @@ -29,7 +29,6 @@ #ifdef WIN32 #define SAL_W32 #define SAL_DLLEXTENSION ".dll" -#define SAL_PRGEXTENSION ".exe" #define SAL_PATHSEPARATOR ';' #define SAL_PATHDELIMITER '\\' #define SAL_CONFIGFILE( name ) name ".ini" @@ -57,7 +56,6 @@ #define SAL_UNX #define SAL_DLLEXTENSION ".so" #define SAL_DLLPREFIX "lib" -#define SAL_PRGEXTENSION ".bin" #define SAL_PATHSEPARATOR ':' #define SAL_PATHDELIMITER '/' #define SAL_CONFIGFILE( name ) name "rc" @@ -67,7 +65,6 @@ #define SAL_UNX #define SAL_DLLEXTENSION ".dylib" #define SAL_DLLPREFIX "lib" -#define SAL_PRGEXTENSION ".bin" #define SAL_PATHSEPARATOR ':' #define SAL_PATHDELIMITER '/' #define SAL_CONFIGFILE( name ) name "rc" @@ -80,10 +77,6 @@ */ #define SAL_DLLEXTENSION ".dylib" #define SAL_DLLPREFIX "lib" -/* This is fairly pointless too, an iOS app consists of a single - * executable (plus data files). - */ -#define SAL_PRGEXTENSION ".bin" #define SAL_PATHSEPARATOR ':' #define SAL_PATHDELIMITER '/' #define SAL_CONFIGFILE( name ) name "rc" |