summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2018-05-04 23:59:22 +0800
committerTing-Wei Lan <lantw44@gmail.com>2018-05-05 00:00:55 +0800
commit27b07469403af8bcbef9b24a42d4c44c5bffc846 (patch)
treee3c8fab094f1797d82ba71581517d1ba87f606fe /test
parent5dc0c147e9026cc06b30688537325f77d64b54eb (diff)
downloadlibepoxy-27b07469403af8bcbef9b24a42d4c44c5bffc846.tar.gz
dlwrap: Add FBSD_1.0 version for FreeBSD
This fixes dlwrap_real_dlsym on FreeBSD, but tests still fail because we currently don't have libglvnd.
Diffstat (limited to 'test')
-rw-r--r--test/dlwrap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/dlwrap.c b/test/dlwrap.c
index 25e17de..c0c24c2 100644
--- a/test/dlwrap.c
+++ b/test/dlwrap.c
@@ -242,7 +242,8 @@ dlwrap_real_dlsym(void *handle, const char *name)
"GLIBC_2.3",
"GLIBC_2.2.5",
"GLIBC_2.2",
- "GLIBC_2.0"
+ "GLIBC_2.0",
+ "FBSD_1.0"
};
int num_versions = sizeof(version) / sizeof(version[0]);
int i;