EDASQLiteCipher: fixed bad linux/osx library name (libssl -> crypto) in epj and makefile.
authorRejean Loyer <rejean.loyer@gmail.com>
Mon, 30 May 2011 11:36:08 +0000 (07:36 -0400)
committerRejean Loyer <rejean.loyer@gmail.com>
Mon, 30 May 2011 11:36:08 +0000 (07:36 -0400)
eda/drivers/sqliteCipher/EDASQLiteCipher.epj
eda/drivers/sqliteCipher/Makefile

index 73617ea..306e8d0 100644 (file)
@@ -22,7 +22,7 @@
             "Libraries" : [
                "pthread",
                "dl",
-               "libssl"
+               "crypto"
             ]
          }
       },
@@ -32,7 +32,7 @@
             "Libraries" : [
                "pthread",
                "dl",
-               "libssl"
+               "crypto"
             ]
          }
       },
index 6cea657..f4b1a9f 100644 (file)
@@ -99,12 +99,12 @@ LIBS += -llibeay32
 else
 ifdef LINUX
 
-LIBS += -lpthread -ldl -llibssl
+LIBS += -lpthread -ldl -lcrypto
 
 else
 ifdef OSX
 
-LIBS += -lpthread -ldl -llibssl
+LIBS += -lpthread -ldl -lcrypto
 
 endif
 endif