Skip to content

Commit

Permalink
Removed REPLACE_POSIX_FILE_FUNCTIONS from conf files.
Browse files Browse the repository at this point in the history
  • Loading branch information
aldenml committed Jan 2, 2016
1 parent 47dde21 commit 3966d10
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion swig/config/android-arm-config.jam
Expand Up @@ -11,5 +11,4 @@ using gcc : arm : $(TOOLCHAINS_ROOT)/android-arm/bin/arm-linux-androideabi-g++ :
<cxxflags>-fno-strict-aliasing
<cxxflags>-std=c++11
<cxxflags>-static
<cxxflags>-DREPLACE_POSIX_FILE_FUNCTIONS
;
1 change: 0 additions & 1 deletion swig/config/android-arm64-config.jam
Expand Up @@ -10,5 +10,4 @@ using gcc : arm64 : $(TOOLCHAINS_ROOT)/android-arm64/bin/aarch64-linux-android-g
<cxxflags>-fno-strict-aliasing
<cxxflags>-std=c++11
<cxxflags>-static
<cxxflags>-DREPLACE_POSIX_FILE_FUNCTIONS
;
1 change: 0 additions & 1 deletion swig/config/android-x86-config.jam
Expand Up @@ -10,5 +10,4 @@ using gcc : x86 : $(TOOLCHAINS_ROOT)/android-x86/bin/i686-linux-android-g++ :
<cxxflags>-fno-strict-aliasing
<cxxflags>-std=c++11
<cxxflags>-static
<cxxflags>-DREPLACE_POSIX_FILE_FUNCTIONS
;
1 change: 0 additions & 1 deletion swig/config/android-x86_64-config.jam
Expand Up @@ -10,5 +10,4 @@ using gcc : x86_64 : $(TOOLCHAINS_ROOT)/android-x86_64/bin/x86_64-linux-android-
<cxxflags>-fno-strict-aliasing
<cxxflags>-std=c++11
<cxxflags>-static
<cxxflags>-DREPLACE_POSIX_FILE_FUNCTIONS
;
1 change: 0 additions & 1 deletion swig/config/linux-x86-config.jam
Expand Up @@ -11,7 +11,6 @@ using gcc : x86 : g++ :
<cxxflags>-m32
<cxxflags>-std=c++11
<cxxflags>-static
<cxxflags>-DREPLACE_POSIX_FILE_FUNCTIONS
<cxxflags>-I$(DEVELOPMENT_ROOT)/openssl/x86/include
<linkflags>-L$(DEVELOPMENT_ROOT)/openssl/x86/lib
<linkflags>-m32
Expand Down
1 change: 0 additions & 1 deletion swig/config/linux-x86_64-config.jam
Expand Up @@ -9,7 +9,6 @@ using gcc : x86_64 : g++ :
<cxxflags>-fPIC
<cxxflags>-std=c++11
<cxxflags>-static
<cxxflags>-DREPLACE_POSIX_FILE_FUNCTIONS
<cxxflags>-I$(DEVELOPMENT_ROOT)/openssl/x86_64/include
<linkflags>-L$(DEVELOPMENT_ROOT)/openssl/x86_64/lib
;
1 change: 0 additions & 1 deletion swig/config/macosx-native-x86_64-config.jam
Expand Up @@ -2,7 +2,6 @@ using darwin : x86_64 : clang++ :
<cflags>-std=c11
<cxxflags>-std=c++11
<cxxflags>-stdlib=libc++
<cxxflags>-DREPLACE_POSIX_FILE_FUNCTIONS
<cxxflags>-I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-migrator/sdk/MacOSX.sdk/usr/include
<cxxflags>-Wno-deprecated-declarations
<cxxflags>-Wno-reserved-id-macro
Expand Down
1 change: 0 additions & 1 deletion swig/config/macosx-x86_64-config.jam
Expand Up @@ -7,6 +7,5 @@ using darwin : x86_64 : $(TOOLCHAINS_ROOT)/macosx-x86_64/bin/x86_64-apple-darwin
<cflags>-std=c11
<cxxflags>-std=c++11
<cxxflags>-stdlib=libc++
<cxxflags>-DREPLACE_POSIX_FILE_FUNCTIONS
<cxxflags>-mmacosx-version-min=10.9
;

2 comments on commit 3966d10

@gubatron
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

was that flag related to SAF?

@aldenml
Copy link
Collaborator Author

@aldenml aldenml commented on 3966d10 Jan 2, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In part, it was the way to replace the posix function inside libtorrent (PR discarded) and used later in android

Please sign in to comment.