Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
041d2e1c
Commit
041d2e1c
authored
Apr 06, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
confiure cleanup
parent
64514626
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
src/configure
src/configure
+6
-6
src/configure.in
src/configure.in
+6
-6
No files found.
src/configure
View file @
041d2e1c
...
@@ -17,17 +17,17 @@ ac_help="$ac_help
...
@@ -17,17 +17,17 @@ ac_help="$ac_help
ac_help
=
"
$ac_help
ac_help
=
"
$ac_help
--with-libraries=DIR site library directories for tk/tcl, etc in DIR"
--with-libraries=DIR site library directories for tk/tcl, etc in DIR"
ac_help
=
"
$ac_help
ac_help
=
"
$ac_help
--enable-locale enable locale support "
--enable-locale enable locale support "
ac_help
=
"
$ac_help
ac_help
=
"
$ac_help
--enable-recode enable cyrillic recode support "
--enable-recode enable cyrillic recode support "
ac_help
=
"
$ac_help
ac_help
=
"
$ac_help
--with-pgport=<portnum> change default startup port "
--with-pgport=<portnum> change default startup port "
ac_help
=
"
$ac_help
ac_help
=
"
$ac_help
--with-tcl use tcl "
--with-tcl use tcl "
ac_help
=
"
$ac_help
ac_help
=
"
$ac_help
--with-perl use perl "
--with-perl use perl "
ac_help
=
"
$ac_help
ac_help
=
"
$ac_help
--enable-cassert enable assertion checks (debugging) "
--enable-cassert enable assertion checks (debugging) "
ac_help
=
"
$ac_help
ac_help
=
"
$ac_help
--with-x use the X Window System"
--with-x use the X Window System"
...
...
src/configure.in
View file @
041d2e1c
...
@@ -191,7 +191,7 @@ dnl It defaults to disabled
...
@@ -191,7 +191,7 @@ dnl It defaults to disabled
AC_MSG_CHECKING(setting USE_LOCALE)
AC_MSG_CHECKING(setting USE_LOCALE)
AC_ARG_ENABLE(
AC_ARG_ENABLE(
locale,
locale,
[
--enable-locale enable locale support ],
[ --enable-locale enable locale support ],
AC_DEFINE(USE_LOCALE) AC_MSG_RESULT(enabled),
AC_DEFINE(USE_LOCALE) AC_MSG_RESULT(enabled),
AC_MSG_RESULT(disabled)
AC_MSG_RESULT(disabled)
)
)
...
@@ -204,7 +204,7 @@ dnl It defaults to disabled
...
@@ -204,7 +204,7 @@ dnl It defaults to disabled
AC_MSG_CHECKING(setting CYR_RECODE)
AC_MSG_CHECKING(setting CYR_RECODE)
AC_ARG_ENABLE(
AC_ARG_ENABLE(
recode,
recode,
[
--enable-recode enable cyrillic recode support ],
[ --enable-recode enable cyrillic recode support ],
AC_DEFINE(CYR_RECODE) AC_MSG_RESULT(enabled),
AC_DEFINE(CYR_RECODE) AC_MSG_RESULT(enabled),
AC_MSG_RESULT(disabled)
AC_MSG_RESULT(disabled)
)
)
...
@@ -214,7 +214,7 @@ dnl we over-ride it with --with-pgport=port then we bypass this piece
...
@@ -214,7 +214,7 @@ dnl we over-ride it with --with-pgport=port then we bypass this piece
AC_MSG_CHECKING(setting DEF_PGPORT)
AC_MSG_CHECKING(setting DEF_PGPORT)
AC_ARG_WITH(
AC_ARG_WITH(
pgport,
pgport,
[
--with-pgport=<portnum> change default startup port ],
[ --with-pgport=<portnum> change default startup port ],
AC_DEFINE_UNQUOTED(DEF_PGPORT, "${withval}") AC_MSG_RESULT($with_pgport),
AC_DEFINE_UNQUOTED(DEF_PGPORT, "${withval}") AC_MSG_RESULT($with_pgport),
AC_DEFINE_UNQUOTED(DEF_PGPORT, "5432") AC_MSG_RESULT(5432)
AC_DEFINE_UNQUOTED(DEF_PGPORT, "5432") AC_MSG_RESULT(5432)
)
)
...
@@ -223,7 +223,7 @@ dnl We exclude tcl support unless we override it with --with-tcl
...
@@ -223,7 +223,7 @@ dnl We exclude tcl support unless we override it with --with-tcl
AC_MSG_CHECKING(setting USE_TCL)
AC_MSG_CHECKING(setting USE_TCL)
AC_ARG_WITH(
AC_ARG_WITH(
tcl,
tcl,
[
--with-tcl use tcl ],
[ --with-tcl use tcl ],
USE_TCL=true; AC_MSG_RESULT(enabled),
USE_TCL=true; AC_MSG_RESULT(enabled),
USE_TCL=false; AC_MSG_RESULT(disabled)
USE_TCL=false; AC_MSG_RESULT(disabled)
)
)
...
@@ -255,7 +255,7 @@ dnl We exclude perl support unless we override it with --with-perl
...
@@ -255,7 +255,7 @@ dnl We exclude perl support unless we override it with --with-perl
AC_MSG_CHECKING(setting USE_PERL)
AC_MSG_CHECKING(setting USE_PERL)
AC_ARG_WITH(
AC_ARG_WITH(
perl,
perl,
[
--with-perl use perl ],
[ --with-perl use perl ],
USE_PERL=true; AC_MSG_RESULT(enabled),
USE_PERL=true; AC_MSG_RESULT(enabled),
USE_PERL=false; AC_MSG_RESULT(disabled)
USE_PERL=false; AC_MSG_RESULT(disabled)
)
)
...
@@ -279,7 +279,7 @@ dnl We need some explanatory text here.
...
@@ -279,7 +279,7 @@ dnl We need some explanatory text here.
AC_MSG_CHECKING(setting ASSERT CHECKING)
AC_MSG_CHECKING(setting ASSERT CHECKING)
AC_ARG_ENABLE(
AC_ARG_ENABLE(
cassert,
cassert,
[
--enable-cassert enable assertion checks (debugging) ],
[ --enable-cassert enable assertion checks (debugging) ],
AC_DEFINE(NO_ASSERT_CHECKING) AC_MSG_RESULT(enabled),
AC_DEFINE(NO_ASSERT_CHECKING) AC_MSG_RESULT(enabled),
AC_MSG_RESULT(disabled)
AC_MSG_RESULT(disabled)
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment