Hi This evening I was having a problem with the psql test, amd64 build. The problem was that in the generated Makefile, the -L paths came after the -lssl and -lcrypto items.
I looked at compile.test, made this change:
Instead of
-L*|-l*|-pthread)
LFLAGS="$LFLAGS $PARAM"
;;
I'd put
-L*)
LFLAGS="$PARAM $LFLAGS"
;;
-l*|-pthread)
LFLAGS="$LFLAGS $PARAM"
;;
I.e., ensure that all 0f the -L items come before -l ones.
Then I ran config.status by hand, and the psql test passed.
A+
Paul
