1
+ with "config/wolfssl_config.gpr";
2
+
1
3
library project WolfSSL is
2
4
3
5
for Library_Name use "wolfssl";
4
- -- for Library_Version use Project'Library_Name & ".so";
5
- type OS_Kind is ("Windows", "Linux_Or_Mac");
6
-
7
- OS : OS_Kind := external ("OS", "Linux_Or_Mac");
8
6
9
7
for Languages use ("C", "Ada");
10
8
@@ -15,12 +13,13 @@ library project WolfSSL is
15
13
16
14
-- Don't build the tls client or server application.
17
15
-- They are not needed in order to build the library.
18
- for Excluded_Source_Files use ("tls_client_main.adb",
19
- "tls_client.ads",
20
- "tls_client.adb",
21
- "tls_server_main.adb",
22
- "tls_server.ads",
23
- "tls_server.adb");
16
+ for Excluded_Source_Files use
17
+ ("tls_client_main.adb",
18
+ "tls_client.ads",
19
+ "tls_client.adb",
20
+ "tls_server_main.adb",
21
+ "tls_server.ads",
22
+ "tls_server.adb");
24
23
25
24
for Object_Dir use "obj";
26
25
for Library_Dir use "lib";
@@ -34,12 +33,19 @@ library project WolfSSL is
34
33
for Spec_Suffix ("C") use ".h";
35
34
end Naming;
36
35
37
- package Builder is
38
- for Global_Configuration_Pragmas use "gnat.adc";
39
- end Builder;
36
+ C_Compiler_Config := ();
37
+
38
+ case Wolfssl_Config.STATIC_PSK is
39
+ when "True" =>
40
+ C_Compiler_Config :=
41
+ ("-DWOLFSSL_STATIC_PSK" -- Enable the static PSK cipher support
42
+ );
43
+ when others =>
44
+ C_Compiler_Config := ();
45
+ end case;
40
46
41
47
package Compiler is
42
- for Switches ("C") use
48
+ for Switches ("C") use C_Compiler_Config &
43
49
("-DWOLFSSL_USER_SETTINGS", -- Use the user_settings.h file.
44
50
"-Wno-pragmas",
45
51
"-Wall",
@@ -81,16 +87,5 @@ library project WolfSSL is
81
87
package Binder is
82
88
for Switches ("Ada") use ("-Es"); -- To include stack traces.
83
89
end Binder;
84
-
85
- -- case OS is
86
- -- when "Windows" =>
87
- -- for Library_Options use ("-lm", -- To include the math library (used by WolfSSL).
88
- -- "-lcrypt32"); -- Needed on Windows.
89
- -- when "Linux_Or_Mac" =>
90
- -- for Library_Options use ("-lm"); -- To include the math library (used by WolfSSL).
91
- -- end case;
92
- --
93
- -- -- Put user options in front, for options like --as-needed.
94
- -- for Leading_Library_Options use External_As_List ("LDFLAGS", " ");
95
90
96
91
end WolfSSl;
0 commit comments