View | Details | Raw Unified | Return to bug 59781
Collapse All | Expand All

(-)xgobi/files/patch-Imakefile (-5 / +62 lines)
Lines 1-11 Link Here
1
--- Imakefile.orig	Sat Oct 12 12:26:37 2002
1
--- Imakefile.orig	Sat Nov 29 11:40:11 2003
2
+++ Imakefile	Sat Oct 12 12:28:33 2002
2
+++ Imakefile	Sat Nov 29 11:42:31 2003
3
@@ -13,7 +13,7 @@
3
@@ -1,22 +1,23 @@
4
-/**/#
5
-/**/#	This is an Imakefile for the XGobi program.  The only change that
6
-/**/#	might need to be made is for the XGOBID variable.
7
-/**/#
8
-
9
-/**/# Remove the comment delimeters on the second to next line to
10
-/**/# compile for CORBA.
11
-/**/# Requires some Omegahat code - see README.corba.
12
-/**/#define USE_CORBA 1
13
-
14
-/**/#  Set XGOBID to the directory containing 
15
-/**/#  the xgobi directories src, help, ps, etc.
16
+/*
17
+** This is an Imakefile for the XGobi program.  The only change that
18
+** might need to be made is for the XGOBID variable.
19
+**
20
+** Remove the comment delimeters on the fourth to next line to
21
+** compile for CORBA.
22
+** Requires some Omegahat code - see README.corba.
23
+*/
24
+/*#define USE_CORBA 1 */
25
+/*
26
+** Set XGOBID to the directory containing 
27
+** the xgobi directories src, help, ps, etc.
28
+*/
4
          XGOBID = $(PWD)/..
29
          XGOBID = $(PWD)/..
5
 
30
 
6
 /**/# Use the gnu C compiler
31
-/**/# Use the gnu C compiler
7
-            CC = gcc
32
-            CC = gcc
33
+/* Use the gnu C compiler */
8
+            CC ?= gcc
34
+            CC ?= gcc
9
      CCOPTIONS = -ansi -w
35
      CCOPTIONS = -ansi -w
10
 
36
 
11
 /**/# Or use the C compiler on your system, and whatever options it requires.
37
-/**/# Or use the C compiler on your system, and whatever options it requires.
38
+/* Or use the C compiler on your system, and whatever options it requires.*/
39
 #             CC = cc
40
 #      CCOPTIONS = -xansi -n32
41
 
42
@@ -29,17 +30,19 @@
43
 #endif   /* End of USE_CORBA */
44
 
45
 
46
-/**/#
47
-/**/# RPC: Remote Procedure Calls
48
-/**/#
49
+/*
50
+** RPC: Remote Procedure Calls
51
+*/
52
+
53
+/* If you plan to use RPC, uncomment this #define
54
+** RPC is the define for any kind of RPC
55
+*/
56
 
57
-/**/# If you plan to use RPC, uncomment this #define
58
-/**/# RPC is the define for any kind of RPC
59
 /* #define RPC */
60
 
61
-/**/# Special RPCs
62
+/* Special RPCs */
63
 /* #define DCE_RPC */
64
-/**/# If you plan to use XPLORE, uncomment this #define
65
+/* If you plan to use XPLORE, uncomment this #define */
66
 /* #define XPLORE */
67
 
68
 #ifdef HPArchitecture

Return to bug 59781