[pgAdmin SVN] / trunk / pgadmin3 / configure.ac.in

Log of /trunk/pgadmin3/configure.ac.in

Parent Directory

No default branch
Bookmark a link to HEAD: (view) (download)


Revision 8068 - (view) (download) - [select for diffs]
Modified Thu Oct 8 23:12:46 2009 BST (11 months ago) by dpage
File length: 1926 byte(s)
Diff to previous 7651
Add a configure flag (--with-osxarch=[ppc|i386|x86_64]) to allow
the user to specify a single architecture to build on OS X,
instead of building all the architectures available in wxWidgets.
This allows the builder to avoid having to use
--disable-dependency-tracking, which is required for multi-arch builds.

Revision 7651 - (view) (download) - [select for diffs]
Modified Mon Mar 9 13:59:38 2009 GMT (18 months ago) by dpage
File length: 1911 byte(s)
Diff to previous 7535
Re-jigger some of the plugins code to make it more useful:

- Allow plugins to be targetted to a platform, so we can ship multi-platform config files.
- Allow path elements (BIN dir, working dir, PG bin dir, EDB bin dir etc) to be substituted into the command line and keyfile.
- Move utilities.ini into the main share directory and rename to plugins.ini.
- Allow plugins to be targetted to specific server types.
- Ensure the default plugin is currently valid before executing it.

Revision 7535 - (view) (download) - [select for diffs]
Modified Mon Jan 5 14:11:39 2009 GMT (20 months ago) by dpage
File length: 1931 byte(s)
Diff to previous 7464
Copyright update

Revision 7464 - (view) (download) - [select for diffs]
Modified Mon Sep 15 14:08:40 2008 BST (23 months, 3 weeks ago) by mha
File length: 1931 byte(s)
Diff to previous 7428
pgScript - a scripting language for PostgreSQL/pgAdmin

GSOC-project by Mickael Deloison, with only very minor changes by me.


Revision 7428 - (view) (download) - [select for diffs]
Modified Thu Aug 28 17:21:31 2008 BST (2 years ago) by dpage
File length: 1799 byte(s)
Diff to previous 7109
Remove references to pgAgent

Revision 7109 - (view) (download) - [select for diffs]
Modified Mon Mar 3 20:04:34 2008 GMT (2 years, 6 months ago) by dpage
File length: 1850 byte(s)
Diff to previous 6929
Add the ability to register external applications on
a plugins menu. Menu options can be activated based on
the current object selection, and a variety of variables
including everything needed to open a database connection
can be passed to the external utility.

Revision 6929 - (view) (download) - [select for diffs]
Modified Tue Jan 1 23:54:26 2008 GMT (2 years, 8 months ago) by dpage
File length: 1830 byte(s)
Diff to previous 6420
Copyright update

Revision 6420 - (view) (download) - [select for diffs]
Modified Fri Jul 13 10:11:18 2007 BST (3 years, 1 month ago) by dpage
File length: 1830 byte(s)
Diff to previous 6352
Prep for release

Revision 6352 - (view) (download) - [select for diffs]
Modified Mon Jun 11 14:02:43 2007 BST (3 years, 2 months ago) by dpage
File length: 1830 byte(s)
Diff to previous 6336
Add support to the debugger for capture of OUT/INOUT params from edbspl functions. This
requires that we use an EnterpriseDB libpq to work due to the protocol extensions included
for callable statement support.

To ensure this is optional, on Windows we attempt to runtime link to the extra libpq 
functions, whereas on *nix we use a configure time check to see what libpq we are
building against. Standard libpq builds will work just fine, except they cannot
catch the out params from stored procs.

Whilst we're at it, clean up some of the autoconf code that was testing functionality
of libpq.so even if we were static linking against libpq.a

Revision 6336 - (view) (download) - [select for diffs]
Modified Fri Jun 1 10:58:43 2007 BST (3 years, 3 months ago) by dpage
File length: 1830 byte(s)
Diff to previous 6302
Check the wxWidgets version during configure, per Kris Jurka

Revision 6302 - (view) (download) - [select for diffs]
Modified Thu May 17 15:48:41 2007 BST (3 years, 3 months ago) by dpage
File length: 1814 byte(s)
Diff to previous 6251
Remove bundled copies of PostgreSQL/Slony docs to make it easier to localise the rest. Instead allow the use of  local or online copies of the PostgreSQL, EnterpriseDB or Slony docs, each independently of the other. Per discussion on -hackers.

This implements the infrastructure to handle multiple documentation sources, and add code to use EnterpriseDB docs when connected to an EDB server. Configuration options are included, as well as validation/cleanup of user entered doc paths. Still to complete is the documentation for the configuration options, and the auto-discovery of local docs.

Revision 6251 - (view) (download) - [select for diffs]
Modified Tue May 1 09:04:06 2007 BST (3 years, 4 months ago) by dpage
File length: 1827 byte(s)
Diff to previous 6227
Don't install XRC files with non-debug builds. After hacking at this for some time, I'm still not entirely sure how it works as it seems it should omit them during 'make dist' as well, but it doesn't, and seems to behave exactly as it needs to. Perhaps someone with more automake/make foo than I can explain!

While we're at it, initialise a variable to silence a GCC warning.

Revision 6227 - (view) (download) - [select for diffs]
Modified Mon Apr 23 12:12:58 2007 BST (3 years, 4 months ago) by dpage
File length: 1768 byte(s)
Diff to previous 6164
Complete debugger integration

Revision 6164 - (view) (download) - [select for diffs]
Modified Wed Apr 4 13:28:32 2007 BST (3 years, 5 months ago) by dpage
File length: 1789 byte(s)
Diff to previous 6073
build a Debugger.app within the pgAdmin3.app resources directory in the 
Mac App bundle.

This does introduce one downside:

The existing complete-bundle.sh code works fine, and rewrites the paths
to the wx libraries as expected, however the debugger crashes when run.
As best I can figure, this is because although the debugger has the
correct relative paths to the libraries, some of those (wx) libraries
are interdependent, and when run by the debugger executable, the
relative paths between them are incorrect.

To resolve this until a better solution is found, I've modified the
build system such that static linking is forced when building an app
bundle. This also has the advantage of reducing the bundle size a little  :-) 



Revision 6073 - (view) (download) - [select for diffs]
Modified Fri Mar 16 10:58:49 2007 GMT (3 years, 5 months ago) by dpage
File length: 1717 byte(s)
Diff to previous 5950
Add the debugger to the build systems.

Revision 5950 - (view) (download) - [select for diffs]
Modified Tue Feb 27 15:36:20 2007 GMT (3 years, 6 months ago) by dpage
File length: 1696 byte(s)
Diff to previous 5949
Fix typo

Revision 5949 - (view) (download) - [select for diffs]
Modified Tue Feb 27 15:33:25 2007 GMT (3 years, 6 months ago) by dpage
File length: 1697 byte(s)
Diff to previous 5863
Allow install time re-branding. This allows rebranded versions of pgAdmin to be distributed without code modifications, but with references to the original pgAdmin being displayed instead. Also add support for shaped splash screens.

Revision 5863 - (view) (download) - [select for diffs]
Modified Mon Jan 15 09:17:54 2007 GMT (3 years, 7 months ago) by dpage
File length: 1676 byte(s)
Diff to previous 5784
Add support for Sun's compiler [Dhanaraj M]

Revision 5784 - (view) (download) - [select for diffs]
Modified Thu Dec 7 21:38:49 2006 GMT (3 years, 9 months ago) by dpage
File length: 1538 byte(s)
Diff to previous 5778
Add a check to see if we can (in the future) use precompiled headers with GCC.

Revision 5778 - (view) (download) - [select for diffs]
Modified Thu Dec 7 17:08:47 2006 GMT (3 years, 9 months ago) by dpage
File length: 1516 byte(s)
Diff to previous 5754
Rename src/ to pgadmin/ - if anything is gonna break things - it's this!!

Revision 5754 - (view) (download) - [select for diffs]
Modified Wed Dec 6 17:11:21 2006 GMT (3 years, 9 months ago) by dpage
File length: 1508 byte(s)
Diff to previous 5558
Move pgaevent into xtra/

Revision 5558 - (view) (download) - [select for diffs]
Modified Fri Oct 27 13:30:49 2006 BST (3 years, 10 months ago) by dpage
File length: 1516 byte(s)
Diff to previous 5303
Ensure we use a working version of libxml2.

Revision 5303 - (view) (download) - [select for diffs]
Modified Wed Aug 30 11:37:50 2006 BST (4 years ago) by dpage
File length: 1502 byte(s)
Diff to previous 5242
Require the use of wxWidgets 2.7 or above (needed for the wxAUI classes.
Use the wxAUI library to provide dockable window elements on the main window, query tool and edit grid, giving us a much more modern look and feel.

Revision 5242 - (view) (download) - [select for diffs]
Modified Tue Jul 4 10:46:39 2006 BST (4 years, 2 months ago) by dpage
File length: 1528 byte(s)
Diff to previous 5224
Make elements of the main windows dockable for maximum configurability.
Add 'scratch pads' to the Edit Grid and Query Tool windows to use when copying and pasting data back and forth.
Add a proper menu to the Edit Grid window.

Revision 5224 - (view) (download) - [select for diffs]
Modified Mon Jun 12 14:06:01 2006 BST (4 years, 2 months ago) by dpage
File length: 1502 byte(s)
Diff to previous 5126



Revision 5126 - (view) (download) - [select for diffs]
Modified Fri May 5 14:30:34 2006 BST (4 years, 4 months ago) by dpage
File length: 1522 byte(s)
Diff to previous 5076
Generate reports in XML, then use XSLT to transform them as required.

Revision 5076 - (view) (download) - [select for diffs]
Modified Thu Apr 6 14:23:30 2006 BST (4 years, 5 months ago) by dpage
File length: 1492 byte(s)
Diff to previous 5064
Add a --disable-docs configure option to prevent the installation of docs [Miha Radej]


Revision 5064 - (view) (download) - [select for diffs]
Modified Wed Mar 29 21:25:15 2006 BST (4 years, 5 months ago) by dpage
File length: 1418 byte(s)
Diff to previous 5037
Ensure a C++ compiler is actually installed per Joshua Drake

Revision 5037 - (view) (download) - [select for diffs]
Modified Wed Mar 1 09:03:06 2006 GMT (4 years, 6 months ago) by dpage
File length: 1399 byte(s)
Diff to previous 5036
OK, remove the AC_PROG_LIBTOOL as it obviously breaks things on some platforms.

Revision 5036 - (view) (download) - [select for diffs]
Modified Tue Feb 28 20:37:52 2006 GMT (4 years, 6 months ago) by dpage
File length: 1440 byte(s)
Diff to previous 5034
Make things easier for those using autoreconf.

Revision 5034 - (view) (download) - [select for diffs]
Modified Mon Feb 27 09:53:12 2006 GMT (4 years, 6 months ago) by dpage
File length: 1424 byte(s)
Diff to previous 5026
Remove macro added in error.

Revision 5026 - (view) (download) - [select for diffs]
Modified Wed Feb 22 11:51:21 2006 GMT (4 years, 6 months ago) by dpage
File length: 1439 byte(s)
Diff to previous 4991
Break out most of Makefile.am code into included makefile fragments for each directory for ease of maintenance.

Revision 4991 - (view) (download) - [select for diffs]
Modified Wed Feb 8 15:32:21 2006 GMT (4 years, 7 months ago) by dpage
File length: 1424 byte(s)
Diff to previous 4974
Add a 'Favourites' query organiser to the Query Tool. Note; this adds a dependecy on libxml2 (and iconv). [Magnus Hagander]
Re-arrange the Win32 dependencies so that iconv, libxml2 and wxwidgets are located in $PGADIR/../pgadmin3-deps/ [Dave Page]

Revision 4974 - (view) (download) - [select for diffs]
Modified Mon Jan 30 09:25:01 2006 GMT (4 years, 7 months ago) by dpage
File length: 1394 byte(s)
Diff to previous 4875
Add missing files to the Unix tarball, per Andrus - xtra/wxbuild/*, src/utils/precomp.cpp, src/main/pgAdmin3.rc

Revision 4875 - (view) (download) - [select for diffs]
Modified Fri Jan 6 21:06:46 2006 GMT (4 years, 8 months ago) by dpage
File length: 1368 byte(s)
Diff to previous 4742
Update copyright

Revision 4742 - (view) (download) - [select for diffs]
Modified Fri Nov 11 22:38:59 2005 GMT (4 years, 9 months ago) by dpage
File length: 1368 byte(s)
Diff to previous 4740
Correct version tag

Revision 4740 - (view) (download) - [select for diffs]
Added Fri Nov 11 21:35:39 2005 GMT (4 years, 9 months ago) by dpage
File length: 1363 byte(s)
Write the version number into configure.ac at bootstrap from version.h.

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

  Diffs between and
  Type of Diff should be a

Sort log by: