blob: d116d3e50651dc66e858cf44f37e74de340b5b1a (
plain)
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
|
Submitted By: Randy McMurchy <randy_at_linuxfromscratch_dot_org>
Date: 2005-09-21
Initial Package Version: 3.0.20
Upstream Status: Not submitted (it is not an upstream Samba issue)
Origin: Randy McMurchy
Description: Fixes an issue if you have Heimdal installed as
Heimdal uses reserved C++ words and the Samba headers
now look for these conflicts. This patch comments out
the check for C++ reserved words. Heimdal is aware of
the issue
$LastChangedBy: randy $
$Date: 2005/11/17 12:32:28 $
--- samba-3.0.20-orig/source/include/includes.h 2005-07-28 13:19:49.000000000 +0000
+++ samba-3.0.20/source/include/includes.h 2005-09-04 13:45:01.000000000 +0000
@@ -25,6 +25,7 @@
#include "config.h"
#endif
+/*
#ifndef __cplusplus
#define class #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
#define private #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
@@ -36,6 +37,7 @@
#define delete #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
#define friend #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
#endif
+*/
#include "local.h"
|