Re: JDBC build patches

Поиск
Список
Период
Сортировка
От Peter Mount
Тема Re: JDBC build patches
Дата
Msg-id 5.0.2.1.0.20010312154020.02150850@mail.retep.org.uk
обсуждение исходный текст
Ответ на JDBC build patches  (Peter Eisentraut <peter_e@gmx.net>)
Ответы Re: JDBC build patches  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-jdbc
At 23:42 09/03/01 +0100, Peter Eisentraut wrote:
>These are the follow-up patches to Peter Mount's recent Java build
>improvements.
>
>* implement 'make uninstall' for the java directories

What's the difference between uninstall and clean?

>* pick up the version information from Makefile.global

Just need to add a could of -D parameters to the Makefile in the jdbc
directory.

ie:
         ant -Dmajor=8 -Dminor=2

that would set the version to be 8.2

>* honour the default port as specified to configure

Hmm, not a good idea. The driver should be as globally useable (part of
write once run anywhere), so this would be pretty disasterous.

So far our standard has been to use 5432 if no port is supplied.


>* allow building outside the source tree
>(This doesn't actually work, because Ant always puts the build dir
>relative to the source dir, but at least the whole thing will proceed
>smoothly when the rest of the tree builds this way.)

You can by passing the base dir in the ant command line using -D

ie:

ant -Ddest=/tmp/dest -Djars=/tmp/jars

would build unti /tmp/dest and put the jars under /tmp/jars

Peter


В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Peter Mount
Дата:
Сообщение: Re: DatabaseMetaData and ResultSetMetaData
Следующее
От: Peter Mount
Дата:
Сообщение: Re: getTables is this right?