diff options
author | trevor <trevor@FreeBSD.org> | 2002-06-10 20:52:37 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2002-06-10 20:52:37 +0800 |
commit | e4d227b389bcb38aac33dc86983531ce0f109eb1 (patch) | |
tree | 8501572493cd57921d8de80841e546e165b20db9 /astro | |
parent | 7adb24815d50d753a7d5dc9086beaeefabe04047 (diff) | |
download | freebsd-ports-gnome-e4d227b389bcb38aac33dc86983531ce0f109eb1.tar.gz freebsd-ports-gnome-e4d227b389bcb38aac33dc86983531ce0f109eb1.tar.zst freebsd-ports-gnome-e4d227b389bcb38aac33dc86983531ce0f109eb1.zip |
Markus Bäurle sent me a nice report about the configure script
failing. In his config.log I noticed a pthreads problem:
/usr/X11R6/lib/libMesaGL.so: undefined reference to `pthread_getspecific'
/usr/X11R6/lib/libMesaGL.so: undefined reference to `pthread_key_create'
/usr/X11R6/lib/libMesaGL.so: undefined reference to `pthread_setspecific'
I was not able to reproduce the problem, so I asked him to test
this patch, but have not seen a response. However, it causes no
trouble for me.
Diffstat (limited to 'astro')
-rw-r--r-- | astro/openuniverse/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/astro/openuniverse/Makefile b/astro/openuniverse/Makefile index 4b61a0dcdc10..99a3d59ee36d 100644 --- a/astro/openuniverse/Makefile +++ b/astro/openuniverse/Makefile @@ -24,7 +24,8 @@ CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \ CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include -I${X11BASE}/include/GL -I${LOCALBASE}/include" \ LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib -lm" \ - LIBS="-lcompat" + LIBS="-lcompat" PTHREAD_LIBS="${PTHREAD_LIBS}" +MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" USE_X_PREFIX= yes |