diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-10-21 18:55:10 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-10-21 18:55:10 +0000 |
commit | 6adf38ac8cfecc584cb577cf5d0f4fcc6c3aafee (patch) | |
tree | e0fed2f8341c0836794fb1d5e0f2e0bc5522b8b4 | |
parent | b91f9042b045570e907811bd3eab00335f614bdf (diff) | |
download | postgresql-6adf38ac8cfecc584cb577cf5d0f4fcc6c3aafee.tar.gz postgresql-6adf38ac8cfecc584cb577cf5d0f4fcc6c3aafee.zip |
Might need to link with -lcrypt.
-rw-r--r-- | contrib/chkpass/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/chkpass/Makefile b/contrib/chkpass/Makefile index afa9ee46fa3..61b7523ee95 100644 --- a/contrib/chkpass/Makefile +++ b/contrib/chkpass/Makefile @@ -1,10 +1,12 @@ -# $Header: /cvsroot/pgsql/contrib/chkpass/Makefile,v 1.3 2001/09/06 10:49:29 petere Exp $ +# $Header: /cvsroot/pgsql/contrib/chkpass/Makefile,v 1.4 2002/10/21 18:55:10 petere Exp $ subdir = contrib/chkpass top_builddir = ../.. include $(top_builddir)/src/Makefile.global -MODULES = chkpass +MODULE_big = chkpass +OBJS = chkpass.o +SHLIB_LINK = $(filter -lcrypt, $(LIBS)) DATA_built = chkpass.sql DOCS = README.chkpass |