aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2007-05-15 19:47:51 +0000
committerAndrew Dunstan <andrew@dunslane.net>2007-05-15 19:47:51 +0000
commit0f77636c2e3fd681707b447e9264e5d1f56ed2ef (patch)
treeff79d3dacf6281ee5e15910b3d0706b32fc70d25
parentdfcf99bf93776a9bdd6fc43f99b6092fe7ed6e89 (diff)
downloadpostgresql-0f77636c2e3fd681707b447e9264e5d1f56ed2ef.tar.gz
postgresql-0f77636c2e3fd681707b447e9264e5d1f56ed2ef.zip
Remove directory qualification in <ossp/uuid.h> because it's not always installed in ossp.
Workaround for when it is: include the ossp directory using --with-includes.
-rw-r--r--contrib/uuid-ossp/uuid-ossp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/uuid-ossp/uuid-ossp.c b/contrib/uuid-ossp/uuid-ossp.c
index 3be2cd1908d..2df9fb06a65 100644
--- a/contrib/uuid-ossp/uuid-ossp.c
+++ b/contrib/uuid-ossp/uuid-ossp.c
@@ -4,7 +4,7 @@
*
* Copyright (c) 2007 PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/contrib/uuid-ossp/uuid-ossp.c,v 1.1 2007/04/21 17:26:17 petere Exp $
+ * $PostgreSQL: pgsql/contrib/uuid-ossp/uuid-ossp.c,v 1.2 2007/05/15 19:47:51 adunstan Exp $
*
*-------------------------------------------------------------------------
*/
@@ -14,7 +14,7 @@
#include "utils/builtins.h"
#include "utils/uuid.h"
-#include <ossp/uuid.h>
+#include <uuid.h>
/* better both be 16 */