summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-1.0/files/patch-config_office+configure.in
blob: 94d4b1cf08dc216cb789006016b8520bfab1c103 (plain) (blame)
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
82
83
84
85
--- configure.in.orig	Thu Jan 16 13:42:46 2003
+++ configure.in	Sat Jan 25 18:24:08 2003
@@ -89,6 +89,12 @@
  
                           Usage: --enable-check-only=yes
 ],,)
+AC_ARG_ENABLE(linuxjdk,
+[  --enable-linuxjdk         Use this option option if you like to use
+                          the linux-jdk instead of the native jdk.
+                          
+                          Usage: --enable-linuxjdk
+],,)
 AC_ARG_ENABLE(macos9,
 [  --enable-macos9         Use this option option if you want to generate a
                           macos9 environment on macosx.
@@ -352,10 +358,7 @@
    if test "$COMPATH" != "NO_GCC"; then
       AC_MSG_RESULT([checked (gcc $_gcc_version)])
    fi
-
-dnl Set the include paths
-   _gcc_include_path=`$CC -print-search-dirs | grep instal |$AWK '{ print \$2 }'`/include 
-fi  
+fi
 
 dnl ===================================================================
 dnl Search all the common names for GNU make
@@ -553,14 +556,27 @@
 fi
 
 dnl ===================================================================
-dnl Set the gxx include directories
+dnl Set the gcc/gxx include directories
 dnl ===================================================================
+if test "$_os" = "FreeBSD" && test "$CC" != "cc"; then
+if test "$GXX" = "yes"; then
+	if test -n "$enable_gcc3"; then
+		_gccincname1="g++-v3"
+	else
+		_gccincname1="g++-3"
+	fi
+	_gcc_include_path=".."
+	_gxx_include_path="$_gcc_include_path/$_gccincname1"
+fi
+else
 if test "$GXX" = "yes"; then
-   _gxx_include_path=`echo "#include <cstring>" | $CXX -E -xc++ - | $SED -n '/.*1*"\(.*\)\/cstring".*/s//\1/p' | head -1`
+   _gcc_include_path=`$CC -print-search-dirs | grep instal |$AWK '{ print \$2 }'`/include
+   _gxx_include_path=`echo "#include <cstring>" | $CXX -E -xc++ - \
+	| $SED -n '/.*1*"\(.*\)\/cstring".*/s//\1/p' | head -1`
 dnl This is the original code...
-dnl _gxx_include_path=`$CXX -print-search-dirs | grep instal |$AWK '{ print \$2 }'`/include 
+dnl _gxx_include_path=`$CXX -print-search-dirs | grep instal |$AWK '{ print \$2 }'`/include
+fi
 fi
-
 
 dnl ===================================================================
 dnl Extra checking for the SUN OS compiler
@@ -1222,12 +1238,16 @@
 else
    with_lang=","$with_lang","
 fi
-
 if test -n "$enable_debug"; then
    ENABLE_DEBUG="TRUE"
 else
    ENABLE_DEBUG="FALSE"
 fi
+if test -n "$enable_linuxjdk"; then
+   USE_LINUXJDK="TRUE"
+else
+   USE_LINUXJDK="FALSE"
+fi
 
 dnl ===================================================================
 dnl Bits to substitute into set_soenv.in
@@ -1272,6 +1292,7 @@
 AC_SUBST(PTHREAD_CFLAGS)
 AC_SUBST(PTHREAD_LIBS)
 AC_SUBST(ENABLE_DEBUG)
+AC_SUBST(USE_LINUXJDK)
 
 AC_OUTPUT([set_soenv])