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
e9f11c6b
Commit
e9f11c6b
authored
Oct 06, 2005
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pg_config should print an error message to stderr and exit if an
information item is not available.
parent
cb8b6618
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
11 deletions
+35
-11
src/bin/pg_config/pg_config.c
src/bin/pg_config/pg_config.c
+35
-11
No files found.
src/bin/pg_config/pg_config.c
View file @
e9f11c6b
...
...
@@ -17,7 +17,7 @@
*
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/pg_config/pg_config.c,v 1.1
4 2005/10/05 12:16:28 momjian
Exp $
* $PostgreSQL: pgsql/src/bin/pg_config/pg_config.c,v 1.1
5 2005/10/06 12:04:58 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -255,7 +255,10 @@ show_configure(bool all)
printf
(
"%s
\n
"
,
VAL_CONFIGURE
);
#else
if
(
!
all
)
printf
(
"not recorded
\n
"
);
{
fprintf
(
stderr
,
_
(
"not recorded
\n
"
));
exit
(
1
);
}
#endif
}
...
...
@@ -268,7 +271,10 @@ show_cc(bool all)
printf
(
"%s
\n
"
,
VAL_CC
);
#else
if
(
!
all
)
printf
(
"not recorded
\n
"
);
{
fprintf
(
stderr
,
_
(
"not recorded
\n
"
));
exit
(
1
);
}
#endif
}
...
...
@@ -281,7 +287,10 @@ show_cppflags(bool all)
printf
(
"%s
\n
"
,
VAL_CPPFLAGS
);
#else
if
(
!
all
)
printf
(
"not recorded
\n
"
);
{
fprintf
(
stderr
,
_
(
"not recorded
\n
"
));
exit
(
1
);
}
#endif
}
...
...
@@ -294,7 +303,10 @@ show_cflags(bool all)
printf
(
"%s
\n
"
,
VAL_CFLAGS
);
#else
if
(
!
all
)
printf
(
"not recorded
\n
"
);
{
fprintf
(
stderr
,
_
(
"not recorded
\n
"
));
exit
(
1
);
}
#endif
}
...
...
@@ -307,7 +319,10 @@ show_cflags_sl(bool all)
printf
(
"%s
\n
"
,
VAL_CFLAGS_SL
);
#else
if
(
!
all
)
printf
(
"not recorded
\n
"
);
{
fprintf
(
stderr
,
_
(
"not recorded
\n
"
));
exit
(
1
);
}
#endif
}
...
...
@@ -320,7 +335,10 @@ show_ldflags(bool all)
printf
(
"%s
\n
"
,
VAL_LDFLAGS
);
#else
if
(
!
all
)
printf
(
"not recorded
\n
"
);
{
fprintf
(
stderr
,
_
(
"not recorded
\n
"
));
exit
(
1
);
}
#endif
}
...
...
@@ -333,7 +351,10 @@ show_ldflags_sl(bool all)
printf
(
"%s
\n
"
,
VAL_LDFLAGS_SL
);
#else
if
(
!
all
)
printf
(
"not recorded
\n
"
);
{
fprintf
(
stderr
,
_
(
"not recorded
\n
"
));
exit
(
1
);
}
#endif
}
...
...
@@ -346,7 +367,10 @@ show_libs(bool all)
printf
(
"%s
\n
"
,
VAL_LIBS
);
#else
if
(
!
all
)
printf
(
"not recorded
\n
"
);
{
fprintf
(
stderr
,
_
(
"not recorded
\n
"
));
exit
(
1
);
}
#endif
}
...
...
@@ -427,14 +451,14 @@ help(void)
printf
(
_
(
" --libs show LIBS value used when PostgreSQL was built
\n
"
));
printf
(
_
(
" --version show the PostgreSQL version
\n
"
));
printf
(
_
(
" --help show this help, then exit
\n
"
));
printf
(
_
(
"With no arguments, all known items are shown.
\n\n
"
));
printf
(
_
(
"
\n
With no arguments, all known items are shown.
\n\n
"
));
printf
(
_
(
"Report bugs to <pgsql-bugs@postgresql.org>.
\n
"
));
}
static
void
advice
(
void
)
{
fprintf
(
stderr
,
_
(
"
\n
Try
\"
%s --help
\"
for more information
\n
"
),
progname
);
fprintf
(
stderr
,
_
(
"
Try
\"
%s --help
\"
for more information.
\n
"
),
progname
);
}
static
void
...
...
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