View | Details | Raw Unified | Return to issue 104230
Collapse All | Expand All

(-)DataAccess.xcu (-15 / +25 lines)
Lines 1-16 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<oor:node xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="DataAccess" oor:package="org.openoffice.Office">
2
<oor:component-data oor:name="Drivers" oor:package="org.openoffice.Office.DataAccess" xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3
 <node oor:name="UserDefinedDriverSettings">
3
  <node oor:name="Installed">
4
       <node oor:name="Postgresql Driver" oor:op="replace">
4
    <node oor:name="sdbc:postgresql:*" oor:op="replace">
5
	     <prop oor:name="DriverPageDisplayName">
5
      <prop oor:name="Driver">
6
		   <value>Postgresql-SDBC Driver V PQ_SDBC_MAJOR.PQ_SDBC_MINOR.PQ_SDBC_MICRO</value>
6
        <value>com.sun.star.comp.sdbc.postgresql.Driver</value>
7
	     </prop>
7
      </prop>
8
	     <prop oor:name="DriverTypeDisplayName">
8
      <prop oor:name="DriverTypeDisplayName" oor:type="xs:string">
9
		   <value>postgresql</value>
9
        <value xml:lang="en-US">Postgre SQL</value>
10
	     </prop>
10
      </prop>
11
	     <prop oor:name="DriverDsnPrefix">
11
    </node>
12
		   <value>sdbc:postgresql:</value>
12
	 <node oor:name="UserDefinedDriverSettings">
13
	     </prop>
13
	       <node oor:name="Postgresql Driver" oor:op="replace">
14
       </node>
14
		     <prop oor:name="DriverPageDisplayName">
15
 </node>
15
			   <value>Postgresql-SDBC Driver V PQ_SDBC_MAJOR.PQ_SDBC_MINOR.PQ_SDBC_MICRO</value>
16
</oor:node>
16
		     </prop>
17
		     <prop oor:name="DriverTypeDisplayName">
18
			   <value>postgresql</value>
19
		     </prop>
20
		     <prop oor:name="DriverDsnPrefix">
21
			   <value>sdbc:postgresql:</value>
22
		     </prop>
23
	       </node>
24
	 </node>
25
  </node>
26
</oor:component-data>
(-)makefile.mk (+4 lines)
Lines 121-128 Link Here
121
.IF "$(GUI)"=="WNT"
121
.IF "$(GUI)"=="WNT"
122
PQLIB=libpq.lib wsock32.lib advapi32.lib
122
PQLIB=libpq.lib wsock32.lib advapi32.lib
123
.ELSE
123
.ELSE
124
.IF "$(OS)" == "MACOSX"
125
PQLIB=-lpq
126
.ELSE
124
PQLIB=-lpq -lcrypt
127
PQLIB=-lpq -lcrypt
125
.ENDIF
128
.ENDIF
129
.ENDIF
126
SHL2TARGET=postgresql-sdbc-impl.uno
130
SHL2TARGET=postgresql-sdbc-impl.uno
127
LIB2TARGET=$(SLB)$/$(SHL2TARGET).lib
131
LIB2TARGET=$(SLB)$/$(SHL2TARGET).lib
128
LIB2OBJFILES= \
132
LIB2OBJFILES= \

Return to issue 104230