]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/error.cc
Remove extra #error
[apt.git] / apt-pkg / contrib / error.cc
index 8ae2686de8da19dfc626269d0204b2323dcbebcb..e8b71fa7d6bde9dd1e76811425bfea141ba49e2d 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: error.cc,v 1.6 1999/01/18 06:20:07 jgg Exp $
+// $Id: error.cc,v 1.8 1999/08/08 07:24:54 jgg Exp $
 /* ######################################################################
    
    Global Erorr Class - Global error mechanism
@@ -26,6 +26,7 @@
 #include <stdarg.h>
 #include <unistd.h>
 
+#include "config.h"
                                                                        /*}}}*/
 
 // Global Error Object                                                 /*{{{*/
@@ -33,7 +34,7 @@
    is compiled to be thread safe otherwise a non-safe version is used. A
    Per-Thread error object is maintained in much the same manner as libc
    manages errno */
-#if _POSIX_THREADS == 1
+#if _POSIX_THREADS == 1 && defined(HAVE_PTHREAD)
  #include <pthread.h>
 
  static pthread_key_t ErrorKey;