mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-10-31 18:47:02 -04:00 
			
		
		
		
	Ideally someone needs to go through all the code and check that nothing breaks because of this macro, but, I dont have that kind of time
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * launcher.c
 | |
|  * Copyright (C) 2014 Kovid Goyal <kovid at kovidgoyal.net>
 | |
|  *
 | |
|  * Distributed under terms of the GPL3 license.
 | |
|  */
 | |
| 
 | |
| #define PY_SSIZE_T_CLEAN
 | |
| #include <stdio.h>
 | |
| #include <string.h>
 | |
| #include <errno.h>
 | |
| #include <libgen.h>
 | |
| #include <stdlib.h>
 | |
| #include <unistd.h>
 | |
| 
 | |
| #define PATHLEN 1023
 | |
| 
 | |
| #define SET(x, y) if (setenv(x, y, 1) != 0) { fprintf(stderr, "Failed to set environment variable with error: %s\n", strerror(errno)); return 1; }
 | |
| 
 | |
| int main(int argc, char **argv) {
 | |
|     static char buf[PATHLEN+1] = {0}, lib[PATHLEN+1] = {0}, base[PATHLEN+1] = {0}, exe[PATHLEN+1] = {0}, *ldp = NULL;
 | |
| 
 | |
|     if (readlink("/proc/self/exe", buf, PATHLEN) == -1) {
 | |
|         fprintf(stderr, "Failed to read path of executable with error: %s\n", strerror(errno));
 | |
|         return 1;
 | |
|     }
 | |
|     strncpy(lib, buf, PATHLEN);
 | |
|     strncpy(base, dirname(lib), PATHLEN);
 | |
|     snprintf(exe, PATHLEN, "%s/bin/%s", base, basename(buf));
 | |
|     memset(lib, 0, PATHLEN);
 | |
|     snprintf(lib, PATHLEN, "%s/lib", base);
 | |
| 
 | |
|     SET("CALIBRE_QT_PREFIX", base)
 | |
| 
 | |
|     memset(buf, 0, PATHLEN);
 | |
|     ldp = getenv("LD_LIBRARY_PATH");
 | |
|     if (ldp == NULL) strncpy(buf, lib, PATHLEN);
 | |
|     else snprintf(buf, PATHLEN, "%s:%s", lib, ldp);
 | |
|     SET("LD_LIBRARY_PATH", buf)
 | |
| 
 | |
|     argv[0] = exe;
 | |
|     if (execv(exe, argv) == -1) {
 | |
|         fprintf(stderr, "Failed to execute binary: %s with error: %s\n", exe, strerror(errno));
 | |
|         return 1;
 | |
|     }
 | |
| 
 | |
|     return 0;
 | |
| }
 |