diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-04-01 15:15:12 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-04-01 15:15:12 +0200 |
commit | ee832586c48a558d384e8716d3dd3b33da897aaf (patch) | |
tree | 2c215b9a20f9771954ce69d41f8d11c7c2b8c768 /src | |
parent | 742c69abdb159ce8ebfd41548bfb3ea2262b31d2 (diff) | |
download | smartcardauth-ee832586c48a558d384e8716d3dd3b33da897aaf.tar.gz smartcardauth-ee832586c48a558d384e8716d3dd3b33da897aaf.zip |
Fix FTBFS due to missing link to stdc++
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 38a6173..4addb1c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -19,7 +19,7 @@ ckpasswd: ckpasswd.o gcc ckpasswd.o xmalloc.o messages.o -o ckpasswd -lpam -lcrypt smartauthmon: smartauthmon.o ckpass.o - gcc smartauthmon.o ckpass.o xmalloc.o messages.o -o smartauthmon -ltqt -lpam -lcrypt -ltqt-mt + gcc smartauthmon.o ckpass.o xmalloc.o messages.o -o smartauthmon -ltqt -lpam -lcrypt -ltqt-mt -lstdc++ clean: rm -f ckpasswd.o xmalloc.o messages.o ckpasswd |