File: ltdl_win.c

package info (click to toggle)
arts 1.5.9-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 8,436 kB
  • ctags: 9,848
  • sloc: ansic: 44,670; cpp: 33,776; sh: 10,486; perl: 3,470; makefile: 372; yacc: 347; lex: 160
file content (101 lines) | stat: -rw-r--r-- 2,859 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* This file is part of the KDE libraries
   Copyright (C) 2004 Jaroslaw Staniek <js@iidea.pl>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License version 2 as published by the Free Software Foundation.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/

#include <string.h>
#include <stdio.h>
#include <assert.h>
#include <malloc.h>
#include <stdlib.h>

// .so --> .dll name mappings:
// name suffixes *so.[0-9] are removed
// "lib" prefix (if exists) is removed from the filename
void win32_mapSo2Dll( char *path )
{
    int len;
    char *p, *from;
    assert(path);
    len=strlen(path);
    if (len<=3)
        return;
    // (optionally) remove .[0-9] suffix
    p = path+len-2;
    if (p[0]=='.' && p[1]>='0' && p[1]<='9') {
        *p = 0;
        len -= 2;
    }
    // remove "lib"
    p = strrchr( path, '\\' );
    if (p && len>=3 && strncmp(p,"\\lib", 4)==0) {
        p++;
        from = p + 3;
        for (; *from; p++, from++) {
           *p = *from;
        }
        *p = 0;
        len -= 3;
    }
    //.so -> .dll
    if (len>3 && strncmp(path+len-3,".so",3)==0) {
#ifndef QT_NO_DEBUG //debug library version
        strcpy(path+len-3, "_d");
        len += 2;
#endif
        strcpy(path+len-3, ".dll");
    }
    fprintf(stderr,"win32_mapSo2Dll: '%s' )\n", path );
}

#define MAX_PATH 0x1ff
static char win32_mapDir_KDEDIR[MAX_PATH] = "";

// paths name mappings
// when mapping is performed, frees old name at *dir and allocates new path for *dir 
void win32_mapDir( char **dir )
{
    static const char* WIN32_LIBDIR_FROM = "/opt/kde3/lib/kde3";
    static const char* WIN32_LIBDIR_TO = "c:/kde/lib/kde3";
    char *e;
//TODO........
    if (!*win32_mapDir_KDEDIR) {
      e = getenv("KDEDIR");
      if (e)
        strncpy( win32_mapDir_KDEDIR, e, MAX_PATH );
    }
    assert(dir && *dir && win32_mapDir_KDEDIR && *win32_mapDir_KDEDIR);
    // /opt/kde3/lib/kde3 -> <letter>:/kde/lib/kde3

    if (strcmp(*dir, WIN32_LIBDIR_FROM)==0) {
        free(*dir);
        *dir=strdup(WIN32_LIBDIR_TO);
		if (win32_mapDir_KDEDIR && *win32_mapDir_KDEDIR) {
			(*dir)[0]=win32_mapDir_KDEDIR[0]; //copy drive letter
		}
    }
}

// converts slashes to backslashes for path
void win32_backslashify( char *path )
{
  char *p = path;
  while (*p) {
    if (*p=='/')
      *p = '\\';
    p++;
  }
}