Thread: executable_name.patch

executable_name.patch

From
"Adam H. Pendleton"
Date:
Fixes autoconf to produce lowercase executable name.  Please apply.

ahp
diff -urN pgadmin3/configure.ac pgadmin3.new/configure.ac
--- pgadmin3/configure.ac    2003-06-27 10:55:56.000000000 -0400
+++ pgadmin3.new/configure.ac    2003-07-07 10:55:29.000000000 -0400
@@ -1,7 +1,7 @@
 AC_PREREQ(2.57)
 AC_REVISION($Revision: 1.12 $)
 AC_COPYRIGHT(Copyright 2002 - 2003 The pgAdmin3 Development Team)
-AC_INIT(pgAdmin3, 0.1.1, pgadmin-support@postgresql.org, pgadmin3)
+AC_INIT(pgadmin3, 0.1.1, pgadmin-support@postgresql.org)
 AC_CONFIG_AUX_DIR(config)
 AC_CONFIG_SRCDIR([src/pgAdmin3.cpp])
 AC_CONFIG_HEADER([config.h])
diff -urN pgadmin3/src/Makefile.am pgadmin3.new/src/Makefile.am
--- pgadmin3/src/Makefile.am    2003-07-07 05:10:08.000000000 -0400
+++ pgadmin3.new/src/Makefile.am    2003-07-07 10:58:28.000000000 -0400
@@ -3,9 +3,9 @@
 # This software is released under the Artistic Licence
 #
 # Makefile - Makefile for *nix systems
-bin_PROGRAMS = pgAdmin3
+bin_PROGRAMS = pgadmin3

-pgAdmin3_SOURCES = pgAdmin3.cpp db/pgConn.cpp db/pgSet.cpp \
+pgadmin3_SOURCES = pgAdmin3.cpp db/pgConn.cpp db/pgSet.cpp \
 schema/pgAggregate.cpp schema/pgCast.cpp \
 schema/pgCheck.cpp schema/pgCollection.cpp \
 schema/pgColumn.cpp schema/pgConstraints.cpp \

Re: executable_name.patch

From
"Dave Page"
Date:
Thanks, applied.

> -----Original Message-----
> From: Adam H. Pendleton [mailto:fmonkey@fmonkey.net]
> Sent: 07 July 2003 15:53
> To: pgadmin-hackers@postgresql.org
> Cc: Dave Page
> Subject: executable_name.patch
>
>
> Fixes autoconf to produce lowercase executable name.  Please apply.
>
> ahp
>