forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitf7ab802
committed
Remove pqsignal() from libpq's official exports list.
Client applications should get this function, if they need it, fromlibpgport.The fact that it's exported from libpq is a hack left over from beforewe set up libpgport. It's never been documented, and there's no goodreason for non-PG code to be calling it anyway, so hopefully this won'tcause any problems. Moreover, with the previous setup it was not realclear whether our clients that use the function were getting it fromlibpgport or libpq, so this might actually prevent problems.The reason for changing it now is that in the wake of commitea53100,some linkers won't export the symbol, apparently because it's coming froma .a library instead of a .o file. We could get around that by continuingto symlink pqsignal.c into libpq as before; but unless somebody complainsvery hard, I don't want to adopt such a kluge.Discussion:https://postgr.es/m/13022.1538003440@sss.pgh.pa.usDiscussion:https://postgr.es/m/E1g5Y8r-0006vs-QA@gemulon.postgresql.org1 parenta86bf60 commitf7ab802
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
116 | 116 |
| |
117 | 117 |
| |
118 | 118 |
| |
119 |
| - | |
| 119 | + | |
120 | 120 |
| |
121 | 121 |
| |
122 | 122 |
| |
|
0 commit comments
Comments
(0)