fix issues #364 since postgres still calls it libpq on windows and the linker doesnt add the lib prefix automatically there

This commit is contained in:
Adam D. Ruppe 2023-02-06 09:40:11 -05:00
parent bd524763fc
commit e1a575f390
2 changed files with 7 additions and 2 deletions

View File

@ -474,7 +474,8 @@
"description": "Postgresql client library. Wraps the libpq C library with my database.d interface.",
"targetType": "library",
"dependencies": {"arsd-official:database_base":"*"},
"libs": ["pq"],
"libs-posix": ["pq"],
"libs-windows": ["libpq"],
"sourceFiles": ["postgres.d"],
"importPaths": ["."],
"dflags-dmd": ["-mv=arsd.postgres=$PACKAGE_DIR/postgres.d"],

View File

@ -23,7 +23,11 @@
should be found in the PostgreSQL lib and/or bin folders (check them both!).
+/
module arsd.postgres;
pragma(lib, "pq");
version(Windows)
pragma(lib, "libpq");
else
pragma(lib, "pq");
public import arsd.database;