Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 041d2e1

Browse files
committed
confiure cleanup
1 parent 6451462 commit 041d2e1

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/configure

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ ac_help="$ac_help
1717
ac_help="$ac_help
1818
--with-libraries=DIR site library directories for tk/tcl, etc in DIR"
1919
ac_help="$ac_help
20-
--enable-locale enable locale support "
20+
--enable-locale enable locale support "
2121
ac_help="$ac_help
22-
--enable-recode enable cyrillic recode support "
22+
--enable-recode enable cyrillic recode support "
2323
ac_help="$ac_help
24-
--with-pgport=<portnum> change default startup port "
24+
--with-pgport=<portnum> change default startup port "
2525
ac_help="$ac_help
26-
--with-tcl use tcl "
26+
--with-tcl use tcl "
2727
ac_help="$ac_help
28-
--with-perl use perl "
28+
--with-perl use perl "
2929
ac_help="$ac_help
30-
--enable-cassert enable assertion checks (debugging) "
30+
--enable-cassert enable assertion checks (debugging) "
3131
ac_help="$ac_help
3232
--with-x use the X Window System"
3333

src/configure.in

+6-6
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ dnl It defaults to disabled
191191
AC_MSG_CHECKING(setting USE_LOCALE)
192192
AC_ARG_ENABLE(
193193
locale,
194-
[ --enable-locale enable locale support ],
194+
[ --enable-locale enable locale support ],
195195
AC_DEFINE(USE_LOCALE) AC_MSG_RESULT(enabled),
196196
AC_MSG_RESULT(disabled)
197197
)
@@ -204,7 +204,7 @@ dnl It defaults to disabled
204204
AC_MSG_CHECKING(setting CYR_RECODE)
205205
AC_ARG_ENABLE(
206206
recode,
207-
[ --enable-recode enable cyrillic recode support ],
207+
[ --enable-recode enable cyrillic recode support ],
208208
AC_DEFINE(CYR_RECODE) AC_MSG_RESULT(enabled),
209209
AC_MSG_RESULT(disabled)
210210
)
@@ -214,7 +214,7 @@ dnl we over-ride it with --with-pgport=port then we bypass this piece
214214
AC_MSG_CHECKING(setting DEF_PGPORT)
215215
AC_ARG_WITH(
216216
pgport,
217-
[ --with-pgport=<portnum> change default startup port ],
217+
[ --with-pgport=<portnum> change default startup port ],
218218
AC_DEFINE_UNQUOTED(DEF_PGPORT, "${withval}") AC_MSG_RESULT($with_pgport),
219219
AC_DEFINE_UNQUOTED(DEF_PGPORT, "5432") AC_MSG_RESULT(5432)
220220
)
@@ -223,7 +223,7 @@ dnl We exclude tcl support unless we override it with --with-tcl
223223
AC_MSG_CHECKING(setting USE_TCL)
224224
AC_ARG_WITH(
225225
tcl,
226-
[ --with-tcl use tcl ],
226+
[ --with-tcl use tcl ],
227227
USE_TCL=true; AC_MSG_RESULT(enabled),
228228
USE_TCL=false; AC_MSG_RESULT(disabled)
229229
)
@@ -255,7 +255,7 @@ dnl We exclude perl support unless we override it with --with-perl
255255
AC_MSG_CHECKING(setting USE_PERL)
256256
AC_ARG_WITH(
257257
perl,
258-
[ --with-perl use perl ],
258+
[ --with-perl use perl ],
259259
USE_PERL=true; AC_MSG_RESULT(enabled),
260260
USE_PERL=false; AC_MSG_RESULT(disabled)
261261
)
@@ -279,7 +279,7 @@ dnl We need some explanatory text here.
279279
AC_MSG_CHECKING(setting ASSERT CHECKING)
280280
AC_ARG_ENABLE(
281281
cassert,
282-
[ --enable-cassert enable assertion checks (debugging) ],
282+
[ --enable-cassert enable assertion checks (debugging) ],
283283
AC_DEFINE(NO_ASSERT_CHECKING) AC_MSG_RESULT(enabled),
284284
AC_MSG_RESULT(disabled)
285285
)

0 commit comments

Comments
 (0)