mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Remove some redundancy (Symbian/Qt). Symbian has cstdint now.
This commit is contained in:
parent
e444e21a8a
commit
946deda4b3
@ -86,7 +86,7 @@ inline void AtomicStoreRelease(volatile u32& dest, u32 value) {
|
||||
#ifdef BLACKBERRY
|
||||
atomic_set(&dest, value);
|
||||
#elif defined(__SYMBIAN32__)
|
||||
__e32_atomic_store_rel32(&dest, value);
|
||||
__e32_atomic_store_rel32(&dest, value);
|
||||
#else
|
||||
__sync_lock_test_and_set(&dest, value); // TODO: Wrong! This function has acquire semantics.
|
||||
#endif
|
||||
|
@ -48,8 +48,7 @@ contains(DEFINES, USE_FFMPEG): LIBS += -lavformat -lavcodec -lavutil -lswresampl
|
||||
|
||||
win32 {
|
||||
#Use a fixed base-address under windows
|
||||
QMAKE_LFLAGS += /FIXED /BASE:"0x00400000"
|
||||
QMAKE_LFLAGS += /DYNAMICBASE:NO
|
||||
QMAKE_LFLAGS += /FIXED /BASE:"0x00400000" /DYNAMICBASE:NO
|
||||
LIBS += -lwinmm -lws2_32 -lShell32 -lAdvapi32
|
||||
contains(QMAKE_TARGET.arch, x86_64): LIBS += $$files($$P/dx9sdk/Lib/x64/*.lib)
|
||||
else: LIBS += $$files($$P/dx9sdk/Lib/x86/*.lib)
|
||||
@ -69,7 +68,7 @@ macx|linux {
|
||||
}
|
||||
}
|
||||
}
|
||||
linux:!android: LIBS += -ldl -lrt -lz
|
||||
linux:!android: LIBS += -ldl -lrt
|
||||
macx: LIBS += -liconv
|
||||
qnx: LIBS += -lscreen
|
||||
symbian: LIBS += -lremconcoreapi -lremconinterfacebase
|
||||
|
@ -20,9 +20,7 @@
|
||||
#undef max
|
||||
|
||||
#include <cstddef> //size_t
|
||||
#ifdef __SYMBIAN32__
|
||||
#include <boost/cstdint.hpp>
|
||||
#elif defined(IOS)
|
||||
#if defined(IOS)
|
||||
#include <stdint.h>
|
||||
#else
|
||||
#include <cstdint> //uint32_t
|
||||
|
Loading…
Reference in New Issue
Block a user