diff options
author | Philippe Crama <pcfeb0009@gmx.com> | 2010-12-05 21:44:19 +0100 |
---|---|---|
committer | Philippe Crama <pcfeb0009@gmx.com> | 2010-12-05 21:44:19 +0100 |
commit | 7f4149520a1f246eb4221b94c2a078a6c5c71cc5 (patch) | |
tree | a94bf4ea0f14a007b7f3382f2aa0592977353d67 | |
parent | 4d30309eb02a3078a1fe91902fbd97b58de228aa (diff) |
Minor modifications to make it compile/run under NetBSD/pkgsrc
-rw-r--r-- | skype/configure.ac | 2 | ||||
-rw-r--r-- | skype/skype.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/skype/configure.ac b/skype/configure.ac index f04a8e7c..4a2f318f 100644 --- a/skype/configure.ac +++ b/skype/configure.ac @@ -12,7 +12,7 @@ else fi case "`$CC -dumpmachine`" in - *linux*|*freebsd*) + *linux*|*freebsd*|*netbsd*) SHARED_FLAGS="-fPIC -shared" SHARED_EXT="so" ;; diff --git a/skype/skype.c b/skype/skype.c index 2c088852..45b187ea 100644 --- a/skype/skype.c +++ b/skype/skype.c @@ -23,7 +23,7 @@ #define _BSD_SOURCE #include <poll.h> #include <bitlbee.h> -#include <bitlbee/ssl_client.h> +#include <ssl_client.h> #define SKYPE_DEFAULT_SERVER "localhost" #define SKYPE_DEFAULT_PORT "2727" |