@@ -19,14 +19,12 @@ class OpenDocumentCoreConan(ConanFile):
1919 "fPIC" : [True , False ],
2020 "with_pdf2htmlEX" : [True , False ],
2121 "with_wvWare" : [True , False ],
22- "with_tmpfile_hack" : [True , False ],
2322 }
2423 default_options = {
2524 "shared" : False ,
2625 "fPIC" : True ,
2726 "with_pdf2htmlEX" : True ,
2827 "with_wvWare" : True ,
29- "with_tmpfile_hack" : True ,
3028 }
3129
3230 exports_sources = ["cli/*" , "cmake/*" , "resources/dist/*" , "src/*" , "CMakeLists.txt" ]
@@ -37,9 +35,6 @@ def config_options(self):
3735 del self .options .with_pdf2htmlEX
3836 del self .options .with_wvWare
3937
40- if self .settings .os != "Android" :
41- del self .options .with_tmpfile_hack
42-
4338 def requirements (self ):
4439 self .requires ("pugixml/1.14" )
4540 self .requires ("cryptopp/8.9.0" )
@@ -55,9 +50,6 @@ def requirements(self):
5550 self .requires ("cpp-httplib/0.16.3" )
5651 self .requires ("argon2/20190702-odr" )
5752
58- if self .options .get_safe ("with_tmpfile_hack" , False ):
59- self .requires ("tmpfile/3.0.6" )
60-
6153 def build_requirements (self ):
6254 self .test_requires ("gtest/1.14.0" )
6355
0 commit comments