rename cmdlib and imagelib to fix name clashes

This commit is contained in:
Garux
2021-10-31 14:13:02 +03:00
parent b0b997e493
commit 522f6f907e
30 changed files with 31 additions and 71 deletions

View File

@@ -1,3 +0,0 @@
*.dsp -m 'COPY' -k 'b'
*.dsw -m 'COPY' -k 'b'
*.scc -m 'COPY' -k 'b'

View File

@@ -23,14 +23,13 @@
// start of shared cmdlib stuff
//
#include "cmdlib.h"
#include "commandlib.h"
#include <cstring>
#include <cstdio>
#include "string/string.h"
#include "os/path.h"
#include "container/array.h"
#if defined ( POSIX )

View File

@@ -44,36 +44,6 @@
bool Q_Exec( const char *cmd, char *cmdline, const char *execdir, bool bCreateConsole, bool waitfor );
// some easy portability crap
#define access_owner_read 0400
#define access_owner_write 0200
#define access_owner_execute 0100
#define access_owner_rw_ 0600
#define access_owner_r_x 0500
#define access_owner__wx 0300
#define access_owner_rwx 0700
#define access_group_read 0040
#define access_group_write 0020
#define access_group_execute 0010
#define access_group_rw_ 0060
#define access_group_r_x 0050
#define access_group__wx 0030
#define access_group_rwx 0070
#define access_others_read 0004
#define access_others_write 0002
#define access_others_execute 0001
#define access_others_rw_ 0006
#define access_others_r_x 0005
#define access_others__wx 0003
#define access_others_rwx 0007
#define access_rwxrwxr_x ( access_owner_rwx | access_group_rwx | access_others_r_x )
#define access_rwxrwxrwx ( access_owner_rwx | access_group_rwx | access_others_rwx )
// Q_mkdir
// returns true if succeeded in creating directory
@@ -85,7 +55,7 @@ inline bool Q_mkdir( const char* name ){
#else
#include <sys/stat.h>
inline bool Q_mkdir( const char* name ){
return mkdir( name, access_rwxrwxr_x ) != -1;
return mkdir( name, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH ) != -1; // rwxrwxr-x
}
#endif