1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
corelib/ncbilcl.beos | 2 +-
corelib/ncbilcl.hlx | 2 +-
corelib/ncbilcl.lnx | 4 ++--
corelib/ncbilcl.plx | 2 +-
corelib/ncbilcl.qnx | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/corelib/ncbilcl.beos b/corelib/ncbilcl.beos
index f720567..fe6346f 100644
--- a/corelib/ncbilcl.beos
+++ b/corelib/ncbilcl.beos
@@ -77,7 +77,7 @@
#endif
/* good for the EGCS C/C++ compiler on Linux(e.g. putenv(), tempnam() proto) */
-#define _SVID_SOURCE 1
+#define _DEFAULT_SOURCE 1
/*----------------------------------------------------------------------*/
diff --git a/corelib/ncbilcl.hlx b/corelib/ncbilcl.hlx
index 1492f93..0e98fb6 100644
--- a/corelib/ncbilcl.hlx
+++ b/corelib/ncbilcl.hlx
@@ -67,7 +67,7 @@
#endif
/* good for the EGCS C/C++ compiler on Linux(e.g. putenv(), tempnam() proto) */
-/*#define _SVID_SOURCE 1 */
+/*#define _DEFAULT_SOURCE 1 */
/*----------------------------------------------------------------------*/
diff --git a/corelib/ncbilcl.lnx b/corelib/ncbilcl.lnx
index 46e2978..b3256b3 100644
--- a/corelib/ncbilcl.lnx
+++ b/corelib/ncbilcl.lnx
@@ -65,7 +65,7 @@
* fixes for new RedHat6.2
*
* Revision 6.3 2000/02/10 16:36:32 vakatov
-* Added _SVID_SOURCE
+* Added _DEFAULT_SOURCE
*
* Revision 6.2 1999/07/12 05:50:49 vakatov
* Avoid redefinition of #_REENTRANT
@@ -141,7 +141,7 @@
#endif
/* good for the EGCS C/C++ compiler on Linux(e.g. putenv(), tempnam() proto) */
-#define _SVID_SOURCE 1
+#define _DEFAULT_SOURCE 1
#define _GNU_SOURCE 1
/*----------------------------------------------------------------------*/
diff --git a/corelib/ncbilcl.plx b/corelib/ncbilcl.plx
index bf5824c..f2b53e1 100644
--- a/corelib/ncbilcl.plx
+++ b/corelib/ncbilcl.plx
@@ -68,7 +68,7 @@
#endif
/* good for the EGCS C/C++ compiler on Linux(e.g. putenv(), tempnam() proto) */
-/*#define _SVID_SOURCE 1 */
+/*#define _DEFAULT_SOURCE 1 */
/*----------------------------------------------------------------------*/
diff --git a/corelib/ncbilcl.qnx b/corelib/ncbilcl.qnx
index c3d1f0a..4b27bd1 100644
--- a/corelib/ncbilcl.qnx
+++ b/corelib/ncbilcl.qnx
@@ -72,7 +72,7 @@
#endif
/* good for the EGCS C/C++ compiler on Linux(e.g. putenv(), tempnam() proto) */
-#define _SVID_SOURCE 1
+#define _DEFAULT_SOURCE 1
|