Andrej Ricnik-Bay wrote:
> I'm trying to compile AIDE on a Slack 10.2  install against postgresql 8.1.3.

This looks like a problem in the src/Makefile. If the configure did
things correctly, it should contain a line saying: PSQLLIB = -lpq
If not, add it. The problem is that this lib is not used when linking.
Modify the line that looks like

$(LINK) $(aide_LDFLAGS) $(aide_OBJECTS) $(aide_LDADD) $(LIBS)

to read:

$(LINK) $(aide_LDFLAGS) $(aide_OBJECTS) $(aide_LDADD) $(LIBS) ${PSQLLIB}

Let me know if that works.

Sincerely,

Richard van den Berg
_______________________________________________
Aide mailing list
[email protected]
https://mailman.cs.tut.fi/mailman/listinfo/aide

Reply via email to